Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Midoux Cedric
workflow_metagenomics
Commits
2e801311
Commit
2e801311
authored
Jan 14, 2020
by
Midoux Cedric
Browse files
assembly done
parent
1329eb4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
assembly.smk
View file @
2e801311
...
...
@@ -49,7 +49,8 @@ rule megahit:
input:
unpack(assembly_input)
output:
contigs = "work/megahit/{reads}/{reads}.contigs.fa"
contigs = "work/megahit/{reads}/{reads}.contigs.fa",
done = "work/megahit/{reads}/done"
threads:
20
params:
...
...
@@ -74,7 +75,8 @@ rule metaspades:
input:
unpack(assembly_input)
output:
contigs = "work/metaSPADES/{reads}/{reads}.contigs.fasta"
contigs = "work/metaSPADES/{reads}/{reads}.contigs.fasta",
done = "work/metaSPADES/{reads}/done"
threads:
20
params:
...
...
@@ -91,6 +93,8 @@ rule metaspades:
"{params.input} "
"-o {params.output} "
" ; "
" touch {output.done} "
" ; "
"conda activate seqkit-0.10.1 "
" ; "
"seqkit "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment