SBML.jl icon indicating copy to clipboard operation
SBML.jl copied to clipboard

Julia interface to the Systems Biology Markup Language (SBML) library

Results 6 SBML.jl issues
Sort by recently updated
recently updated
newest added

I could imagine that #251 fails on Julia 1.6, because it requires IfElse.jl. Let's see if CI passes for this.

```julia julia> @time_imports using SBML 2.5 ms Zlib_jll 3.1 ms Libiconv_jll 1.8 ms XML2_jll 63.9 ms SBML_jll 1.9 ms DocStringExtensions 10.9 ms IfElse 8.6 ms ConstructionBase 832.3 ms Unitful 160.4...

:star::sparkles: Quality :sparkles::star:

Test all configurations and error reports that may be generated by readSBML and get_errors. Ref: https://github.com/LCSB-BioCore/SBML.jl/issues/243#issuecomment-1408915248_

:star::sparkles: Quality :sparkles::star:

Putting this here as a reminder also possible: - simplified removal of local parameters - simplified substitution of parameters and function definitions into kinetic laws

enhancement

Models are downloaded from the corresponding repositories each time, which may be a problem for repositories not backed by CDNs (as with EBI) because random interruptions/failures there cause the failures...

:star::sparkles: Quality :sparkles::star:

## Target functionality This kind of code may look much better than what we have now: ```julia someCompartments = readSBML("myModel.xml") do m m.compartments end writeSBML("myModel.xml") do compartments=... species=... SBMLModel(comparmtents, species,...

enhancement