Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
IMP
IMP3
Commits
e7700094
Commit
e7700094
authored
Aug 31, 2021
by
Anna Buschart
Browse files
Delete table.smk
parent
bbfd7838
Pipeline
#46333
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
55 deletions
+0
-55
workflow/rules/Multi/Catalogue/table.smk
workflow/rules/Multi/Catalogue/table.smk
+0
-55
No files found.
workflow/rules/Multi/Catalogue/table.smk
deleted
100644 → 0
View file @
bbfd7838
# if done: kraken to table: taxonomy per gene
# if done: mapping to table: depth of coverage per gene in each sample - normalize by total reads (MG and MT); reads per sample?
# if mapping done: summarize mapping: % samples with any coverage (MG and MT)s
# rule cluster2tab:
# input:
# "Catalogue/catalogue_cluster.tsv"
# output:
# "Catalogue/catalogue_genesPerRep.tsv"
# threads: 1
# resources:
# runtime = "12:00:00",
# mem = MEMCORE
# params:
# sample = samples
# log: "logs/catalogue_cluster2tab.log"
# message: 'catalogue_cluster2tab: checking number of genes represented by each representative.'
# threads: 1
# script:
# SRCDIR + "/cluster2tab.py"
rule gff2tab:
input:
"Catalogue/catalogue.gff"
output:
"Catalogue/catalogue_anno.tsv"
threads: 1
resources:
runtime = "12:00:00",
mem = MEMCORE
params:
dbs = config['hmm_DBs'].split()
log: "logs/catalogue_gff2tab.log"
message: 'gff2tab: extracting gff for catalogue info.'
threads: 1
script:
SRCDIR + "/gff2tab.py"
rule catalogue_tab:
input:
getCatIn
output:
"Catalogue/catalogue.tsv"
resources:
runtime = "12:00:00",
mem = BIGMEMCORE
params:
types = TYPES
threads: 1
log: "logs/catalogue_tab.log"
conda: ENVDIR + "/IMP_multi.yaml"
message: "catalogue_tab: Merging results of catalogue."
script:
SRCDIR + "/multi_catalogue_merge.R"
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