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

downgrade stringtie and fix size call in gffread

parent d9eedf32
No related branches found
No related tags found
No related merge requests found
......@@ -10,13 +10,16 @@ that users understand how the changes affect the new version.
version 5.0.0-dev
---------------------------
+ Fixed the `size` call in the default for gffread's timeMinutes, to retrieve
GBs instead of bytes.
+ Update stringtie to version 1.3.6.
+ Update Lima to version 2.0.0.
+ Update IsoSeq3 to version 3.4.0.
+ Update samtools to version 1.11.
+ Update Picard to version 2.23.8.
+ Update NanoPlot to version 1.32.1.
+ Update MultiQC to version 1.9.
+ Update StringTie to version 2.1.4.
+ ~Update StringTie to version 2.1.4.~
+ Complete `parameter_meta` for tasks missing the outputs.
+ DeepVariant: Add an optional input for the gvcf index.
+ Samtools: `Sort` task now has `threads` in runtime instead of `1`.
......
......@@ -32,7 +32,7 @@ task GffRead {
String? proteinFastaPath
String? filteredGffPath
Int timeMinutes = 1 + ceil(size(inputGff) * 10)
Int timeMinutes = 1 + ceil(size(inputGff, "G") * 10)
String dockerImage = "quay.io/biocontainers/gffread:0.9.12--0"
}
......
......@@ -35,7 +35,7 @@ task Stringtie {
Int threads = 1
String memory = "2G"
Int timeMinutes = 1 + ceil(size(bam, "G") * 60 / threads)
String dockerImage = "quay.io/biocontainers/stringtie:2.1.4--h7e0af3c_0"
String dockerImage = "quay.io/biocontainers/stringtie:1.3.6--h92e31bf_0"
}
command {
......
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