File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -964,7 +964,7 @@ process makeSeqDict {
964964
965965 script:
966966 """
967- picard -Xmx${ task.memory.toMega()} M -Xms ${ task.memory.toMega() } M CreateSequenceDictionary R=$fasta O="${ fasta.baseName} .dict"
967+ picard -Xmx${ task.memory.toMega()} M CreateSequenceDictionary R=$fasta O="${ fasta.baseName} .dict"
968968 """
969969}
970970
@@ -2166,12 +2166,12 @@ process markduplicates{
21662166 // To make sure direct BAMs have a clean name
21672167 """
21682168 mv ${ bam} ${ libraryid} .bam
2169- picard -Xmx${ task.memory.toMega()} M -Xms ${ task.memory.toMega() } M MarkDuplicates INPUT=${ libraryid} .bam OUTPUT=${ libraryid} _rmdup.bam REMOVE_DUPLICATES=TRUE AS=TRUE METRICS_FILE="${ libraryid} _rmdup.metrics" VALIDATION_STRINGENCY=SILENT
2169+ picard -Xmx${ task.memory.toMega()} M MarkDuplicates INPUT=${ libraryid} .bam OUTPUT=${ libraryid} _rmdup.bam REMOVE_DUPLICATES=TRUE AS=TRUE METRICS_FILE="${ libraryid} _rmdup.metrics" VALIDATION_STRINGENCY=SILENT
21702170 samtools index ${ libraryid} _rmdup.bam ${ size}
21712171 """
21722172 } else {
21732173 """
2174- picard -Xmx${ task.memory.toMega()} M -Xms ${ task.memory.toMega() } M MarkDuplicates INPUT=${ libraryid} .bam OUTPUT=${ libraryid} _rmdup.bam REMOVE_DUPLICATES=TRUE AS=TRUE METRICS_FILE="${ libraryid} _rmdup.metrics" VALIDATION_STRINGENCY=SILENT
2174+ picard -Xmx${ task.memory.toMega()} M MarkDuplicates INPUT=${ libraryid} .bam OUTPUT=${ libraryid} _rmdup.bam REMOVE_DUPLICATES=TRUE AS=TRUE METRICS_FILE="${ libraryid} _rmdup.metrics" VALIDATION_STRINGENCY=SILENT
21752175 samtools index ${ libraryid} _rmdup.bam ${ size}
21762176 """
21772177 }
You can’t perform that action at this time.
0 commit comments