forked from HKU-BAL/Clair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clair.py
87 lines (68 loc) · 2.13 KB
/
clair.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python
import os
import sys
import importlib
import subprocess
if sys.version_info.major >= 3:
clv_path = os.path.dirname(os.path.abspath(__file__)) + os.sep + 'Clair'
sys.path.insert(1, clv_path)
clair_folder = [
"callVarBamParallel",
"callVarBam",
"call_var",
"evaluate",
"plot_tensor",
"tensor2Bin",
"train",
"train_clr",
]
data_prep_scripts_folder = [
"CreateTensor",
"ExtractVariantCandidates",
"GetTruth",
"PairWithNonVariants",
]
def directory_for(submodule_name):
if submodule_name in clair_folder:
return "Clair"
if submodule_name in data_prep_scripts_folder:
return "dataPrepScripts"
return ""
def print_help_messages():
from textwrap import dedent
print dedent("""\
Clair submodule invocator:
Usage: clair.py SubmoduleName [Options of the submodule]
Available data preparation submodules:\n{0}
Available clair submodules:\n{1}
Data preparation scripts:
{2}
Clair scripts:
{3}
""".format(
"\n".join(" - %s" % submodule_name for submodule_name in data_prep_scripts_folder),
"\n".join(" - %s" % submodule_name for submodule_name in clair_folder),
"%s/dataPrepScripts" % os.path.dirname(os.path.abspath(sys.argv[0])),
"%s/Clair" % os.path.dirname(os.path.abspath(sys.argv[0]))
)
)
def main():
if len(sys.argv) <= 1:
print_help_messages()
sys.exit(0)
submodule_name = sys.argv[1]
if (
submodule_name not in clair_folder and
submodule_name not in data_prep_scripts_folder
):
sys.exit("[ERROR] Submodule %s not found." % (submodule_name))
directory = directory_for(submodule_name)
submodule = importlib.import_module("%s.%s" % (directory, submodule_name))
# filter arguments (i.e. filter clair.py) and add ".py" for that submodule
sys.argv = sys.argv[1:]
sys.argv[0] += (".py")
# Note: need to make sure every submodule contains main() method
submodule.main()
sys.exit(0)
if __name__ == "__main__":
main()