Missing sbmlTranslator binary
See original GitHub issueHi!
I freshly installed pysb with conda and the sbml importer fails with the following error:
FileNotFoundError: [Errno 2] No such file or directory: '[...]/share/bionetgen/bin/sbmlTranslator': '[...]/share/bionetgen/bin/sbmlTranslator'
Going to that location, the binary is a symbolic link:
lrwxrwxrwx 1 [...] share/bionetgen/bin/sbmlTranslator -> ../../../bin/sbmlTranslator
which points to miniconda3/bin/sbmlTranslator
, which doesn’t exist.
By the way, I’m using pysb.importers.sbml.model_from_biomodels
.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
libSBML Python API: libsbml Namespace Reference - SBML.org
class, SBMLConverter ... This method also creates missing GeneProduct objects, in case the unique ... +, -, addition and subtraction, binary, 4, left....
Read more >Including cases with missing variables in a binary logistic ...
I am running a binary logistic regression to determine if climatic and environmental variables influence the occurrence of specific diseases in wildlife ...
Read more >Creating a Bridge between Modelica and the Systems Biology ...
2 Modelica to SBML Translator. A translator that converts Modelica to SBML [3], ... gram is lost in the translation. ... 21 584...
Read more >strategies for selective targeting of the warburg effect in cancer
was first translated to C++ code using the SBML translator module in the ... worked under the model that glycolysis functions as a...
Read more >Evaluation and Reduction of Stochastic Reaction Networks ...
has been obtained by integrating in ERODE the SBML translator presented in [15]. ... Only binary Hill reactions (i.e., with two reagents) are...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks @maurosilber for the report. I’ve created a pull request to improve the error message and documentation here: #460.
Hi. PySB uses atomizer to translate sbml models into bionetgen and then translates bionetgen to the pysb format. To get your code working you just need to install atomizer from conda:
conda install -c alubbock atomizer
Maybe we should add this to the documentation @alubbock ??