We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For grouping ReactionRules in a Model, the Model class should provide the interface to tag them as something like the followings:
with reaction_rules(): A > B | 1 | _tag('upstream') B > C + D | 2 | _tag('upstream') C > ~C | 3 | _tag('downstream', 'degradation') D > E | 4 | _tag('downstream') E > ~E | 5 | _tag('downstream', 'degradation') m = get_model() print(len(m.get_reaction_rules_by_tag('upstream'))) # => 2
The text was updated successfully, but these errors were encountered:
#115 Add a code to parse '_tag', but disabled yet
308aa61
with reaction_rules_with_tag(): A > B | 1 | _tag(upstream) B > C + D | _tag(upstream) C > ~C | 3 | _tag(downstream, degradation) D > E | 4 | _tag(downstream) E > ~E | 5 | _tag(downstream, degradation)
Sorry, something went wrong.
No branches or pull requests
For grouping ReactionRules in a Model, the Model class should provide the interface to tag them as something like the followings:
The text was updated successfully, but these errors were encountered: