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

dockerize multiqc

parent f5ba74d4
No related branches found
No related tags found
1 merge request!97Containerize tasks for RNA-seq
......@@ -2,7 +2,7 @@ version 1.0
task MultiQC {
input {
String? preCommand
String dockerTag = "1.7--py_1"
File analysisDirectory
Array[File] dependencies # This must be used in order to run multiqc after these tasks.
Boolean force = false
......@@ -83,4 +83,8 @@ task MultiQC {
File multiqcReport = outDir + "/" + reportFilename + "_report.html"
File multiqcDataDir = outDir + "/" +reportFilename + "_data"
}
runtime {
docker: "quay.io/biocontainers/multiqc:" + dockerTag
}
}
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