Skip to content
Snippets Groups Projects
Commit 6657f26c authored by Cats's avatar Cats
Browse files

runtime_minutes -> time_minutes

parent fe306e5f
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ task GenomeGenerate {
Int threads = 4
String memory = "32G"
Int minutesPerGB = 240
Int timeMinutes = ceil(size(referenceFasta, "G") * 240 / threads)
String dockerImage = "quay.io/biocontainers/star:2.7.3a--0"
}
......@@ -69,7 +69,7 @@ task GenomeGenerate {
runtime {
cpu: threads
memory: memory
runtime_minutes: ceil(size(referenceFasta, "G") * minutesPerGB / threads)
time_minutes: timeMinutes
docker: dockerImage
}
......
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