Skip to content
Snippets Groups Projects
Commit 212a45f8 authored by Thamer Alsulaiman's avatar Thamer Alsulaiman
Browse files

limit number of concurrent processes in trimreads, alignreads, and filterreads...

limit number of concurrent processes in trimreads, alignreads, and filterreads to 4 to help with memory issues
parent fef9b644
2 merge requests!3Containerized version of chip-seq analysis,!2Added new Docker file for motif search (named meme-5.5.4) installed from...
Pipeline #14478 failed with stages
......@@ -176,7 +176,7 @@ process trimReads {
tag "$sampleId-$replicate"
publishDir "$outDir/${task.process}/${sampleId}", mode: 'copy'
maxForks 4
input:
set sampleId, reads, experimentId, biosample, factor, treatment, replicate, controlId from rawReads
......@@ -210,7 +210,7 @@ process alignReads {
queue '256GB,256GBv1'
tag "$sampleId-$replicate"
publishDir "$outDir/${task.process}/${sampleId}", mode: 'copy'
maxForks 4
input:
set sampleId, reads, experimentId, biosample, factor, treatment, replicate, controlId from trimmedReads
......@@ -247,7 +247,7 @@ process filterReads {
queue '128GB,256GB,256GBv1'
tag "$sampleId-$replicate"
publishDir "$outDir/${task.process}/${sampleId}", mode: 'copy'
maxForks 4
input:
set sampleId, mapped, experimentId, biosample, factor, treatment, replicate, controlId from mappedReads
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment