-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathF2.config
37 lines (36 loc) · 942 Bytes
/
F2.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
// Other processes will only run one at a time, so
// we don't need to control their resources.
// The configuration below forces processes to run one at a time by needing
// the total memory available on a lowmem node.
process {
withName: run_validate_PipeVal {
cpus = 1
memory = 1500.MB
}
if (params.input_type == 'bam') {
withName: call_sSNV_SomaticSniper {
cpus = 1
memory = 1500.MB
}
withName: convert_BAM2Pileup_SAMtools {
cpus = 1
memory = 1500.MB
}
withName: create_IndelCandidate_SAMtools {
cpus = 1
memory = 1500.MB
}
withName: call_sIndel_Manta {
cpus = 2
}
withName: call_sSNV_Strelka2 {
cpus = 2
}
}
withName: plot_VennDiagram_R {
cpus = 1
}
withName: concat_VCFs_BCFtools {
cpus = 1
}
}