Skip to content

Commit

Permalink
Merge pull request #6 from matthiaskoenig/feature-parser-update
Browse files Browse the repository at this point in the history
Feature parser update
  • Loading branch information
matthiaskoenig authored Jul 30, 2019
2 parents e3ba0b2 + d5553f0 commit 9c178a7
Show file tree
Hide file tree
Showing 7 changed files with 2,560 additions and 713 deletions.
2,337 changes: 2,285 additions & 52 deletions README.md

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions brendapy/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
"""
Definition of version string.
"""
__version__ = "0.1.2"

PROGRAM_VERSION = __version__
PROGRAM_NAME = 'brendapy'
__version__ = "0.2.0"
4 changes: 2 additions & 2 deletions brendapy/examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ def parse_proteins_for_ec():
"""
brenda = BrendaParser()
ec = "1.1.1.1"
proteins = brenda.parse_proteins(ec)
proteins = brenda.get_proteins(ec)

print(f"{len(proteins)} proteins for EC {ec} in BRENDA")
print(f"Protein identifier: {proteins.keys()}")
print("-"*80)
print("-" * 80)
for p in proteins.values():
if p.organism == "Homo sapiens":
print(p)
Expand Down
Loading

0 comments on commit 9c178a7

Please sign in to comment.