File tree 1 file changed +0
-11
lines changed
1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 8
8
from hvantk .settings import CONTEXT_SETTINGS , RAW_DATA_PATH , set_raw_data_path
9
9
from hvantk .utils .make_tables import (
10
10
create_interactome_tb ,
11
- # create_rnaseq_tb,
12
11
create_clinvar_tb ,
13
12
create_gevir_tb ,
14
13
create_gnomad_constraint_gene_metrics_tb ,
@@ -46,10 +45,6 @@ def make_annotation_tables_from_raw_sources(
46
45
f"{ output_dir } /interactome.{ default_ref_genome } .ht" , overwrite = True
47
46
)
48
47
49
- if temporal_rnaseq :
50
- rnaseq_tb = create_rnaseq_tb ()
51
- rnaseq_tb .checkpoint (f"{ output_dir } /rnaseq.human.ht" , overwrite = True )
52
-
53
48
if clinvar :
54
49
clinvar_tb = create_clinvar_tb ()
55
50
clinvar_tb .checkpoint (
@@ -84,9 +79,6 @@ def make_annotation_tables_from_raw_sources(
84
79
@click .option (
85
80
"--interactome" , is_flag = True , help = "Create/update CCR table from source."
86
81
)
87
- @click .option (
88
- "--temporal_rnaseq" , is_flag = True , help = "Create/update RNAseq table from source."
89
- )
90
82
@click .option (
91
83
"--clinvar" , is_flag = True , help = "Create/update Clinvar table from source."
92
84
)
@@ -126,7 +118,6 @@ def make_annotation_tables_cli(
126
118
output_dir ,
127
119
ccr ,
128
120
interactome ,
129
- temporal_rnaseq ,
130
121
clinvar ,
131
122
gevir ,
132
123
scell_heart_deg ,
@@ -141,7 +132,6 @@ def make_annotation_tables_cli(
141
132
[
142
133
ccr ,
143
134
interactome ,
144
- temporal_rnaseq ,
145
135
clinvar ,
146
136
gevir ,
147
137
scell_heart_deg ,
@@ -159,7 +149,6 @@ def make_annotation_tables_cli(
159
149
raw_data_path ,
160
150
ccr ,
161
151
interactome ,
162
- temporal_rnaseq ,
163
152
clinvar ,
164
153
gevir ,
165
154
scell_heart_deg ,
You can’t perform that action at this time.
0 commit comments