Skip to content

Commit dd5ecba

Browse files
committed
Remove temporal_rnaseq option and related code
1 parent 7521761 commit dd5ecba

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

hvantk/commands/make_annotation_tables_cli.py

-11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from hvantk.settings import CONTEXT_SETTINGS, RAW_DATA_PATH, set_raw_data_path
99
from hvantk.utils.make_tables import (
1010
create_interactome_tb,
11-
# create_rnaseq_tb,
1211
create_clinvar_tb,
1312
create_gevir_tb,
1413
create_gnomad_constraint_gene_metrics_tb,
@@ -46,10 +45,6 @@ def make_annotation_tables_from_raw_sources(
4645
f"{output_dir}/interactome.{default_ref_genome}.ht", overwrite=True
4746
)
4847

49-
if temporal_rnaseq:
50-
rnaseq_tb = create_rnaseq_tb()
51-
rnaseq_tb.checkpoint(f"{output_dir}/rnaseq.human.ht", overwrite=True)
52-
5348
if clinvar:
5449
clinvar_tb = create_clinvar_tb()
5550
clinvar_tb.checkpoint(
@@ -84,9 +79,6 @@ def make_annotation_tables_from_raw_sources(
8479
@click.option(
8580
"--interactome", is_flag=True, help="Create/update CCR table from source."
8681
)
87-
@click.option(
88-
"--temporal_rnaseq", is_flag=True, help="Create/update RNAseq table from source."
89-
)
9082
@click.option(
9183
"--clinvar", is_flag=True, help="Create/update Clinvar table from source."
9284
)
@@ -126,7 +118,6 @@ def make_annotation_tables_cli(
126118
output_dir,
127119
ccr,
128120
interactome,
129-
temporal_rnaseq,
130121
clinvar,
131122
gevir,
132123
scell_heart_deg,
@@ -141,7 +132,6 @@ def make_annotation_tables_cli(
141132
[
142133
ccr,
143134
interactome,
144-
temporal_rnaseq,
145135
clinvar,
146136
gevir,
147137
scell_heart_deg,
@@ -159,7 +149,6 @@ def make_annotation_tables_cli(
159149
raw_data_path,
160150
ccr,
161151
interactome,
162-
temporal_rnaseq,
163152
clinvar,
164153
gevir,
165154
scell_heart_deg,

0 commit comments

Comments
 (0)