forked from enviPath/enviPy
14 lines
264 B
Python
14 lines
264 B
Python
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
|