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
d48141a8
Commit
d48141a8
authored
Jun 24, 2020
by
Midoux Cedric
Browse files
viromeQC
parent
1ab91ebc
Changes
2
Show whitespace changes
Inline
Side-by-side
global.smk
View file @
d48141a8
...
...
@@ -26,6 +26,8 @@ rule all:
#add-on
expand("work/addon/{sample}.small_contigs.taxNames.tsv", sample=config["SAMPLES"]),
#expand("work/addon/catalogue.{sample}.unmapped.taxNames.tsv", sample=config["SAMPLES"]),
#virome
"report/viromeQC.txt",
include: "../workflow_metagenomics/quality.smk"
...
...
@@ -36,3 +38,4 @@ include: "../workflow_metagenomics/annotation.smk"
include: "../workflow_metagenomics/count.smk"
include: "../workflow_metagenomics/catalogue.smk"
include: "../workflow_metagenomics/add-on.smk"
include: "../workflow_metagenomics/virome.smk"
virome.smk
0 → 100644
View file @
d48141a8
rule viromeQC:
input:
expand("DATA/trim/{sample}_{R}.fastq.gz", sample=config["SAMPLES"], R=["R1", "R2"])
output:
"report/viromeQC.txt"
threads:
8
shell:
"conda activate viromeQC-1.0 "
"&& "
"viromeQC.py "
"--input {input} "
"--output {output} "
"--bowtie2_threads {threads} "
"--diamond_threads {threads} "
"--enrichment_preset environmental "
"--tempdir /projet/tmp/ "
"&& "
"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