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
bea74f06
Commit
bea74f06
authored
5 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
adress unused inputs in bedtools sort
parent
7a89255a
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
CPAT.wdl
+1
-1
1 addition, 1 deletion
CPAT.wdl
bedtools.wdl
+4
-0
4 additions, 0 deletions
bedtools.wdl
with
5 additions
and
1 deletion
CPAT.wdl
+
1
−
1
View file @
bea74f06
...
...
@@ -18,7 +18,7 @@ task CPAT {
# select_first is needed in order to convert the optional arrays to non-optionals.
command {
set -e
mkdir -p $(dirname ~{outFilePath})
mkdir -p
"
$(dirname ~{outFilePath})
"
cpat.py \
--gene ~{gene} \
--outfile ~{outFilePath} \
...
...
This diff is collapsed.
Click to expand it.
bedtools.wdl
+
4
−
0
View file @
bea74f06
...
...
@@ -27,6 +27,7 @@ task Sort {
Boolean sizeD = false
Boolean chrThenSizeA = false
Boolean chrThenSizeD = false
Boolean chrThenScoreA = false
Boolean chrThenScoreD = false
File? g
File? faidx
...
...
@@ -41,6 +42,9 @@ task Sort {
-i ~{inputBed} \
~{true="-sizeA" false="" sizeA} \
~{true="-sizeD" false="" sizeD} \
~{true="-chrThenSizeA" false="" chrThenSizeA} \
~{true="-chrThenSizeD" false="" chrThenSizeD} \
~{true="-chrThenScoreA" false="" chrThenScoreA} \
~{true="-chrThenScoreD" false="" chrThenScoreD} \
~{"-g " + g} \
~{"-faidx" + faidx} \
...
...
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