Usage of the Complex Builder CLI

How to use the package in the command line

How to import any module within the library

First of all, we need to invoke Python3 to use the package, such as this:

$ python3

Then, you can import a module and their functions using the command below

>> from sbiRandM.<moduleName> import *

Therefore if you can import all the functions within the module check_stoichometry for example, you can import them like this:

>> from sbiRandM.check_stoichometry import *

But if you can only import one of the functions available inside of the package, for example check_fasta_stoichometry, you can do it too.

>> from sbiRandM.check_stoichometry import check_fasta_stoichometry

Then you can use the function. You can see all the modules and functions included, with their descriptions, in the "Modules and functions in this packages" page.

Last updated

Was this helpful?