Skip to content

Commit f6724ff

Browse files
committed
Merge branch 'release' - publish for v1.2.1
2 parents e23f803 + f63e796 commit f6724ff

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v1.2.1 (2022-05-12)
2+
------------------
3+
- fix bug in `generate-database`
4+
- revise formatting of doc
5+
16
v1.2 (2022-05-10)
27
------------------
38

docs/tutorial/generating_models.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ organism of interest within the class Mollicutes.
4747
4848
4949
Basic use of the ``generate-database`` command
50-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
50+
----------------------------------------------
5151

5252
As noted above, the `generate-database` command uses an annotation file to
5353
query the KEGG database and download reaction data. You will need an
@@ -129,7 +129,7 @@ column in the table specified with `--annotations`
129129
130130
131131
Basic use of the ``generate-transporters`` command
132-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
132+
--------------------------------------------------
133133

134134
In addition to the database of metabolic reactions, another important
135135
component of metabolic models is the presence of transporters. These

psamm/generate_model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,8 +921,7 @@ def init_parser(cls, parser):
921921
def run(self):
922922
"""Entry point for the database generation script"""
923923
# check if required packages are installed
924-
if 'Bio.KEGG.Enzyme' not in sys.modules or \
925-
'Bio.KEGG.REST' not in sys.modules:
924+
if 'Bio.KEGG.REST' not in sys.modules:
926925
quit('No biopython package found. '
927926
'Please run <pip install biopython>''')
928927
if "libchebipy._chebi_entity" not in sys.modules:

setup.py

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

5252
setup(
5353
name='psamm',
54-
version='1.2',
54+
version='1.2.1',
5555
description='PSAMM metabolic modeling tools',
5656
maintainer='Jon Lund Steffensen',
5757
maintainer_email='jon_steffensen@uri.edu',

0 commit comments

Comments
 (0)