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
46d05bb5
Commit
46d05bb5
authored
5 years ago
by
JasperBoom
Browse files
Options
Downloads
Patches
Plain Diff
Update TALON output to align with new version.
parent
f17ce2e4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
common.wdl
+1
-1
1 addition, 1 deletion
common.wdl
talon.wdl
+9
-10
9 additions, 10 deletions
talon.wdl
with
12 additions
and
11 deletions
CHANGELOG.md
+
2
−
0
View file @
46d05bb5
...
...
@@ -11,6 +11,8 @@ that users understand how the changes affect the new version.
version 2.2.0-dev
---------------------------
+
Update biowdl-input-converter in common.wdl to version 0.2.1.
+
Update TALON section to now include the new annotation file.
+
Update TALON default image to version 4.4.1.
version 2.1.0
...
...
This diff is collapsed.
Click to expand it.
common.wdl
+
1
−
1
View file @
46d05bb5
...
...
@@ -162,7 +162,7 @@ task YamlToJson {
File yaml
String outputJson = basename(yaml, "\.ya?ml$") + ".json"
# biowdl-input-converter has python and pyyaml.
String dockerImage = "quay.io/biocontainers/biowdl-input-converter:0.2.
0
--py_0"
String dockerImage = "quay.io/biocontainers/biowdl-input-converter:0.2.
1
--py_0"
}
command {
set -e
...
...
This diff is collapsed.
Click to expand it.
talon.wdl
+
9
−
10
View file @
46d05bb5
...
...
@@ -446,7 +446,6 @@ task SummarizeDatasets {
task Talon {
input {
File SAMfile
File configFile
File databaseFile
String genomeBuild
...
...
@@ -454,10 +453,9 @@ task Talon {
Int minimumIdentity = 0
String outputPrefix
String configFileName = basename(configFile)
String SAMfileName = basename(SAMfile)
Int cores = 4
String memory = "2
0
G"
String memory = "2
5
G"
String dockerImage = "biocontainers/talon:v4.4.1_cv1"
}
...
...
@@ -465,7 +463,7 @@ task Talon {
set -e
mkdir -p $(dirname ~{outputPrefix})
mv ${configFile} ./${configFileName}
mv ${SAMfile} ./${SAMfileName}
export TMPDIR=/tmp
talon \
~{"--f " + configFileName} \
~{"--db " + databaseFile} \
...
...
@@ -473,12 +471,13 @@ task Talon {
~{"--threads " + cores} \
~{"--cov " + minimumCoverage} \
~{"--identity " + minimumIdentity} \
~{"--o " + outputPrefix}
~{"--o " + outputPrefix
+ "/run"
}
}
output {
File outputUpdatedDatabase = databaseFile
File outputLog = outputPrefix + "_talon_QC.log"
File outputLog = outputPrefix + "/run_QC.log"
File outputAnnot = outputPrefix + "/run_talon_read_annot.tsv"
}
runtime {
...
...
@@ -488,10 +487,6 @@ task Talon {
}
parameter_meta {
SAMfile: {
description: "Input SAM file, same one as described in configFile.",
category: "required"
}
configFile: {
description: "Dataset config file (comma-delimited).",
category: "required"
...
...
@@ -524,5 +519,9 @@ task Talon {
description: "Log file from TALON run.",
category: "required"
}
outputAnnot: {
description: "Read annotation file from TALON run.",
category: "required"
}
}
}
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