Skip to content

Commit 7cc275a

Browse files
committed
mstemplate biomass
1 parent 6e437ac commit 7cc275a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

modelseedpy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
__author__ = "Christopher Henry"
1616
__email__ = "[email protected]"
17-
__version__ = "0.4.0"
17+
__version__ = "0.4.2"
1818

1919
logger = logging.getLogger(__name__)
2020

modelseedpy/core/mstemplate.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -523,16 +523,16 @@ def __init__(
523523
biomass_id: str,
524524
name: str,
525525
type: str,
526-
dna: float,
527-
rna: float,
528-
protein: float,
529-
lipid: float,
530-
cellwall: float,
531-
cofactor: float,
532-
pigment: float,
533-
carbohydrate: float,
534-
energy: float,
535-
other: float,
526+
dna: float = 0,
527+
rna: float = 0,
528+
protein: float = 0,
529+
lipid: float = 0,
530+
cellwall: float = 0,
531+
cofactor: float = 0,
532+
pigment: float = 0,
533+
carbohydrate: float = 0,
534+
energy: float = 0,
535+
other: float = 0,
536536
):
537537
"""
538538

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="ModelSEEDpy",
13-
version="0.4.0",
13+
version="0.4.2",
1414
description="Python package for building and analyzing models using ModelSEED",
1515
long_description_content_type="text/x-rst",
1616
long_description=readme,

0 commit comments

Comments
 (0)