Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
a34711e2
Commit
a34711e2
authored
4 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
downgrade stringtie and fix size call in gffread
parent
d9eedf32
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+4
-1
4 additions, 1 deletion
CHANGELOG.md
gffread.wdl
+1
-1
1 addition, 1 deletion
gffread.wdl
stringtie.wdl
+1
-1
1 addition, 1 deletion
stringtie.wdl
with
6 additions
and
3 deletions
CHANGELOG.md
+
4
−
1
View file @
a34711e2
...
...
@@ -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`
.
...
...
This diff is collapsed.
Click to expand it.
gffread.wdl
+
1
−
1
View file @
a34711e2
...
...
@@ -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"
}
...
...
This diff is collapsed.
Click to expand it.
stringtie.wdl
+
1
−
1
View file @
a34711e2
...
...
@@ -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 {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment