forked from enviPath/enviPy
Current Dev State
This commit is contained in:
13
utilities/biodeg.py
Normal file
13
utilities/biodeg.py
Normal file
@ -0,0 +1,13 @@
|
||||
import abc
|
||||
from enviPy.epdb import Pathway
|
||||
|
||||
class PredictionSchema(abc.ABC):
|
||||
pass
|
||||
|
||||
class DFS(PredictionSchema):
|
||||
|
||||
def __init__(self, pw: Pathway, settings=None):
|
||||
self.setting = settings or pw.prediction_settings
|
||||
|
||||
def predict(self):
|
||||
pass
|
||||
Reference in New Issue
Block a user