Skip to content
Snippets Groups Projects
Unverified Commit 978b19c9 authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #179 from biowdl/BIOWDL-393

add index for commonvariantsites (CollectAllelicounts)
parents 2e1a3165 ff026921
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,8 @@ that users understand how the changes affect the new version. ...@@ -11,6 +11,8 @@ that users understand how the changes affect the new version.
version 2.2.0-dev 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. + Centrifuge: Fix issue where Centrifuge could not locate index files.
+ Increase default memory of BWA mem to 32G (was 16G). + Increase default memory of BWA mem to 32G (was 16G).
+ Add `memory` input to fastqc task. + Add `memory` input to fastqc task.
......
...@@ -295,6 +295,7 @@ task CollectAllelicCounts { ...@@ -295,6 +295,7 @@ task CollectAllelicCounts {
input { input {
String allelicCountsPath = "allelic_counts.tsv" String allelicCountsPath = "allelic_counts.tsv"
File commonVariantSites File commonVariantSites
File? commonVariantSitesIndex
File inputBam File inputBam
File inputBamIndex File inputBamIndex
File referenceFasta File referenceFasta
...@@ -1129,6 +1130,7 @@ task PlotDenoisedCopyRatios { ...@@ -1129,6 +1130,7 @@ task PlotDenoisedCopyRatios {
String outputPrefix String outputPrefix
File standardizedCopyRatios File standardizedCopyRatios
File denoisedCopyRatios File denoisedCopyRatios
Int? minimumContigLength
String memory = "32G" String memory = "32G"
String javaXmx = "7G" String javaXmx = "7G"
...@@ -1143,6 +1145,7 @@ task PlotDenoisedCopyRatios { ...@@ -1143,6 +1145,7 @@ task PlotDenoisedCopyRatios {
--standardized-copy-ratios ~{standardizedCopyRatios} \ --standardized-copy-ratios ~{standardizedCopyRatios} \
--denoised-copy-ratios ~{denoisedCopyRatios} \ --denoised-copy-ratios ~{denoisedCopyRatios} \
--sequence-dictionary ~{referenceFastaDict} \ --sequence-dictionary ~{referenceFastaDict} \
~{"--minimum-contig-length " + minimumContigLength} \
--output ~{outputDir} \ --output ~{outputDir} \
--output-prefix ~{outputPrefix} --output-prefix ~{outputPrefix}
} }
...@@ -1183,6 +1186,7 @@ task PlotModeledSegments { ...@@ -1183,6 +1186,7 @@ task PlotModeledSegments {
File denoisedCopyRatios File denoisedCopyRatios
File segments File segments
File allelicCounts File allelicCounts
Int? minimumContigLength
String memory = "21G" String memory = "21G"
String javaXmx = "7G" String javaXmx = "7G"
...@@ -1198,6 +1202,7 @@ task PlotModeledSegments { ...@@ -1198,6 +1202,7 @@ task PlotModeledSegments {
--allelic-counts ~{allelicCounts} \ --allelic-counts ~{allelicCounts} \
--segments ~{segments} \ --segments ~{segments} \
--sequence-dictionary ~{referenceFastaDict} \ --sequence-dictionary ~{referenceFastaDict} \
~{"--minimum-contig-length " + minimumContigLength} \
--output ~{outputDir} \ --output ~{outputDir} \
--output-prefix ~{outputPrefix} --output-prefix ~{outputPrefix}
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment