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
33cdf52e
Commit
33cdf52e
authored
4 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
update collect-columns to 1.0.0
parent
748ed63b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
collect-columns.wdl
+4
-1
4 additions, 1 deletion
collect-columns.wdl
with
4 additions
and
1 deletion
collect-columns.wdl
+
4
−
1
View file @
33cdf52e
...
@@ -29,13 +29,14 @@ task CollectColumns {
...
@@ -29,13 +29,14 @@ task CollectColumns {
Int? separator
Int? separator
Array[String]? sampleNames
Array[String]? sampleNames
Boolean header = false
Boolean header = false
Boolean sumOnDuplicateId = false
Array[String]? additionalAttributes
Array[String]? additionalAttributes
File? referenceGtf
File? referenceGtf
String? featureAttribute
String? featureAttribute
Int memoryGb = 4 + ceil(0.5 * length(inputTables))
Int memoryGb = 4 + ceil(0.5 * length(inputTables))
Int timeMinutes = 10
Int timeMinutes = 10
String dockerImage = "quay.io/biocontainers/collect-columns:
0.2
.0--py_
1
"
String dockerImage = "quay.io/biocontainers/collect-columns:
1.0
.0--py_
0
"
}
}
command {
command {
...
@@ -49,6 +50,7 @@ task CollectColumns {
...
@@ -49,6 +50,7 @@ task CollectColumns {
~{"-s " + separator} \
~{"-s " + separator} \
~{true="-n" false="" defined(sampleNames)} ~{sep=" " sampleNames} \
~{true="-n" false="" defined(sampleNames)} ~{sep=" " sampleNames} \
~{true="-H" false="" header} \
~{true="-H" false="" header} \
~{true="-S" false="" sumOnDuplicateId} \
~{true="-a" false="" defined(additionalAttributes)} ~{sep=" " additionalAttributes} \
~{true="-a" false="" defined(additionalAttributes)} ~{sep=" " additionalAttributes} \
~{"-g " + referenceGtf} \
~{"-g " + referenceGtf} \
~{"-F " + featureAttribute}
~{"-F " + featureAttribute}
...
@@ -72,6 +74,7 @@ task CollectColumns {
...
@@ -72,6 +74,7 @@ task CollectColumns {
separator: {description: "Equivalent to the -s option of collect-columns.", category: "advanced"}
separator: {description: "Equivalent to the -s option of collect-columns.", category: "advanced"}
sampleNames: {description: "Equivalent to the -n option of collect-columns.", category: "advanced"}
sampleNames: {description: "Equivalent to the -n option of collect-columns.", category: "advanced"}
header: {description: "Equivalent to the -H flag of collect-columns.", category: "advanced"}
header: {description: "Equivalent to the -H flag of collect-columns.", category: "advanced"}
sumOnDuplicateId: {description: "Equivalent to the -S flag of collect-columns.", category: "advanced"}
additionalAttributes: {description: "Equivalent to the -a option of collect-columns.", category: "advanced"}
additionalAttributes: {description: "Equivalent to the -a option of collect-columns.", category: "advanced"}
referenceGtf: {description: "Equivalent to the -g option of collect-columns.", category: "advanced"}
referenceGtf: {description: "Equivalent to the -g option of collect-columns.", category: "advanced"}
featureAttribute: {description: "Equivalent to the -F option of collect-columns.", category: "advanced"}
featureAttribute: {description: "Equivalent to the -F option of collect-columns.", category: "advanced"}
...
...
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