Skip to content

Commit 5d2d7b5

Browse files
committed
Fix label bug
1 parent 93c9b0d commit 5d2d7b5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.nf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ if (params.singleEnd) {
320320
if (!params.bwa_index){
321321
process makeBWAindex {
322322
tag "$fasta"
323-
label 'process_big'
323+
label 'process_high'
324324
publishDir path: { params.saveGenomeIndex ? "${params.outdir}/reference_genome" : params.outdir },
325325
saveAs: { params.saveGenomeIndex ? it : null }, mode: 'copy'
326326

@@ -515,7 +515,7 @@ if (params.skipTrimming){
515515
*/
516516
process bwaMEM {
517517
tag "$name"
518-
label 'process_big'
518+
label 'process_high'
519519

520520
input:
521521
set val(name), file(reads) from ch_trimmed_reads
@@ -861,7 +861,7 @@ process bigWig {
861861
*/
862862
process plotProfile {
863863
tag "$name"
864-
label 'process_big'
864+
label 'process_high'
865865
publishDir "${params.outdir}/bwa/mergedLibrary/deepTools/plotProfile", mode: 'copy'
866866

867867
input:
@@ -1062,7 +1062,7 @@ process peakQC {
10621062
*/
10631063
process plotFingerprint {
10641064
tag "${ip} vs ${control}"
1065-
label 'process_big'
1065+
label 'process_high'
10661066
publishDir "${params.outdir}/bwa/mergedLibrary/deepTools/plotFingerprint", mode: 'copy'
10671067

10681068
input:

0 commit comments

Comments
 (0)