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

dockerimage htseq collect-collumns

parent 515c860d
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ task CollectColumns { ...@@ -13,7 +13,7 @@ task CollectColumns {
File? referenceGtf File? referenceGtf
String? featureAttribute String? featureAttribute
String dockerTag = "0.2.0--py_1" String dockerImage = "quay.io/biocontainers/collect-columns:0.2.0--py_1"
} }
command { command {
...@@ -36,6 +36,6 @@ task CollectColumns { ...@@ -36,6 +36,6 @@ task CollectColumns {
runtime { runtime {
memory: 4 + ceil(0.5* length(inputTables)) memory: 4 + ceil(0.5* length(inputTables))
docker: "quay.io/biocontainers/collect-columns:" + dockerTag docker: dockerImage
} }
} }
\ No newline at end of file
...@@ -11,7 +11,7 @@ task HTSeqCount { ...@@ -11,7 +11,7 @@ task HTSeqCount {
String stranded = "no" String stranded = "no"
Int memory = 40 Int memory = 40
String dockerTag = "0.9.1--py36h7eb728f_2" String dockerImage = "quay.io/biocontainers/htseq:0.9.1--py36h7eb728f_2"
} }
command { command {
...@@ -32,6 +32,6 @@ task HTSeqCount { ...@@ -32,6 +32,6 @@ task HTSeqCount {
runtime { runtime {
memory: memory memory: memory
docker: "quay.io/biocontainers/htseq:" + dockerTag docker: dockerImage
} }
} }
\ No newline at end of file
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