Commit
·
827c802
1
Parent(s):
a9fd16c
fix
Browse files
multi_omics_transcript_expression.py
CHANGED
|
@@ -298,6 +298,7 @@ class TranscriptExpressionHandler(GenomicLRATaskHandler):
|
|
| 298 |
length and standardized before returning.
|
| 299 |
"""
|
| 300 |
df = pd.read_csv(self.df_csv_file)
|
|
|
|
| 301 |
labels_name = LABELS_V1
|
| 302 |
|
| 303 |
split_df = df.loc[df["split"] == split]
|
|
|
|
| 298 |
length and standardized before returning.
|
| 299 |
"""
|
| 300 |
df = pd.read_csv(self.df_csv_file)
|
| 301 |
+
df = df.loc[df["chr"]!= "chrMT"]
|
| 302 |
labels_name = LABELS_V1
|
| 303 |
|
| 304 |
split_df = df.loc[df["split"] == split]
|