Skip to content
Snippets Groups Projects
Commit 781666d6 authored by António Paulo's avatar António Paulo
Browse files

update output file name for GetPileupSummaries GATK task

parent 789d3240
No related branches found
No related tags found
No related merge requests found
......@@ -356,13 +356,13 @@ task MergeStats {
task GetPileupSummaries {
input {
String sampleName
File sampleBam
File sampleBamIndex
File variantsForContamination
File variantsForContaminationIndex
File sitesForContamination
File sitesForContaminationIndex
String outputPrefix
Int memory = 4
Float memoryMultiplier = 1.5
......@@ -376,11 +376,11 @@ task GetPileupSummaries {
-I ~{sampleBam} \
-V ~{variantsForContamination} \
-L ~{sitesForContamination} \
-O ~{sampleName + "-pileups.table"}
-O ~{outputPrefix + "-pileups.table"}
}
output {
File pileups = sampleName + "-pileups.table"
File pileups = outputPrefix + "-pileups.table"
}
runtime {
......
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