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
978b19c9
Unverified
Commit
978b19c9
authored
5 years ago
by
Cats
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #179 from biowdl/BIOWDL-393
add index for commonvariantsites (CollectAllelicounts)
parents
2e1a3165
ff026921
Branches
BIOWDL-450
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
+2
-0
2 additions, 0 deletions
CHANGELOG.md
gatk.wdl
+5
-0
5 additions, 0 deletions
gatk.wdl
with
7 additions
and
0 deletions
CHANGELOG.md
+
2
−
0
View file @
978b19c9
...
...
@@ -11,6 +11,8 @@ that users understand how the changes affect the new version.
version 2.2.0-dev
---------------------------
+
Add
`minimumContigLength`
input to PlotDenoisedCopyRatios and PlotModeledSegments.
+
Add
`commonVariantSitesIndex`
input to CollectAllelicCounts
+
Centrifuge: Fix issue where Centrifuge could not locate index files.
+
Increase default memory of BWA mem to 32G (was 16G).
+
Add
`memory`
input to fastqc task.
...
...
This diff is collapsed.
Click to expand it.
gatk.wdl
+
5
−
0
View file @
978b19c9
...
...
@@ -295,6 +295,7 @@ task CollectAllelicCounts {
input {
String allelicCountsPath = "allelic_counts.tsv"
File commonVariantSites
File? commonVariantSitesIndex
File inputBam
File inputBamIndex
File referenceFasta
...
...
@@ -1129,6 +1130,7 @@ task PlotDenoisedCopyRatios {
String outputPrefix
File standardizedCopyRatios
File denoisedCopyRatios
Int? minimumContigLength
String memory = "32G"
String javaXmx = "7G"
...
...
@@ -1143,6 +1145,7 @@ task PlotDenoisedCopyRatios {
--standardized-copy-ratios ~{standardizedCopyRatios} \
--denoised-copy-ratios ~{denoisedCopyRatios} \
--sequence-dictionary ~{referenceFastaDict} \
~{"--minimum-contig-length " + minimumContigLength} \
--output ~{outputDir} \
--output-prefix ~{outputPrefix}
}
...
...
@@ -1183,6 +1186,7 @@ task PlotModeledSegments {
File denoisedCopyRatios
File segments
File allelicCounts
Int? minimumContigLength
String memory = "21G"
String javaXmx = "7G"
...
...
@@ -1198,6 +1202,7 @@ task PlotModeledSegments {
--allelic-counts ~{allelicCounts} \
--segments ~{segments} \
--sequence-dictionary ~{referenceFastaDict} \
~{"--minimum-contig-length " + minimumContigLength} \
--output ~{outputDir} \
--output-prefix ~{outputPrefix}
}
...
...
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