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

Update image and tasks for chunk scatter

parent 3b583e41
No related branches found
No related tags found
No related merge requests found
......@@ -28,27 +28,28 @@ task ChunkedScatter {
Int? overlap
Int? minimumBasesPerFile
String memory = "256M"
Int timeMinutes = 2
String dockerImage = "quay.io/biocontainers/chunked-scatter:0.1.0--py_0"
String dockerImage = "quay.io/biocontainers/chunked-scatter:0.2.0--py_0"
}
command {
set -e
mkdir -p ~{prefix}
chunked-scatter \
--print-paths \
-p ~{prefix} \
-i ~{inputFile} \
~{"-c " + chunkSize} \
~{"-o " + overlap} \
~{"-m " + minimumBasesPerFile}
~{"-m " + minimumBasesPerFile} \
~{inputFile}
}
output {
Array[File] scatters = glob(prefix + "*.bed")
Array[File] scatters = read_lines(stdout())
}
runtime {
memory: "4G"
cpu: 1
memory: memory
time_minutes: timeMinutes
docker: dockerImage
}
......@@ -75,7 +76,7 @@ task ScatterRegions {
Int? scatterSize
Int timeMinutes = 2
String memory = "256M"
String dockerImage = "biowdl/chunked-scatter:latest"
String dockerImage = "quay.io/biocontainers/chunked-scatter:0.2.0--py_0"
}
String finalSize = if defined(scatterSize) then "~{scatterSize}" else "~{scatterSizeMillions}000000"
......
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