-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
99 lines (91 loc) · 2.11 KB
/
nextflow.config
File metadata and controls
99 lines (91 loc) · 2.11 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Specify absolute path to RICO container
params.rico_container = "/path/to/rico_container.sif"
// Add paths to requested CIBERSORT scripts (See README.md)
params.cibersort_script = ""
params.cibersort_matrix = ""
process {
container = params.rico_container
withName: STAR_RSEM {
container = params.rico_container
cpus = 48
memory = { 48.GB + (12.GB * task.attempt) }
}
withName: prep_files_for_immunedeconv {
container = params.rico_container
cpus = 4
memory = { 16.GB + (4.GB * task.attempt) }
}
withName: extract_matrix {
container = params.rico_container
cpus = 1
memory = { 2.GB + (1.GB * task.attempt) }
}
withName: immunedeconv {
container = "https://depot.galaxyproject.org/singularity/r-immunedeconv%3A2.0.3--r41hdfd78af_2"
cpus = 4
memory = { 16.GB + (4.GB * task.attempt) }
errorStrategy = { (method == "mcp_counter" || method == "xcell") ? 'ignore' : 'terminate' }
}
withName: immunedeconv_cibersort {
container = "https://depot.galaxyproject.org/singularity/r-immunedeconv%3A2.1.1--r42hdfd78af_0"
cpus = 4
memory = { 16.GB + (4.GB * task.attempt) }
}
withName: run_cibersort {
container = params.rico_container
cpus = 4
memory = { 16.GB + (4.GB * task.attempt) }
}
withName: update_LM22 {
container = params.rico_container
cpus = 1
memory = { 1.GB + (1.GB * task.attempt) }
}
withName: IPASS {
container = params.rico_container
cpus = 4
memory = { 16.GB + (4.GB * task.attempt) }
}
withName: M1M2 {
container = params.rico_container
cpus = 4
memory = { 16.GB + (4.GB * task.attempt) }
}
}
profiles {
standard {
process {
executor = 'local'
maxRetries = 1
errorStrategy = { return 'retry' }
cpus = 6
memory = "32 GB"
}
apptainer {
autoMounts = true
enabled = true
}
singularity {
autoMounts = true
enabled = true
}
}
production {
process {
clusterOptions = "--qos=prod"
executor = 'slurm'
maxRetries = 3
errorStrategy = { return 'retry' }
cpus = 6
memory = "32 GB"
}
apptainer {
autoMounts = true
enabled = true
}
singularity {
autoMounts = true
enabled = true
}
}
}