Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
metexplore
met4j
Commits
25721e31
Commit
25721e31
authored
Apr 01, 2022
by
cfrainay
Browse files
update jsbmlReader call
parent
27dbaa7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
met4j-toolbox/src/main/java/fr/inrae/toulouse/metexplore/met4j_toolbox/attributes/ExtractPathways.java
View file @
25721e31
...
...
@@ -35,7 +35,7 @@ public class ExtractPathways extends AbstractMet4jApplication {
public
void
run
()
throws
IOException
,
Met4jSbmlReaderException
,
Met4jSbmlWriterException
{
//read smbl
JsbmlReader
reader
=
new
JsbmlReader
(
this
.
inputPath
,
false
);
JsbmlReader
reader
=
new
JsbmlReader
(
this
.
inputPath
);
BioNetwork
network
=
reader
.
read
();
System
.
out
.
println
(
"Number of reactions in original network: "
+
network
.
getReactionsView
().
size
());
System
.
out
.
println
(
"Number of species in original network: "
+
network
.
getMetabolitesView
().
size
());
...
...
met4j-toolbox/src/main/java/fr/inrae/toulouse/metexplore/met4j_toolbox/attributes/ExtractSbmlAnnot.java
View file @
25721e31
...
...
@@ -53,7 +53,7 @@ public class ExtractSbmlAnnot extends AbstractMet4jApplication {
FileWriter
fw
=
new
FileWriter
(
outputPath
);
//read smbl
JsbmlReader
reader
=
new
JsbmlReader
(
this
.
inputPath
,
true
);
JsbmlReader
reader
=
new
JsbmlReader
(
this
.
inputPath
);
BioNetwork
network
=
reader
.
read
();
BioCollection
<?
extends
BioEntity
>
entities
=
new
BioCollection
<>();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment