diff --git a/scala/src/org/broadinstitute/sting/queue/function/scattergather/BamGatherFunction.scala b/scala/src/org/broadinstitute/sting/queue/function/scattergather/BamGatherFunction.scala index 4c443a02a..b433ee10e 100644 --- a/scala/src/org/broadinstitute/sting/queue/function/scattergather/BamGatherFunction.scala +++ b/scala/src/org/broadinstitute/sting/queue/function/scattergather/BamGatherFunction.scala @@ -13,5 +13,5 @@ class BamGatherFunction extends GatherFunction { var picardMergeCompressionLevel: Option[Int] = None def commandLine = "java -jar %s%s%s%s".format(picardMergeSamFilesJar, - optional(" COMPRESSION_LEVEL=", picardMergeCompressionLevel), " OUTPUT=" + originalOutput, repeat(" INPUT=", gatherParts)) + optional(" COMPRESSION_LEVEL=", picardMergeCompressionLevel), " AS=true VALIDATION_STRINGENCY=SILENT SO=coordinate OUTPUT=" + originalOutput, repeat(" INPUT=", gatherParts)) }