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
68c7cbd9
Unverified
Commit
68c7cbd9
authored
5 years ago
by
Cedrick Agaser
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #197 from biowdl/add_UMI_separator
Add umi separator
parents
e1c30a97
67f85bef
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
+4
-1
4 additions, 1 deletion
umi-tools.wdl
with
5 additions
and
1 deletion
CHANGELOG.md
+
1
−
0
View file @
68c7cbd9
...
...
@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 3.0.0
---------------------------
+
Add optional input umiSeparator in umi-tools dedup task.
+
Update command section syntax Minimap2, Talon, TranscriptClean and Centrifuge.
+
Add CCS workflow WDL files (ccs.wdl, lima.wdl, isoseq3.wdl).
+
Update TALON version to 4.4.2.
...
...
This diff is collapsed.
Click to expand it.
umi-tools.wdl
+
4
−
1
View file @
68c7cbd9
...
...
@@ -70,6 +70,7 @@ task Dedup {
input {
File inputBam
File inputBamIndex
String? umiSeparator
String outputBamPath
String? statsPrefix
Boolean paired = true
...
...
@@ -89,6 +90,7 @@ task Dedup {
--stdin ~{inputBam} \
--stdout ~{outputBamPath} \
~{"--output-stats " + statsPrefix} \
~{"--umi-separator=" + umiSeparator}
~{true="--paired" false="" paired}
samtools index ~{outputBamPath} ~{outputBamIndex}
}
...
...
@@ -111,9 +113,10 @@ task Dedup {
inputBamIndex: {description: "The index for the ipnut BAM file.", cateogry: "required"}
outputBamPath: {description: "The location to write the output BAM file to.", category: "required"}
statsPrefix: {description: "The prefix for the stats files.", category: "advanced"}
umiSeparator: {description: "Seperator used for UMIs in the read names.", category: "advanced"}
paired: {description: "Whether or not the data is paired.", category: "common"}
memory: {description: "The amount of memory required for the task.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
}
\ No newline at end of file
}
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