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