I want to give my feedback on a not-important issue I got.
After downloading SBtab via pip on my computer and using it, it seems that the information in the README.md file of the Python section is incorrect, possibly due to a past update.
In Python, the importation of SBtab is impossible, and we must import the upstream layer of the module, sbtab (without capital letters)
import SBtab is impossible
but
import sbtab works
So, as a consequence, every call of methods must be modified.
For example :
from sbtab import validatorSBtab
or
import sbtab.validatorSBtab
instead of
import validatorSBtab
same for
import sbtab2sbml
and
import sbml2sbtab
Then, for a few calls of methods, a sbtab. is missing before it.
like in the 2nd cell
St = sbtab.SBtab.SBtabTable()
instead of
St = SBtab.SBtabTable()
Hello,
I want to give my feedback on a not-important issue I got.
After downloading SBtab via pip on my computer and using it, it seems that the information in the README.md file of the Python section is incorrect, possibly due to a past update.
In Python, the importation of SBtab is impossible, and we must import the upstream layer of the module, sbtab (without capital letters)
import SBtab
is impossible butimport sbtab
worksSo, as a consequence, every call of methods must be modified.
For example :
from sbtab import validatorSBtab
orimport sbtab.validatorSBtab
instead ofimport validatorSBtab
same for
import sbtab2sbml
andimport sbml2sbtab
Then, for a few calls of methods, a
sbtab.
is missing before it.like in the 2nd cell
St = sbtab.SBtab.SBtabTable()
instead ofSt = SBtab.SBtabTable()
Thanks for the module :+1:
Arthur