2 |
|
osprai_one: Module to tie together the various osprai tools. |
3 |
|
Christopher Lausted, Institute for Systems Biology, |
4 |
|
Yuhang Wan, OSPRAI developers |
5 |
< |
Last modified on 100517 (yymmdd) |
5 |
> |
Last modified on 110207 (yymmdd) |
6 |
|
|
7 |
|
Examples: |
8 |
|
from osprai_one import * |
9 |
|
""" |
10 |
< |
__version__ = "100517" |
10 |
> |
__version__ = "110207" |
11 |
|
__all__ = ['BiosensorArray', 'RegOfInterest', |
12 |
< |
'readsprit', 'readclamp', 'readicmtxt', 'readbiosensor', |
12 |
> |
'readsprit', 'readclamp', 'readicmtxt', 'readbiosensor', 'readcsv', |
13 |
|
'applygal', 'applykey', 'applymethod', 'writesprit', |
14 |
|
'writeclamp', 'writebiosensor', |
15 |
|
'dotgraph', 'linegraph', 'dualgraph', 'scatterplot', |
29 |
|
from io_module import readclamp |
30 |
|
from io_module import readicmtxt |
31 |
|
from io_module import readbiosensor |
32 |
+ |
from io_module import readcsv |
33 |
|
from io_module import applygal |
34 |
|
from io_module import applykey |
35 |
|
from io_module import applymethod |
67 |
|
from numpy import arange |
68 |
|
from numpy import zeros |
69 |
|
|
69 |
– |
################################# End of module ################################# |
70 |
+ |
################################# End of module ################################# |