Interface¶
Interface provides top-level API access to the In Silico Framework (ISF). It is the main entry point for users to interact with ISF, providing access to various pacakges, modules and workflows. It is designed to be used in a jupyter notebook, but can also be used in scripts.
The recommended way to use ISF is to import Interface
in a jupyter notebook in the following manner:
>>> import Interface as I
You then have access to all important builtins and top-level pipelines via Interface:
>>> I.simrun_run_new_simulations() # runs new simulations
>>> I.db_init_simrun_general() # initialize a database with simrun results
>>> I.scp # access the single_cell_parser package
...
Take a look at the Tutorials for examples on how to use the Interface API.
Functions¶
Print the version of each module in ISF. |
|
|
Gets the distributed.client object if dask has been setup |