Files
enviPy-bayer/utilities/biodeg.py
2025-06-23 20:13:54 +02:00

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