Skip to content

Commit

Permalink
Created species generator to generate species needed in each submodel
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalshaikh42 committed Aug 1, 2018
1 parent 8eab1b9 commit b7a8d3f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions wc_model_gen/prokaryote/species.py
@@ -0,0 +1,29 @@
""" Generate wc_lang species and wc_lang observables from the provided KB
:Author: Bilal Shaikh
:Author Ashwin
:Copyright: 2018, Karr Lab
:License: MIT
"""

import wc_model_gen


class SpeciesGenerator(wc_model_gen.ModelComponentGenerator):
def run(self):
self.gen_rna()
self.gen_protein()
self.gen_observables()
self.gen_complexes()

def gen_rna(self):
pass

def gen_protein(self):
pass

def gen_complexes(self):
pass

def gen_observables(self):
pass

0 comments on commit b7a8d3f

Please sign in to comment.