How to use the pysces.PyscesModelMap.MapList function in pysces

To help you get started, we’ve selected a few pysces examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def hasSpecies(self):
        return MapList([s.name for s in self.species])
github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def hasFixedSpecies(self):
        return MapList([s.name for s in self.species_fixed])
github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def hasSubstrates(self):
        return MapList([s.name for s in self.substrates])
github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def hasGlobalParameters(self):
        return MapList(p.name for p in self.global_parameters)
github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def hasParameters(self):
        return MapList([p.name for p in self.parameters])
github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def isParameterOf(self):
        return MapList([a.name for a in self.association])
github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def hasReagents(self):
        return MapList(self.hasSubstrates() + self.hasProducts())
github PySCeS / pysces / pysces / PyscesModelMap.py View on Github external
def hasReactions(self):
        return MapList([r.name for r in self.reactions])