Skip to content

Commit b1effa1

Browse files
committed
update to dataset build
1 parent 982395e commit b1effa1

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

build/build_dataset.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def process_docker(dataset,validate):
4242
'beataml': ['beataml'],
4343
'mpnst': ['mpnst'],
4444
'mpnstpdx': ['mpnstpdx'],
45+
'pancpdo': ['pancpdo'],
4546
'cptac': ['cptac'],
4647
'genes': ['genes'],
4748
'upload': ['upload']
@@ -97,7 +98,7 @@ def process_drugs(executor, dataset, use_prev_dataset, should_continue):
9798
'''
9899
Build the drugs file for the specified dataset.
99100
'''
100-
if dataset in ['cptac', 'hcmi']:
101+
if dataset in ['cptac', 'hcmi','pancpdo']:
101102
return # No drugs to process for these datasets
102103

103104
drugs_file = f'local/{dataset}_drugs.tsv'
@@ -123,6 +124,7 @@ def process_omics(executor, dataset, should_continue):
123124
'broad_sanger': ['copy_number', 'mutations', 'proteomics', 'transcriptomics'],
124125
'cptac': ['copy_number', 'mutations', 'proteomics', 'transcriptomics'],
125126
'hcmi': ['mutations', 'transcriptomics'],
127+
'pancpdo': ['mutations', 'transcriptomics'],
126128
'mpnstpdx':['copy_number', 'mutations', 'proteomics', 'transcriptomics']
127129
}
128130

@@ -164,7 +166,7 @@ def process_experiments(executor, dataset, should_continue):
164166
'''
165167
Build the experiments files for the specified dataset.
166168
'''
167-
if dataset in ['cptac', 'hcmi']:
169+
if dataset in ['cptac', 'hcmi','pancpdo']:
168170
return # No experiments to process for these datasets
169171

170172
experiments_file = f'local/{dataset}_experiments.tsv'

0 commit comments

Comments
 (0)