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

dockerImage for gffread and CPAT

parent abe26c61
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ task CPAT {
# CPAT should not index the reference genome.
Array[String]? startCodons
Array[String]? stopCodons
String dockerTag = "v1.2.4_cv1"
String dockerImage = "biocontainers/cpat:v1.2.4_cv1"
}
# Some WDL magic in the command section to properly output the start and stopcodons to the command.
......@@ -34,7 +34,7 @@ task CPAT {
}
runtime {
docker: "biocontainers/cpat:" + dockerTag
docker: dockerImage
}
}
......
......@@ -10,7 +10,7 @@ task GffRead {
String? proteinFastaPath
String? filteredGffPath
Boolean outputGtfFormat = false
String dockerTag = "0.9.12--0"
String dockerImage = "quay.io/biocontainers/gffread:0.9.12--0"
}
# The mkdirs below are hackish. It should be
......@@ -41,6 +41,6 @@ task GffRead {
}
runtime {
docker: "quay.io/biocontainers/gffread:" + 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