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
43921519
Unverified
Commit
43921519
authored
4 years ago
by
van den Berg
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #258 from biowdl/ccs5
Update to CCS version 5
parents
f5a89268
ccfd8433
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
ccs.wdl
+8
-3
8 additions, 3 deletions
ccs.wdl
with
9 additions
and
3 deletions
CHANGELOG.md
+
1
−
0
View file @
43921519
...
...
@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 5.0.0-dev
---------------------------
+
CCS: Update CCS to version 5.
+
deepvariant: Add task for DeepVariant.
+
gatk: Make intervals optional for GenotypeGVCFs.
+
isoseq3: Add required bam index input to isoseq3.
...
...
This diff is collapsed.
Click to expand it.
ccs.wdl
+
8
−
3
View file @
43921519
...
...
@@ -29,12 +29,14 @@ task CCS {
Float minReadQuality = 0.99
String logLevel = "WARN"
File subreadsFile
File? subreadsIndexFile
String? chunkString
String outputPrefix
Int cores = 2
String memory = "2G"
Int timeMinutes = 1440
String dockerImage = "quay.io/biocontainers/pbccs:
4.2
.0--0"
String dockerImage = "quay.io/biocontainers/pbccs:
5.0
.0--0"
}
command {
...
...
@@ -48,7 +50,8 @@ task CCS {
--min-rq ~{minReadQuality} \
--log-level ~{logLevel} \
--num-threads ~{cores} \
~{"--report-file " + outputPrefix + ".ccs.report.txt"} \
~{"--chunk " + chunkString} \
~{"--report-json " + outputPrefix + ".ccs.report.json"} \
~{"--log-file " + outputPrefix + ".ccs.stderr.log"} \
~{subreadsFile} \
~{outputPrefix + ".ccs.bam"}
...
...
@@ -57,7 +60,7 @@ task CCS {
output {
File ccsBam = outputPrefix + ".ccs.bam"
File ccsBamIndex = outputPrefix + ".ccs.bam.pbi"
File ccsReport = outputPrefix + ".ccs.report.
txt
"
File ccsReport = outputPrefix + ".ccs.report.
json
"
File ccsStderr = outputPrefix + ".ccs.stderr.log"
}
...
...
@@ -77,6 +80,8 @@ task CCS {
minReadQuality: {description: "Minimum predicted accuracy in [0, 1].", category: "common"}
logLevel: {description: "Set log level. Valid choices: (TRACE, DEBUG, INFO, WARN, FATAL).", category: "advanced"}
subreadsFile: {description: "Subreads input file.", category: "required"}
subreadsIndexFile: {description: "Index for the subreads input file, required when using chunkString.", category: "advanced"}
chunkString: {descpription: "Chunk string (e.g. 1/4, 5/5) for CCS.", category: "advanced"}
outputPrefix: {description: "Output directory path + output file prefix.", category: "required"}
cores: {description: "The number of cores to be used.", category: "advanced"}
memory: {description: "The amount of memory available to the job.", 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