Commit
·
fb7a9ad
1
Parent(s):
343ac16
fix
Browse files
multi_omics_transcript_expression.py
CHANGED
|
@@ -323,10 +323,26 @@ class TranscriptExpressionHandler(GenomicLRATaskHandler):
|
|
| 323 |
|
| 324 |
norm_values_df = pd.read_csv(self.normalization_values_csv_file)
|
| 325 |
print(norm_values_df.columns)
|
| 326 |
-
m_t =
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 330 |
|
| 331 |
key = 0
|
| 332 |
for idx, coordinates_row in split_df.iterrows():
|
|
|
|
| 323 |
|
| 324 |
norm_values_df = pd.read_csv(self.normalization_values_csv_file)
|
| 325 |
print(norm_values_df.columns)
|
| 326 |
+
m_t = (
|
| 327 |
+
norm_values_df[[f"m_t_{tissue}" for tissue in LABELS_V1]]
|
| 328 |
+
.to_numpy()
|
| 329 |
+
.reshape(-1)
|
| 330 |
+
)
|
| 331 |
+
sigma_t = (
|
| 332 |
+
norm_values_df[[f"sigma_t_{tissue}" for tissue in LABELS_V1]]
|
| 333 |
+
.to_numpy()
|
| 334 |
+
.reshape(-1)
|
| 335 |
+
)
|
| 336 |
+
m_g = (
|
| 337 |
+
norm_values_df[[f"m_g_{tissue}" for tissue in LABELS_V1]]
|
| 338 |
+
.to_numpy()
|
| 339 |
+
.reshape(-1)
|
| 340 |
+
)
|
| 341 |
+
sigma_g = (
|
| 342 |
+
norm_values_df[[f"sigma_g_{tissue}" for tissue in LABELS_V1]]
|
| 343 |
+
.to_numpy()
|
| 344 |
+
.reshape(-1)
|
| 345 |
+
)
|
| 346 |
|
| 347 |
key = 0
|
| 348 |
for idx, coordinates_row in split_df.iterrows():
|