diff --git a/CHANGELOG.md b/CHANGELOG.md index 79e1842bd4351b606f462171d5a260f735b6bcc3..ac978a0e6779efd1169be3419199e86f5ce8fe7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ that users understand how the changes affect the new version. version 1.1.0-dev --------------------------- ++ Minimap2: Add the option for --MD tag + TALON: Update average memory needs for main TALON process version 1.0.0 diff --git a/minimap2.wdl b/minimap2.wdl index b4e4d4ee63438570e0512c514565b41f647754fc..7177afd2d77f77662b7e9dac03b185c16779ea06 100644 --- a/minimap2.wdl +++ b/minimap2.wdl @@ -86,6 +86,7 @@ task Mapping { Int? mismatchPenalty String? howToFindGTAG Boolean? secondaryAlignment + Boolean? addMDtagToSAM Int cores = 4 Int memory = 7 @@ -106,6 +107,7 @@ task Mapping { ~{"-B " + mismatchPenalty} \ ~{"-u " + howToFindGTAG} \ --secondary=~{true="yes" false="no" secondaryAlignment} \ + ~{true="--MD" false="" addMDtagToSAM} \ ~{"-o " + outputPrefix} \ ~{"-t " + cores} \ ~{referenceFile} \ @@ -136,6 +138,7 @@ task Mapping { mismatchPenalty: "Mismatch penalty." howToFindGTAG: "How to find GT-AG. f:transcript strand, b:both strands, n:don't match GT-AG." secondaryAlignment: "Whether to output secondary alignments." + addMDtagToSAM: "Adds a MD tag to the SAM output file." outputAlignmentFile: "Mapping and alignment between collections of DNA sequences file." }