Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Cedric Midoux
deepomics16S
Commits
f083191d
Commit
f083191d
authored
Mar 23, 2021
by
Slaheddine Kastalli
Browse files
Delete quality.smk
parent
c79aa53b
Changes
1
Hide whitespace changes
Inline
Side-by-side
workflow/rules/quality.smk
deleted
100644 → 0
View file @
c79aa53b
rule fastqc:
input:
"DATA/{sample}.fastq.gz"
output:
zip = "work/fastqc/{sample}_fastqc.zip",
html = "work/fastqc/{sample}_fastqc.html"
params:
output = "work/fastqc/"
shell:
"conda activate fastqc-0.11.8 "
"&& "
"fastqc "
"{input} "
"--noextract "
"--outdir {params.output} "
"&& "
"conda deactivate "
rule multiqc:
input:
expand("work/fastqc/{sample}_fastqc.zip", sample=SAMPLES)
output:
html = "report/multiqc_report.html",
params:
output = "report/"
shell:
"conda activate multiqc-1.8 "
"&& "
"multiqc "
"--no-data-dir "
"--outdir {params.output} "
"{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