-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
60 lines (59 loc) · 1.45 KB
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
env.cohorts = 'BLADDER BrCa CRC NSCLC PANC Prostate CRC2 NSCLC2 MELANOMA OVARIAN ESOPHAGO RENAL'
docker.enabled = true
manifest {
name = 'Sage-Bionetworks/genie-bpc-pipeline'
author = 'Thomas Yu'
homePage = 'https://github.com/Sage-Bionetworks/genie-bpc-pipeline'
description = 'Nextflow pipeline for first steps of GENIE BPC data processing'
mainScript = 'main.nf'
nextflowVersion = '>=21.04.0-edge'
version = '0.1'
}
profiles {
aws_prod {
process {
withName: update_potential_phi_fields_table {
memory = 32.GB
cpus = 8
}
withName: run_workflow_case_selection {
memory = 32.GB
cpus = 8
}
withName: run_export_bpc_selected_cases {
memory = 32.GB
cpus = 8
}
withName: run_quac_upload_report_warning {
memory = 32.GB
cpus = 8
}
withName: run_quac_upload_report_error {
memory = 32.GB
cpus = 8
}
withName: update_data_table {
memory = 32.GB
cpus = 8
}
withName: merge_and_uncode_rca_uploads {
memory = 32.GB
cpus = 8
}
withName: remove_patients_from_merged {
memory = 32.GB
cpus = 8
}
withName: run_clinical_release {
memory = 32.GB
cpus = 8
}
}
params {
// docker image parameters, see nextflow_schema.json for details
references_docker = "sagebionetworks/genie-bpc-pipeline-references"
uploads_docker = "sagebionetworks/genie-bpc-pipeline-uploads"
table_updates_docker = "sagebionetworks/genie-bpc-pipeline-table-updates"
}
}
}