Skip to content

Commit a492a81

Browse files
committed
Several bug fixes and improvements:
* New version of JSBML with bug fix in compartment. * New version of sysbio for improved logging. * New identifiers.org resource in MIRIAM * New command-line arguments for specifying flux coefficients and target reaction identifiers * Refactored parameters for the batch mode (internal class to handle all the settings) * Bug fix in logging in the SBMLFix class (former ModelFix).
1 parent 7884cfd commit a492a81

9 files changed

+473
-255
lines changed
Binary file not shown.
805 KB
Binary file not shown.

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<developer>
5252
<email>[email protected]</email>
5353
<name>Andreas Dräger</name>
54-
<url>https://github.com/draeger</url>
54+
<url>https://github.com/draeger/</url>
5555
<id>draeger</id>
5656
</developer>
5757
</developers>
@@ -73,14 +73,14 @@
7373
<!-- mvn install:install-file -Dfile=/path/to/jsbml.jar -DgroupId=org.sbml -DartifactId=JSBML -Dversion=REVISION_NUMBER -Dpackaging=jar -->
7474
<groupId>org.sbml</groupId>
7575
<artifactId>JSBML</artifactId>
76-
<version>2472</version>
76+
<version>2482</version>
7777
<scope>compile</scope>
7878
</dependency>
7979
<dependency>
8080
<!-- mvn install:install-file -Dfile=/path/to/sysbio.jar -DgroupId=de.zbit -DartifactId=SysBio -Dversion=REVISION_NUMBER -Dpackaging=jar -->
8181
<groupId>de.zbit</groupId>
8282
<artifactId>SysBio</artifactId>
83-
<version>1388</version> <!-- SVN revision -->
83+
<version>1390</version> <!-- SVN revision -->
8484
<scope>compile</scope>
8585
</dependency>
8686
<dependency>

src/edu/ucsd/sbrg/bigg/MIRIAM.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public enum MIRIAM {
232232
* http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid=
233233
* TODO What is the actual pattern? Using any character!
234234
*/
235-
unipathway_reaction(pairOf("http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid=", ".*")),
235+
unipathway_reaction(pairOf(" http://identifiers.org/unipathway.reaction/", "^UCR\\d{5}$")),
236236
/**
237237
* UniPathway is a manually curated resource of enzyme-catalyzed and
238238
* spontaneous chemical reactions. It provides a hierarchical representation

0 commit comments

Comments
 (0)