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

dockerize gffcompare

parent 81717966
No related branches found
No related tags found
1 merge request!97Containerize tasks for RNA-seq
......@@ -2,7 +2,7 @@ version 1.0
task GffCompare {
input {
String? preCommand
String dockerTag = "0.10.6--h2d50403_0"
File? inputGtfList
Array[File] inputGtfFiles
File referenceAnnotation
......@@ -36,7 +36,6 @@ task GffCompare {
command {
set -e
~{preCommand}
~{"mkdir -p " + outputDir}
gffcompare \
-r ~{referenceAnnotation} \
......@@ -86,4 +85,8 @@ task GffCompare {
then totalPrefix + ".missed_introns.gtf"
else noneFile
}
runtime {
docker: "quay.io/biocontainers/gffcompare:" + dockerTag
}
}
\ 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