Skip to content
Snippets Groups Projects
Commit 70811600 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

Merge branch 'BIOWDL-247' of https://github.com/biowdl/tasks into BIOWDL-247

parents 7af2606d 1790b868
No related branches found
No related tags found
No related merge requests found
......@@ -62,8 +62,8 @@ task Cutadapt {
String? reportPath
Int cores = 1
Int memory = 16
String dockerTag = "2.3--py36h14c3975_0"
Int memory = 16 # FIXME: Insane memory. Double-check if needed.
String dockerImage = "quay.io/biocontainers/cutadapt:2.3--py36h14c3975_0"
}
String read2outputArg = if (defined(read2output))
......@@ -169,6 +169,6 @@ task Cutadapt {
runtime {
cpu: cores
memory: memory
docker: "quay.io/biocontainers/cutadapt:" + dockerTag
docker: dockerImage
}
}
......@@ -18,7 +18,7 @@ task Fastqc {
String? dir
Int threads = 1
String dockerTag = "0.11.7--4"
String dockerImage = "quay.io/biocontainers/fastqc:0.11.7--4"
Array[File]? NoneArray
File? NoneFile
}
......@@ -61,7 +61,7 @@ task Fastqc {
runtime {
cpu: threads
docker: "quay.io/biocontainers/fastqc:" + dockerTag
docker: dockerImage
}
}
......
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