Skip to content

Commit

Permalink
update to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alienzj committed Jun 7, 2020
1 parent 9e263b8 commit 245964d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion metapi/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3

__version__ = '0.7.10'
__version__ = '0.8.0'
__author__ = "Jie Zhu"
5 changes: 1 addition & 4 deletions metapi/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,14 @@ params:
batch_num: 500

classify:
threads: 8
kraken2:
do: True
database: /path/to/kraken2/database
threads: 8
use_mpa_style: False
report_zero_counts: True
gtdbtk:
do: True
threads: 8

dereplicate:
drep:
Expand All @@ -177,7 +176,6 @@ params:
threads: 8
metaphlan2:
do: False
threads: 8
bowtie2db: "/path/to/metaphlan_databases"
index: "latest"
bowtie2_presets: "very-sensitive"
Expand All @@ -203,7 +201,6 @@ params:
index_prefix: /path/to/bowtie2_index_prefix
humann2:
do: False
threads: 8
remove_temp_output: True
normalize_method: "relab"
regroup_method: "sum"
Expand Down
4 changes: 2 additions & 2 deletions metapi/rules/classify.smk
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if config["params"]["classify"]["kraken2"]["do"]:
if config["params"]["classify"]["kraken2"]["report_zero_counts"] \
else ""
threads:
config["params"]["classify"]["kraken2"]["threads"]
config["params"]["classify"]["threads"]
run:
shell(
'''
Expand Down Expand Up @@ -85,7 +85,7 @@ if config["params"]["classify"]["gtdbtk"]["do"]:
params:
bin_suffix = "fa"
threads:
config["params"]["classify"]["gtdbtk"]["threads"]
config["params"]["classify"]["threads"]
shell:
'''
gtdbtk classify_wf \
Expand Down
3 changes: 2 additions & 1 deletion metapi/rules/profiling.smk
Original file line number Diff line number Diff line change
Expand Up @@ -581,4 +581,5 @@ rule profiling_all:
rules.profiling_jgi_all.input,
rules.profiling_humann2_all.input,

rules.rmhost_all.input
rules.rmhost_all.input,
rules.qcreport_all.input

0 comments on commit 245964d

Please sign in to comment.