tlubitz / SBtab

SBtab - Table format for Systems Biology:
www.sbtab.net
MIT License
6 stars 8 forks source link

Observations on the README.md of the Python section #123

Open tuturax opened 7 months ago

tuturax commented 7 months ago

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 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()

Thanks for the module :+1:

Arthur