Skip to content
Snippets Groups Projects
Commit e1401cec authored by JB's avatar JB
Browse files

Addressed PR comments.

parent 04a4f7d5
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ that users understand how the changes affect the new version.
version 2.1.0-dev
---------------------------
+ Updated parameter_meta sections for Minimap2 and TranscriptClean.
+ Updated parameter_meta sections for Minimap2 and TranscriptClean to wdl-aid format.
+ Updated cores variable for TALON.
+ Updated TALON to version 4.4.
+ Added parameter_meta sections to the following tools:
......
......@@ -96,18 +96,17 @@ task Mapping {
Int kmerSize = 15
Boolean outputSAM = false
String outputPrefix
Boolean addMDtagToSAM = false
Boolean secondaryAlignment = false
File referenceFile
File queryFile
Int? maxIntronLength
Int? maxFragmentLength
Boolean? skipSelfAndDualMappings
Int? retainMaxSecondaryAlignments
Int? matchingScore
Int? mismatchPenalty
String? howToFindGTAG
Boolean? addMDtagToSAM
Boolean? secondaryAlignment
Int cores = 4
String memory = "30G"
......@@ -122,6 +121,8 @@ task Mapping {
~{"-k " + kmerSize} \
~{true="-a" false="" outputSAM} \
~{"-o " + outputPrefix} \
~{true="--MD" false="" addMDtagToSAM} \
--secondary=~{true="yes" false="no" secondaryAlignment} \
~{"-t " + cores} \
~{"-G " + maxIntronLength} \
~{"-F " + maxFragmentLength} \
......@@ -130,8 +131,6 @@ task Mapping {
~{"-A " + matchingScore} \
~{"-B " + mismatchPenalty} \
~{"-u " + howToFindGTAG} \
~{true="--MD" false="" addMDtagToSAM} \
--secondary=~{true="yes" false="no" secondaryAlignment} \
~{referenceFile} \
~{queryFile}
}
......
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