1 |
clausted |
21 |
""" |
2 |
|
|
osprai_one: Module to tie together the various osprai tools. |
3 |
|
|
Christopher Lausted, Institute for Systems Biology, |
4 |
|
|
Yuhang Wan, OSPRAI developers |
5 |
clausted |
26 |
Last modified on 100511 (yymmdd) |
6 |
clausted |
21 |
|
7 |
|
|
Examples: |
8 |
|
|
from osprai_one import * |
9 |
|
|
""" |
10 |
clausted |
26 |
__version__ = "100511" |
11 |
clausted |
21 |
|
12 |
|
|
|
13 |
|
|
## Import from OSPRAI project libraries |
14 |
|
|
|
15 |
|
|
from ba_class import BiosensorArray |
16 |
|
|
|
17 |
|
|
from io_module import readsprit |
18 |
|
|
from io_module import readclamp |
19 |
|
|
from io_module import readicmtxt |
20 |
|
|
from io_module import readbiosensor |
21 |
|
|
from io_module import applygal |
22 |
|
|
from io_module import applykey |
23 |
|
|
from io_module import applykey |
24 |
|
|
from io_module import applymethod |
25 |
|
|
from io_module import writesprit |
26 |
|
|
from io_module import writeclamp |
27 |
|
|
|
28 |
|
|
from vu_module import dotgraph |
29 |
|
|
from vu_module import linegraph |
30 |
|
|
from vu_module import dualgraph |
31 |
|
|
from vu_module import scatterplot |
32 |
|
|
|
33 |
|
|
from cal_module import calibrate |
34 |
|
|
from cal_module import bgset |
35 |
|
|
from cal_module import bgsubt |
36 |
clausted |
24 |
from cal_module import copyinterval |
37 |
clausted |
21 |
|
38 |
|
|
from fit_module import clma |
39 |
|
|
from fit_module import lma |
40 |
|
|
|
41 |
|
|
from mdl_module import drift |
42 |
|
|
from mdl_module import simple1to1 |
43 |
clausted |
26 |
from mdl_module import simple1to1_mtl |
44 |
clausted |
21 |
|
45 |
|
|
|
46 |
|
|
## Import from standard libraries. |
47 |
|
|
|
48 |
|
|
from copy import deepcopy |
49 |
|
|
from sys import exit |
50 |
|
|
from os import getcwd |
51 |
|
|
from datetime import date |
52 |
|
|
from numpy import arange |
53 |
|
|
from numpy import zeros |
54 |
|
|
|
55 |
|
|
################################# End of module ################################# |