Update multi_omics_transcript_expression.py
Browse filesWe create the cache folder in case it does not exist.
multi_omics_transcript_expression.py
CHANGED
@@ -202,6 +202,7 @@ class GenomicLRATaskHandler(ABC):
|
|
202 |
|
203 |
if not os.path.exists(file_complete_path):
|
204 |
if not os.path.exists(file_complete_path + ".gz"):
|
|
|
205 |
with tqdm(
|
206 |
unit="B",
|
207 |
unit_scale=True,
|
|
|
202 |
|
203 |
if not os.path.exists(file_complete_path):
|
204 |
if not os.path.exists(file_complete_path + ".gz"):
|
205 |
+
os.makedirs(os.path.dirname(file_complete_path), exist_ok=True)
|
206 |
with tqdm(
|
207 |
unit="B",
|
208 |
unit_scale=True,
|