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
8e8f9009
Commit
8e8f9009
authored
5 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
dockerImage for samtools
parent
334705b6
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
samtools.wdl
+16
-16
16 additions, 16 deletions
samtools.wdl
with
16 additions
and
16 deletions
samtools.wdl
+
16
−
16
View file @
8e8f9009
...
...
@@ -6,7 +6,7 @@ task BgzipAndIndex {
String outputDir
String type = "vcf"
String docker
T
ag = "0.2.6--ha92aebf_0"
String docker
Im
ag
e
= "
quay.io/biocontainers/tabix:
0.2.6--ha92aebf_0"
}
String outputGz = outputDir + "/" + basename(inputFile) + ".gz"
...
...
@@ -23,7 +23,7 @@ task BgzipAndIndex {
}
runtime {
docker:
"quay.io/biocontainers/tabix:" +
docker
T
ag
docker: docker
Im
ag
e
}
}
...
...
@@ -32,7 +32,7 @@ task Index {
File bamFile
String bamIndexPath
String docker
T
ag = "1.8--h46bd0b3_5"
String docker
Im
ag
e
= "
quay.io/biocontainers/samtools:
1.8--h46bd0b3_5"
}
command {
...
...
@@ -45,7 +45,7 @@ task Index {
}
runtime {
docker:
"quay.io/biocontainers/samtools:" +
docker
T
ag
docker: docker
Im
ag
e
}
}
...
...
@@ -55,7 +55,7 @@ task Merge {
String outputBamPath = "merged.bam"
Boolean force = true
String docker
T
ag = "1.8--h46bd0b3_5"
String docker
Im
ag
e
= "
quay.io/biocontainers/samtools:
1.8--h46bd0b3_5"
}
String indexPath = sub(outputBamPath, "\.bam$",".bai")
...
...
@@ -72,7 +72,7 @@ task Merge {
}
runtime {
docker:
"quay.io/biocontainers/samtools:" +
docker
T
ag
docker: docker
Im
ag
e
}
}
...
...
@@ -81,7 +81,7 @@ task Markdup {
File inputBam
String outputBamPath
String docker
T
ag = "1.8--h46bd0b3_5"
String docker
Im
ag
e
= "
quay.io/biocontainers/samtools:
1.8--h46bd0b3_5"
}
command {
...
...
@@ -93,7 +93,7 @@ task Markdup {
}
runtime {
docker:
"quay.io/biocontainers/samtools:" +
docker
T
ag
docker: docker
Im
ag
e
}
}
...
...
@@ -102,7 +102,7 @@ task Flagstat {
File inputBam
String outputPath
String docker
T
ag = "1.8--h46bd0b3_5"
String docker
Im
ag
e
= "
quay.io/biocontainers/samtools:
1.8--h46bd0b3_5"
}
command {
...
...
@@ -116,7 +116,7 @@ task Flagstat {
}
runtime {
docker:
"quay.io/biocontainers/samtools:" +
docker
T
ag
docker: docker
Im
ag
e
}
}
...
...
@@ -135,7 +135,7 @@ task Fastq {
Int threads = 1
Int memory = 1
String docker
T
ag = "1.8--h46bd0b3_5"
String docker
Im
ag
e
= "
quay.io/biocontainers/samtools:
1.8--h46bd0b3_5"
}
command {
...
...
@@ -162,7 +162,7 @@ task Fastq {
runtime {
cpu: threads
memory: memory
docker:
"quay.io/biocontainers/samtools:" +
docker
T
ag
docker: docker
Im
ag
e
}
parameter_meta {
...
...
@@ -181,7 +181,7 @@ task Tabix {
File inputFile
String outputFilePath = "indexed.vcf.gz"
String type = "vcf"
String docker
T
ag = "0.2.6--ha92aebf_0"
String docker
Im
ag
e
= "
quay.io/biocontainers/tabix:
0.2.6--ha92aebf_0"
}
# FIXME: It is better to do the indexing on VCF creation. Not in a separate task. With file localization this gets hairy fast.
command {
...
...
@@ -200,7 +200,7 @@ task Tabix {
}
runtime {
docker:
"quay.io/biocontainers/tabix:" +
docker
T
ag
docker: docker
Im
ag
e
}
}
...
...
@@ -218,7 +218,7 @@ task View {
Int threads = 1
Int memory = 1
String docker
T
ag = "1.8--h46bd0b3_5"
String docker
Im
ag
e
= "
quay.io/biocontainers/samtools:
1.8--h46bd0b3_5"
}
command {
...
...
@@ -242,6 +242,6 @@ task View {
runtime {
cpu: threads
memory: memory
docker:
"quay.io/biocontainers/samtools:" +
docker
T
ag
docker: docker
Im
ag
e
}
}
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