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
8c2cb732
Commit
8c2cb732
authored
4 years ago
by
Cats
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin' into time_minutes
parents
e39ea045
57edcae1
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
+3
-0
3 additions, 0 deletions
CHANGELOG.md
gatk.wdl
+7
-1
7 additions, 1 deletion
gatk.wdl
with
10 additions
and
1 deletion
CHANGELOG.md
+
3
−
0
View file @
8c2cb732
...
...
@@ -11,6 +11,9 @@ that users understand how the changes affect the new version.
version 3.2.0-develop
---------------------------
+
GATK.HaplotypeCaller: Add
`--dont-use-soft-clipped-bases`
and
`--standard-min-confidence-threshold-for-calling`
options. These are
required for RNA seq variant calling according to GATK best practices.
+
Samtools: Fix quotations in sort command.
+
Samtools SortByName is now called Sort.
+
Generalize sort task to now also sort by position, instead of just read name.
...
...
This diff is collapsed.
Click to expand it.
gatk.wdl
+
7
−
1
View file @
8c2cb732
...
...
@@ -959,6 +959,8 @@ task HaplotypeCaller {
String? outputMode
Boolean gvcf = false
String emitRefConfidence = if gvcf then "GVCF" else "NONE"
Boolean dontUseSoftClippedBases = false
Float? standardMinConfidenceThresholdForCalling
String memory = "5G"
String javaXmx = "4G"
...
...
@@ -981,7 +983,9 @@ task HaplotypeCaller {
~{"--pedigree " + pedigree} \
~{"--contamination-fraction-per-sample-file " + contamination} \
~{"--output-mode " + outputMode} \
--emit-ref-confidence ~{emitRefConfidence}
--emit-ref-confidence ~{emitRefConfidence} \
~{true="--dont-use-soft-clipped-bases" false="" dontUseSoftClippedBases} \
~{"--standard-min-confidence-threshold-for-calling " + standardMinConfidenceThresholdForCalling}
}
output {
...
...
@@ -1013,6 +1017,8 @@ task HaplotypeCaller {
category: "advanced"}
emitRefConfidence: {description: "Whether to include reference calls. Three modes: 'NONE', 'BP_RESOLUTION' and 'GVCF'",
category: "advanced"}
dontUseSoftClippedBases: {description: "Do not use soft-clipped bases. Should be 'true' for RNA variant calling.", category: "common"}
standardMinConfidenceThresholdForCalling: {description: "Confidence threshold used for calling variants.", category: "advanced"}
dbsnpVCF: {description: "A dbSNP VCF.", category: "common"}
dbsnpVCFIndex: {description: "The index for the dbSNP VCF.", category: "common"}
pedigree: {description: "Pedigree file for determining the population \"founders\"", category: "common"}
...
...
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