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
ca0344d5
Commit
ca0344d5
authored
7 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
debugged spades
parent
47f2f310
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!9
Changes for virus assembly pipeline
,
!10
Extra tasks required for assembly.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
seqtk.wdl
+3
-3
3 additions, 3 deletions
seqtk.wdl
spades.wdl
+4
-4
4 additions, 4 deletions
spades.wdl
with
7 additions
and
7 deletions
seqtk.wdl
+
3
−
3
View file @
ca0344d5
task sample {
File sequenceFile
String? outFilePath = "subsampledReads"
String? outFilePath = "subsampledReads
.fq.gz
"
String? preCommand
Int? seed
Boolean? twoPassMode
Float? fraction
Int? number
Boolean? zip
Boolean? zip
= true
command {
set -e -o pipefail
...
...
@@ -20,6 +20,6 @@ task sample {
${"> " + outFilePath}
}
output {
File subsampledReads=select_first([outFilePath])
File subsampledReads=
select_first([outFilePath])
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
spades.wdl
+
4
−
4
View file @
ca0344d5
...
...
@@ -39,7 +39,7 @@ task spades {
${true="--rna" false="" rna} \
${true="--plasmid" false="" plasmid} \
${true="--iontorrent" false="" ionTorrent} \
${"--12 " + interlacedReads }
${"--12 " + interlacedReads }
\
${"-1 " + read1 } \
${"-2 " + read2 } \
${"-s " + singleRead } \
...
...
@@ -65,12 +65,12 @@ task spades {
Array[File] correctedReads = glob(outputDir + "/corrected/*.fastq*")
File scaffolds = outputDir + "/scaffolds.fasta"
File contigs = outputDir + "/contigs.fasta"
File assemblyGraphGfa = outputDir + "/assembly_graph.gfa"
File assemblyGraphFastg = outputDir + "/assembly_graph.fast
q
"
File assemblyGraph
WithScaffolds
Gfa = outputDir + "/assembly_graph
_with_scaffolds
.gfa"
File assemblyGraphFastg = outputDir + "/assembly_graph.fast
g
"
File contigsPaths = outputDir + "/contigs.paths"
File scaffoldsPaths = outputDir + "/scaffolds.paths"
File params = outputDir + "/params.txt"
File log = outputDir + "/spades
/
log"
File log = outputDir + "/spades
.
log"
}
runtime {
cpu: select_first([threads])
...
...
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