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
ae67e087
Commit
ae67e087
authored
5 years ago
by
António Paulo
Browse files
Options
Downloads
Patches
Plain Diff
update -M and -A flags to be inputs and attributes unnecessarily marked as optional
update changelog
parent
48f0b3cf
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
vardict.wdl
+8
-6
8 additions, 6 deletions
vardict.wdl
with
9 additions
and
6 deletions
CHANGELOG.md
+
1
−
0
View file @
ae67e087
...
@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
...
@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 1.0.0-dev
version 1.0.0-dev
---------------------------
---------------------------
+
VarDict: Add user definable flags (-M, -A, -Q, -d, -v, -f) to the paired VCF filtering script.
+
Cutadapt: If the output is a gzipped file, compress with level 1 (instead of default 6).
+
Cutadapt: If the output is a gzipped file, compress with level 1 (instead of default 6).
+
Cutadapt: Fix issues with read2output when using single-end reads.
+
Cutadapt: Fix issues with read2output when using single-end reads.
+
Add feature type, idattr and additional attributes to htseq-count.
+
Add feature type, idattr and additional attributes to htseq-count.
...
...
This diff is collapsed.
Click to expand it.
vardict.wdl
+
8
−
6
View file @
ae67e087
...
@@ -20,10 +20,12 @@ task VarDict {
...
@@ -20,10 +20,12 @@ task VarDict {
Int endColumn = 3
Int endColumn = 3
Int geneColumn = 4
Int geneColumn = 4
Float? mappingQuality = 20
Boolean outputCandidateSomaticOnly = true
Int? minimumTotalDepth = 8
Boolean outputAllVariantsAtSamePosition = true
Int? minimumVariantDepth = 4
Float mappingQuality = 20
Float? minimumAlleleFrequency = 0.02
Int minimumTotalDepth = 8
Int minimumVariantDepth = 4
Float minimumAlleleFrequency = 0.02
Int threads = 1
Int threads = 1
Int memory = 16
Int memory = 16
...
@@ -50,8 +52,8 @@ task VarDict {
...
@@ -50,8 +52,8 @@ task VarDict {
~{true="var2vcf_paired.pl" false="var2vcf_valid.pl" defined(normalBam)} \
~{true="var2vcf_paired.pl" false="var2vcf_valid.pl" defined(normalBam)} \
-N "~{tumorSampleName}~{"|" + normalSampleName}" \
-N "~{tumorSampleName}~{"|" + normalSampleName}" \
~{true="" false="-E" defined(normalBam)} \
~{true="" false="-E" defined(normalBam)} \
-M
\
~{true="-M" false="" outputCandidateSomaticOnly}
\
-A
\
~{true="-A" false="" outputAllVariantsAtSamePosition}
\
-Q ~{mappingQuality} \
-Q ~{mappingQuality} \
-d ~{minimumTotalDepth} \
-d ~{minimumTotalDepth} \
-v ~{minimumVariantDepth} \
-v ~{minimumVariantDepth} \
...
...
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