Skip to content

Commit 43a3411

Browse files
Merge pull request #10 from gavinmdouglas/2019.7
2019.7
2 parents 2c464fb + be31fb6 commit 43a3411

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

q2_picrust2/_full_pipeline.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,18 @@ def full_pipeline(table: biom.Table,
5050
no_pathways=False,
5151
regroup_map=default_regroup_map,
5252
no_regroup=False,
53-
metagenome_contrib=False,
5453
stratified=False,
5554
max_nsti=max_nsti,
5655
min_reads=1,
5756
min_samples=1,
5857
hsp_method=hsp_method,
5958
skip_nsti=False,
60-
no_gap_fill=False,
6159
skip_minpath=False,
60+
no_gap_fill=False,
6261
coverage=False,
6362
per_sequence_contrib=False,
63+
wide_table=False,
64+
skip_norm=False,
6465
remove_intermediate=False,
6566
verbose=True)
6667

q2_picrust2/citations.bib

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
@article{Langille2013NatureBioTech,
2-
title={Predictive functional profiling of microbial communities using 16S rRNA marker gene sequences},
3-
author={Langille and Zaneveld et al.},
4-
journal={Nature Biotechnology},
5-
volume={31},
6-
number={9},
7-
pages={815-823},
8-
year={2013},
9-
publisher={Nature Publishing Group},
10-
doi={10.1038/nbt.2676}
1+
@article{Douglas2019bioRxiv,
2+
title={PICRUSt2: An improved and extensible approach for metagenome inference},
3+
author={Douglas et al.},
4+
journal={bioRxiv},
5+
year={2019},
6+
doi={10.1101/672295}
117
}
128

q2_picrust2/plugin_setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313

1414
plugin = Plugin(
1515
name='picrust2',
16-
version="2019.4",
16+
version="2019.7",
1717
website='https://github.com/gavinmdouglas/q2-picrust2',
1818
package='q2_picrust2',
1919
description=('This QIIME 2 plugin wraps the default 16S PICRUSt2 pipeline to run '
2020
'metagenome inference based on marker gene data. Currently '
2121
'only unstratified output is supported.'),
2222
short_description='Predicts gene families and pathways from 16S sequences.',
23+
citations=[citations['Douglas2019bioRxiv']]
2324
)
2425

2526
plugin.methods.register_function(
@@ -49,14 +50,14 @@
4950
'be output.')},
5051

5152
output_descriptions={'ko_metagenome': 'Predicted metagenome for KEGG orthologs',
52-
'ec_metagenome': 'Predicted metagenome for E.C. numbers',
53+
'ec_metagenome': 'Predicted metagenome for EC numbers',
5354
'pathway_abundance': 'Predicted MetaCyc pathway abundances'},
5455

5556
name='Default 16S PICRUSt2 Pipeline',
5657

5758
description=("QIIME2 Plugin for default 16S PICRUSt2 pipeline"),
5859

59-
citations=[citations['Langille2013NatureBioTech']]
60+
citations=[citations['Douglas2019bioRxiv']]
6061
)
6162

6263

@@ -98,6 +99,6 @@
9899
"used with the output of SEPP (q2-fragment-insertion) as a " +
99100
"starting point."),
100101

101-
citations=[citations['Langille2013NatureBioTech']]
102+
citations=[citations['Douglas2019bioRxiv']]
102103
)
103104

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="q2-picrust2",
5-
version="2019.4",
5+
version="2019.7",
66
packages=find_packages(),
77
package_data={'q2_picrust2': ['citations.bib']},
88
author="Gavin Douglas",

0 commit comments

Comments
 (0)