File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 11process {
22 withName: 'fastq_screen' {
3- memory = '4 G '
3+ memory = '4G '
44 }
55 withName: 'get_QC_thresholds' {
66 errorStrategy = 'ignore'
77 }
8+ withLabel: 'high_memory' {
9+ memory = '47G'
10+ }
811}
Original file line number Diff line number Diff line change @@ -255,6 +255,7 @@ process interop_summary {
255255}
256256
257257process multiqc_per_flowcell {
258+ label ' high_memory'
258259
259260 input:
260261 val runfolder_name // Run folder name
@@ -286,6 +287,7 @@ process multiqc_per_flowcell {
286287}
287288
288289process multiqc_per_project {
290+ label ' high_memory'
289291
290292 input:
291293 val runfolder_name
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ manifest {
55 description = ' A Nextflow run folder QC pipeline for SciLifeLab SNP&SEQ platform'
66 mainScript = ' main.nf'
77 nextflowVersion = ' !>=20.01.0'
8- version = ' 1.0'
8+ version = ' 1.0.1 '
99}
1010
1111profiles {
@@ -16,6 +16,13 @@ profiles {
1616 executor. name = ' local'
1717 executor. memory = ' 12G'
1818 includeConfig " $baseDir /config/compute_resources.config"
19+
20+ // Overwrite high_memory label
21+ process {
22+ withLabel : ' high_memory' {
23+ memory = ' 12G'
24+ }
25+ }
1926 }
2027
2128 irma {
You can’t perform that action at this time.
0 commit comments