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
49e50524
Commit
49e50524
authored
Feb 03, 2020
by
Midoux Cedric
Browse files
checkm
parent
a615a1d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
catalogue.smk
View file @
49e50524
...
...
@@ -162,3 +162,25 @@ rule resume_metabat:
done = temp("work/metabat/{sample}.done")
shell:
"touch {output.done} "
rule checkm:
input:
"work/metabat/{sample}/{sample}.unbinned.fa"
output:
"work/checkm/{sample}/checkm.log"
threads:
8
params:
input = lambda wildcards, input: os.path.dirname(str(input)),
output = lambda wildcards, output: os.path.dirname(str(output))
shell:
"conda activate checkm-genome-1.0.18 "
" ; "
"checkm "
"lineage_wf "
"-t {threads} "
"-x fa "
"{params.output} "
"{params.input} "
" ; "
"conda deactivate"
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