-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
70 lines (61 loc) · 1000 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# not sure if we need to include these
# from .classes import (
# CWLEngine,
# )
from .cwlFile import (
CWLFile,
)
from .cwlRunner import (
CWLRunner,
)
from .mafio import (
TableReader,
MafWriter
)
from .plutoPreRunTestCase import (
PlutoPreRunTestCase,
)
from .plutoTestCase import (
PlutoTestCase,
)
from .run import (
run_cwl,
run_command,
run_cwl_toil
)
from .serializer import (
OFile,
ODir,
serialize_repr
)
from .settings import (
ENABLE_LARGE_TESTS,
ENABLE_INTEGRATION_TESTS,
USE_LSF,
CWL_ENGINE,
CWL_DEFAULT_ENGINE,
CWL_DIR,
REF_DIR,
EXAMPLES_DIR,
TMP_DIR,
KEEP_TMP,
PRINT_COMMAND,
PRINT_TESTNAME,
TOIL_STATS,
PRINT_STATS,
SAVE_STATS,
STATS_DIR,
PRINT_STATS,
CWL_ARGS,
TOIL_ARGS,
TOIL_CLEAN_SETTINGS,
)
from .util import (
write_table,
dicts2lines,
clean_dicts,
parse_header_comments,
load_mutations,
md5_file,
md5_obj
)