Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Maintenance - Mise à jour mensuelle Lundi 6 Février entre 7h00 et 9h00
Open sidebar
Cedric Midoux
deepomics16S
Commits
d7c2d7c7
Commit
d7c2d7c7
authored
Jan 29, 2021
by
Cedric Midoux
Browse files
biom_to_tsv
parent
be5578e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
affiliation.smk
View file @
d7c2d7c7
...
...
@@ -75,7 +75,7 @@ rule stdBIOM:
biom = "work/FROGS/affiliation.biom"
output:
biom = "work/FROGS/abundance.biom",
tsv = "work/FROGS/
multihits
.tsv"
tsv = "work/FROGS/
blast_informations.std
.tsv"
shell:
"conda activate frogs-3.2.0 "
"&& "
...
...
@@ -86,6 +86,24 @@ rule stdBIOM:
"&& "
"conda deactivate"
rule biom_to_tsv:
input:
biom = "work/FROGS/affiliation.biom",
fasta = "work/dada/seqtab.fasta"
output:
tsv = "work/FROGS/abundance.tsv",
multi = "work/FROGS/multihits.tsv"
shell:
"conda activate frogs-3.2.0 "
"&& "
"biom_to_tsv.py "
"--input-biom {input.biom} "
"--input-fasta {input.fasta} "
"--output-tsv {output.tsv} "
"--output-multi-affi {output.multi}"
"&& "
"conda deactivate"
localrules: copy
rule copy:
input:
...
...
global.smk
View file @
d7c2d7c7
...
...
@@ -14,7 +14,8 @@ rule all:
"work/FROGS/affiliation.biom",
"report/clusters_metrics.html",
"report/affiliations_metrics.html",
"report/abundance.biom"
"report/abundance.biom",
"report/abundance.tsv"
include: "quality.smk"
include: "preprocess.smk"
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment