Skip to content
Snippets Groups Projects
Commit 3d73a28b authored by JasperBoom's avatar JasperBoom
Browse files

Add baseline value.

parent 56030a53
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ that users understand how the changes affect the new version.
-->
version 3.1.0
---------------------------
+ Add time_minutes runtime to CCS, Lima & IsoSeq3.
+ Add time_minutes in runtime of CCS, Lima & IsoSeq3.
+ Lima: Replace mv command with cp.
+ Default threads for BWA in bwa.Kit task: 4. Samtools sort in the
same task: 1. Output BAM compression level to 1.
......
......@@ -34,7 +34,7 @@ task CCS {
Int cores = 4
String memory = "10G"
String dockerImage = "quay.io/biocontainers/pbccs:4.2.0--0"
Int timeMinutes = ceil(size(subreadsFile, "G") * 240 / cores)
Int timeMinutes = 1 + ceil(size(subreadsFile, "G") * 240 / cores)
}
command {
......
......@@ -32,7 +32,7 @@ task Refine {
Int cores = 4
String memory = "10G"
String dockerImage = "quay.io/biocontainers/isoseq3:3.3.0--0"
Int timeMinutes = ceil(size(inputBamFile, "G") * 240 / cores)
Int timeMinutes = 1 + ceil(size(inputBamFile, "G") * 240 / cores)
}
command <<<
......
......@@ -51,7 +51,7 @@ task Lima {
Int cores = 4
String memory = "10G"
String dockerImage = "quay.io/biocontainers/lima:1.11.0--0"
Int timeMinutes = ceil(size(inputBamFile, "G") * 240 / cores)
Int timeMinutes = 1 + ceil(size(inputBamFile, "G") * 240 / cores)
}
Map[String, String] libraryDesignOptions = {"same": "--same", "different": "--different", "neighbors": "--neighbors"}
......
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