Skip to content

Commit

Permalink
Added motivational poem to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
haeussma committed Sep 20, 2024
1 parent 2c10d54 commit 50b05ef
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyenzyme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
from rich import print

from .model import * # noqa: F403
from .sbml import to_sbml, read_sbml # noqa: F401
from .tabular import to_pandas, read_csv, read_excel, from_dataframe # noqa: F401
from .poem import enzymeml___poem # noqa: F401
from .sbml import read_sbml, to_sbml # noqa: F401
from .tabular import from_dataframe, read_csv, read_excel, to_pandas # noqa: F401

__all__ = [
"read_enzymeml",
Expand Down
38 changes: 38 additions & 0 deletions pyenzyme/poem.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
enzymeml___poem = """
The Zen of EnzymeML
Data should be clear, not obscure.
Standards bring order, where chaos lures.
Metadata matters, more than you think.
Incomplete experiments push us to the brink.
Simplicity over manual toil.
Automation keeps the data loyal.
Fair data finds its way with ease,
Accessible formats put minds at peace.
Interoperable tools, well-defined,
Reusability should be the design.
Subtle is the flow from lab to code,
Experimental truth is always the node.
Errors are costly, so let’s be precise,
In structured fields, all data plays nice.
Manual steps breed disorder and strife,
Automate where you can, that’s the key to life.
When data is structured, and models align,
Kinetics and reactions will always shine.
EnzymeML is not a rule to fear,
But a guide that keeps your path clear.
Embrace the flow, adopt the way,
For seamless data, is here to stay.
"""

print(enzymeml___poem)

0 comments on commit 50b05ef

Please sign in to comment.