Skip to content
Snippets Groups Projects
Commit 3ec31315 authored by Cats's avatar Cats
Browse files

fix various issues

parent 3c3252d0
No related branches found
No related tags found
No related merge requests found
...@@ -263,7 +263,7 @@ task CallCopyRatioSegments { ...@@ -263,7 +263,7 @@ task CallCopyRatioSegments {
command { command {
set -e set -e
mkdir -p "$(~{outputPrefix})" mkdir -p "$(dirname ~{outputPrefix})"
gatk --java-options -Xmx~{javaXmx} \ gatk --java-options -Xmx~{javaXmx} \
CallCopyRatioSegments \ CallCopyRatioSegments \
-I ~{copyRatioSegments} \ -I ~{copyRatioSegments} \
...@@ -999,15 +999,15 @@ task ModelSegments { ...@@ -999,15 +999,15 @@ task ModelSegments {
--denoised-copy-ratios ~{denoisedCopyRatios} \ --denoised-copy-ratios ~{denoisedCopyRatios} \
--allelic-counts ~{allelicCounts} \ --allelic-counts ~{allelicCounts} \
~{"--normal-allelic-counts " + normalAllelicCounts} \ ~{"--normal-allelic-counts " + normalAllelicCounts} \
--minimum-total-allele-count-case ~{minimumTotalAlleleCountCase} --minimum-total-allele-count-case ~{minimumTotalAlleleCountCase} \
--maximum-number-of-smoothing-iterations ~{maximumNumberOfSmoothingIterations} --maximum-number-of-smoothing-iterations ~{maximumNumberOfSmoothingIterations} \
--output ~{outputDir} \ --output ~{outputDir} \
--output-prefix ~{outputPrefix} --output-prefix ~{outputPrefix}
} }
output { output {
File hetrozygousAllelicCounts = outputDir + "/" + outputPrefix + ".hets.tsv" File hetrozygousAllelicCounts = outputDir + "/" + outputPrefix + ".hets.tsv"
File normalHetrozygousAllelicCounts = outputDir + "/" + outputPrefix + ".hets.normal.tsv" File? normalHetrozygousAllelicCounts = outputDir + "/" + outputPrefix + ".hets.normal.tsv"
File copyRatioSegments = outputDir + "/" + outputPrefix + ".cr.seg" File copyRatioSegments = outputDir + "/" + outputPrefix + ".cr.seg"
File copyRatioCBS = outputDir + "/" + outputPrefix + ".cr.igv.seg" File copyRatioCBS = outputDir + "/" + outputPrefix + ".cr.igv.seg"
File alleleFractionCBS = outputDir + "/" + outputPrefix + ".af.igv.seg" File alleleFractionCBS = outputDir + "/" + outputPrefix + ".af.igv.seg"
...@@ -1124,9 +1124,9 @@ task PlotDenoisedCopyRatios { ...@@ -1124,9 +1124,9 @@ task PlotDenoisedCopyRatios {
File standardizedCopyRatios File standardizedCopyRatios
File denoisedCopyRatios File denoisedCopyRatios
String memory = "21G" String memory = "32G"
String javaXmx = "7G" String javaXmx = "7G"
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0" String dockerImage = "broadinstitute/gatk:4.1.4.0" # The biocontainer doesn't seem to contain R.
} }
command { command {
...@@ -1180,13 +1180,13 @@ task PlotModeledSegments { ...@@ -1180,13 +1180,13 @@ task PlotModeledSegments {
String memory = "21G" String memory = "21G"
String javaXmx = "7G" String javaXmx = "7G"
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0" String dockerImage = "broadinstitute/gatk:4.1.4.0" # The biocontainer doesn't seem to contain R.
} }
command { command {
set -e set -e
mkdir -p ~{outputDir} mkdir -p ~{outputDir}
gatk --java-option -Xmx~{javaXmx} \ gatk --java-options -Xmx~{javaXmx} \
PlotModeledSegments \ PlotModeledSegments \
--denoised-copy-ratios ~{denoisedCopyRatios} \ --denoised-copy-ratios ~{denoisedCopyRatios} \
--allelic-counts ~{allelicCounts} \ --allelic-counts ~{allelicCounts} \
......
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