Skip to content

Commit d4f9317

Browse files
Merge pull request #17 from gavinmdouglas/2023.2
2023.2
2 parents 2b23994 + a9877b4 commit d4f9317

File tree

6 files changed

+12
-23
lines changed

6 files changed

+12
-23
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# q2-picrust2
2-
QIIME2 plugin for PICRUSt2
2+
QIIME 2 plugin for PICRUSt2
33

44
For descriptions of how to install and run this plugin, see [here](https://github.com/picrust/picrust2/wiki/q2-picrust2-Tutorial/).

q2_picrust2/__init__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# ----------------------------------------------------------------------------
2-
# Copyright (c) 2016-2018, QIIME 2 development team.
3-
#
4-
# Distributed under the terms of the Modified BSD License.
5-
#
6-
# The full license is in the file LICENSE, distributed with this software.
7-
# ----------------------------------------------------------------------------
8-
91
from ._full_pipeline import full_pipeline
102
from ._custom_tree_pipeline import custom_tree_pipeline
113

124
__all__ = ['custom_tree_pipeline', 'full_pipeline']
13-

q2_picrust2/_custom_tree_pipeline.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def custom_tree_pipeline(table: biom.Table,
7878
print_stdout=highly_verbose,
7979
print_stderr=True)
8080

81-
8281
system_call_check(hsp_out_EC_cmd,
8382
print_command=True,
8483
print_stdout=highly_verbose,

q2_picrust2/_full_pipeline.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import biom
22
from os import path
3-
import sys
43
import pandas as pd
54
from tempfile import TemporaryDirectory
65
import picrust2.pipeline
@@ -36,7 +35,7 @@ def full_pipeline(table: biom.Table,
3635
seq_outfile = path.join(temp_dir, "seqs.fna")
3736

3837
with open(seq_outfile, "w") as outfile_fh:
39-
for seqname, sequence in seq.iteritems():
38+
for seqname, sequence in seq.items():
4039
print(">" + str(seqname) + "\n" + str(sequence),
4140
file=outfile_fh)
4241

q2_picrust2/plugin_setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
plugin = Plugin(
1515
name='picrust2',
16-
version="2021.11",
16+
version="2023.2",
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 '
@@ -67,10 +67,10 @@
6767
'skip_minpath': ('Do not run MinPath to identify which pathways are '
6868
'present as a first pass (on by default).'),
6969
'edge_exponent': ('Setting for maximum parisomony hidden-state '
70-
'prediction. Specifies weighting transition costs '
71-
'by the inverse length of edge lengths. If 0, then '
72-
'edge lengths do not influence predictions. Must be '
73-
'a non-negative real-valued number.'),
70+
'prediction. Specifies weighting transition costs '
71+
'by the inverse length of edge lengths. If 0, then '
72+
'edge lengths do not influence predictions. Must be '
73+
'a non-negative real-valued number.'),
7474
'no_gap_fill': ('Do not perform gap filling before predicting '
7575
'pathway abundances (gap filling is on otherwise by '
7676
'default).'),
@@ -133,10 +133,10 @@
133133
'skip_minpath': ('Do not run MinPath to identify which pathways are '
134134
'present as a first pass (on by default).'),
135135
'edge_exponent': ('Setting for maximum parisomony hidden-state '
136-
'prediction. Specifies weighting transition costs '
137-
'by the inverse length of edge lengths. If 0, then '
138-
'edge lengths do not influence predictions. Must be '
139-
'a non-negative real-valued number.'),
136+
'prediction. Specifies weighting transition costs '
137+
'by the inverse length of edge lengths. If 0, then '
138+
'edge lengths do not influence predictions. Must be '
139+
'a non-negative real-valued number.'),
140140
'no_gap_fill': ('Do not perform gap filling before predicting '
141141
'pathway abundances (gap filling is on otherwise by '
142142
'default).'),

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="2021.11",
5+
version="2023.2",
66
packages=find_packages(),
77
package_data={'q2_picrust2': ['citations.bib']},
88
author="Gavin Douglas",

0 commit comments

Comments
 (0)