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
3f768510
Unverified
Commit
3f768510
authored
4 years ago
by
Cedrick Agaser
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into optional-indexing
parents
5781179d
748ed63b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
survivor.wdl
+6
-6
6 additions, 6 deletions
survivor.wdl
with
7 additions
and
6 deletions
CHANGELOG.md
+
1
−
0
View file @
3f768510
...
...
@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 5.0.0-dev
---------------------------
+
survivor: replace integer boolean type to logical true or false value.
+
vt: Add option to ignore masked reference.
+
bcftools: add sorting and annotation
+
Bam2fastx: Input bam and index are now arrays.
...
...
This diff is collapsed.
Click to expand it.
survivor.wdl
+
6
−
6
View file @
3f768510
...
...
@@ -27,9 +27,9 @@ task Merge {
Array[File] filePaths
Int breakpointDistance = 1000
Int suppVecs = 2
Int
svType =
1
Int
strandType =
1
Int
distanceBySvSize =
0
Boolean
svType =
true
Boolean
strandType =
true
Boolean
distanceBySvSize =
false
Int minSize = 30
String outputPath = "./survivor/merged.vcf"
String memory = "24G"
...
...
@@ -45,9 +45,9 @@ task Merge {
fileList \
~{breakpointDistance} \
~{suppVecs} \
~{svType} \
~{strandType} \
~{distanceBySvSize} \
~{
true=1 false=0
svType} \
~{
true=1 false=0
strandType} \
~{
true=1 false=0
distanceBySvSize} \
~{minSize} \
~{outputPath}
}
...
...
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