Skip to content
Snippets Groups Projects
Verified Commit c8902c46 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

UrQt: switch cpus config from .nf to .config

parent 2901dd9f
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ profiles { ...@@ -4,6 +4,7 @@ profiles {
docker.enabled = true docker.enabled = true
process { process {
withName: trimming { withName: trimming {
cpus = 4
container = "urqt:d62c1f8" container = "urqt:d62c1f8"
} }
} }
...@@ -12,6 +13,7 @@ profiles { ...@@ -12,6 +13,7 @@ profiles {
singularity.enabled = true singularity.enabled = true
process { process {
withName: trimming { withName: trimming {
cpus = 4
container = "file:///bin/UrQt:d62c1f8.sif" container = "file:///bin/UrQt:d62c1f8.sif"
} }
} }
...@@ -24,6 +26,7 @@ profiles { ...@@ -24,6 +26,7 @@ profiles {
executor = "sge" executor = "sge"
clusterOptions = "-m e -cwd -V" clusterOptions = "-m e -cwd -V"
memory = "5GB" memory = "5GB"
cpus = 16
time = "12h" time = "12h"
queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F' queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv = 'openmp16' penv = 'openmp16'
......
...@@ -7,7 +7,6 @@ Channel ...@@ -7,7 +7,6 @@ Channel
process trimming { process trimming {
tag "${reads}" tag "${reads}"
cpus 4
publishDir "results/fastq/trimming/", mode: 'copy' publishDir "results/fastq/trimming/", mode: 'copy'
input: input:
......
...@@ -5,6 +5,7 @@ profiles { ...@@ -5,6 +5,7 @@ profiles {
process { process {
withName: trimming { withName: trimming {
container = "urqt:d62c1f8" container = "urqt:d62c1f8"
cpus = 4
} }
} }
} }
...@@ -13,6 +14,7 @@ profiles { ...@@ -13,6 +14,7 @@ profiles {
process { process {
withName: trimming { withName: trimming {
container = "file:///bin/UrQt:d62c1f8.sif" container = "file:///bin/UrQt:d62c1f8.sif"
cpus = 4
} }
} }
} }
...@@ -23,6 +25,7 @@ profiles { ...@@ -23,6 +25,7 @@ profiles {
module = "UrQt/d62c1f8" module = "UrQt/d62c1f8"
executor = "sge" executor = "sge"
clusterOptions = "-m e -cwd -V" clusterOptions = "-m e -cwd -V"
cpus = 16
memory = "5GB" memory = "5GB"
time = "12h" time = "12h"
queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F' queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
......
...@@ -10,7 +10,7 @@ Channel ...@@ -10,7 +10,7 @@ Channel
process trimming { process trimming {
tag "$file_id" tag "$file_id"
cpus 4 echo true
input: input:
set file_id, file(reads) from fastq_files set file_id, file(reads) from fastq_files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment