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
6d0ad7ad
Commit
6d0ad7ad
authored
5 years ago
by
JasperBoom
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of
https://github.com/biowdl/tasks
into BIOWDL-390.
parents
a3118f8a
d0f378cc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
umi-tools.wdl
+6
-6
6 additions, 6 deletions
umi-tools.wdl
with
7 additions
and
6 deletions
CHANGELOG.md
+
1
−
0
View file @
6d0ad7ad
...
...
@@ -13,6 +13,7 @@ version 2.2.0-dev
---------------------------
+
Add CCS workflow WDL files (ccs.wdl, lima.wdl, isoseq3.wdl).
+
Update TALON version to 4.4.2.
+
The statsPrefix input for umitools dedup is now optional.
+
Allow setting the
`--emit-ref-confidence`
flag for HaplotypeCaller.
+
Add
`--output-mode`
flag to HaplotypeCaller.
+
Added rtg.Format and rtg.VcfEval tasks.
...
...
This diff is collapsed.
Click to expand it.
umi-tools.wdl
+
6
−
6
View file @
6d0ad7ad
...
...
@@ -71,10 +71,10 @@ task Dedup {
File inputBam
File inputBamIndex
String outputBamPath
String statsPrefix
= "stats"
String
?
statsPrefix
Boolean paired = true
String memory = "
20
G"
String memory = "
5
G"
# Use a multi-package-container which includes umi_tools (0.5.5) and samtools (1.9)
String dockerImage = "quay.io/biocontainers/mulled-v2-509311a44630c01d9cb7d2ac5727725f51ea43af:6089936aca6219b5bb5f54210ac5eb456c7503f2-0"
...
...
@@ -88,7 +88,7 @@ task Dedup {
umi_tools dedup \
--stdin ~{inputBam} \
--stdout ~{outputBamPath} \
--output-stats
~{
statsPrefix} \
~{"
--output-stats
" +
statsPrefix} \
~{true="--paired" false="" paired}
samtools index ~{outputBamPath} ~{outputBamIndex}
}
...
...
@@ -96,9 +96,9 @@ task Dedup {
output {
File deduppedBam = outputBamPath
File deduppedBamIndex = outputBamIndex
File editDistance = statsPrefix + "_edit_distance.tsv"
File umiStats = statsPrefix + "_per_umi.tsv"
File positionStats = statsPrefix + "_per_umi_per_position.tsv"
File
?
editDistance = statsPrefix + "_edit_distance.tsv"
File
?
umiStats = statsPrefix + "_per_umi.tsv"
File
?
positionStats = statsPrefix + "_per_umi_per_position.tsv"
}
runtime {
...
...
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