GRichard513
commited on
Commit
·
28602d6
1
Parent(s):
aaa5f15
fix: add option to use corrected dataset
Browse files
multi_omics_transcript_expression.py
CHANGED
@@ -306,8 +306,8 @@ class TranscriptExpressionHandler(GenomicLRATaskHandler):
|
|
306 |
"transcript_expression/GTEx_v1_multiomics.csv"
|
307 |
)
|
308 |
elif self.expression_method == "read_counts":
|
309 |
-
|
310 |
-
"
|
311 |
)
|
312 |
|
313 |
return super().split_generators(dl_manager, cache_dir_root)
|
|
|
306 |
"transcript_expression/GTEx_v1_multiomics.csv"
|
307 |
)
|
308 |
elif self.expression_method == "read_counts":
|
309 |
+
self.df_csv_file = dl_manager.download_and_extract(
|
310 |
+
"transcript_expression/GTEx_read_counts_multiomics.csv"
|
311 |
)
|
312 |
|
313 |
return super().split_generators(dl_manager, cache_dir_root)
|