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
Branches BIOWDL-450
No related tags found
No related merge requests found
......@@ -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.
......
......@@ -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}
}
......
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