Skip to content
Snippets Groups Projects
Commit 24cc6213 authored by Cats's avatar Cats
Browse files

make purple's somaticRainfallPlot output optional

parent f7f65018
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,8 @@ that users understand how the changes affect the new version.
-->
version 5.1.0-dev
---------------------------
+ Purple's `somaticRainfallPlot` output is now optional and included in
the `plots` output as well.
+ Bedtools coverage's timeMinutes now defaults to `320`.
+ Gridss' runtime attribute defaults were changed to:
+ jvmHeapSizeGb: `64`
......
......@@ -1133,7 +1133,7 @@ task Purple {
File segmentPlot = "~{outputDir}/plot/~{tumorName}.segment.png"
File somaticClonalityPlot = "~{outputDir}/plot/~{tumorName}.somatic.clonality.png"
File somaticPlot = "~{outputDir}/plot/~{tumorName}.somatic.png"
File somaticRainfallPlot = "~{outputDir}/plot/~{tumorName}.somatic.rainfall.png"
File? somaticRainfallPlot = "~{outputDir}/plot/~{tumorName}.somatic.rainfall.png"
File circosNormalRatio = "~{outputDir}/circos/~{referenceName}.ratio.circos"
File circosBaf = "~{outputDir}/circos/~{tumorName}.baf.circos"
File circosConf = "~{outputDir}/circos/~{tumorName}.circos.conf"
......@@ -1150,8 +1150,8 @@ task Purple {
purpleSegmentTsv, purpleSomaticClonalityTsv, purpleSomaticHistTsv,
purpleSomaticVcf, purpleSomaticVcfIndex, purpleSvVcf, purpleSvVcfIndex,
purpleVersion, purpleGermlineVcf, purpleGermlineVcfIndex, driverCatalogGermlineTsv]
Array[File] plots = [circosPlot, copynumberPlot, inputPlot, mapPlot, purityRangePlot,
segmentPlot, somaticClonalityPlot, somaticPlot]
Array[File] plots = select_all([circosPlot, copynumberPlot, inputPlot, mapPlot, purityRangePlot,
segmentPlot, somaticClonalityPlot, somaticPlot, somaticRainfallPlot])
Array[File] circos = [circosNormalRatio, circosConf, circosIndel, circosLink,
circosTumorRatio, circosGaps, circosBaf, circosCnv, circosInputConf, circosMap,
circosSnp]
......
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