Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
e1401cec
Commit
e1401cec
authored
5 years ago
by
JB
Browse files
Options
Downloads
Patches
Plain Diff
Addressed PR comments.
parent
04a4f7d5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-1
1 addition, 1 deletion
CHANGELOG.md
minimap2.wdl
+4
-5
4 additions, 5 deletions
minimap2.wdl
with
5 additions
and
6 deletions
CHANGELOG.md
+
1
−
1
View file @
e1401cec
...
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
minimap2.wdl
+
4
−
5
View file @
e1401cec
...
...
@@ -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}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment