Skip to content

Commit

Permalink
Merge pull request #162 from alubbock/fix_annotations
Browse files Browse the repository at this point in the history
Correct Annotation tags' argument order (subject, object, predicate)
  • Loading branch information
jmuhlich committed Sep 28, 2015
2 parents 3a4d364 + 0275c9f commit e48ade3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pysb/examples/earm_1_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
from pysb import *

Model()
Annotation(model, 'is', 'http://identifiers.org/biomodels.db/BIOMD0000000220')
Annotation(model, 'isDescribedBy',
'http://identifiers.org/doi/10.1371/journal.pbio.0060299')
Annotation(model, 'http://identifiers.org/biomodels.db/BIOMD0000000220', 'is')
Annotation(model, 'http://identifiers.org/doi/10.1371/journal.pbio.0060299',
'isDescribedBy')

transloc = .01; # rate of translocation between the cytosolic and mitochondrial compartments

Expand Down
4 changes: 2 additions & 2 deletions pysb/examples/earm_1_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
# Start from EARM 1.0 as a base
# ==========
Model(base=pysb.examples.earm_1_0.model)
Annotation(model, 'isDescribedBy',
'http://identifiers.org/doi/10.1371/journal.pcbi.1002482')
Annotation(model, 'http://identifiers.org/doi/10.1371/journal.pcbi.1002482',
'isDescribedBy')

# Rename all instances of Bcl2c to Mcl1, which was determined as a more accurate
# description of that monomer based on its role in the model
Expand Down

0 comments on commit e48ade3

Please sign in to comment.