Skip to content

Commit

Permalink
Added Repr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MuteJester committed Jun 3, 2022
1 parent 16c0dda commit d88ff2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions PyNCBI/GSM.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ def __repr__(self):
str_fmt = str_fmt + key + \
f": {colored(self.characteristics[key], color='green', attrs=['bold'])}\n"

print(str_fmt)
return ""

def __str__(self):
str_fmt = f'GSM: {self.gsm_id} | GSE: {self.gse}\n'
for key in self.characteristics.index:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
setup(
name = 'PyNCBI',
packages = ['PyNCBI'],
version = '0.1.5.5',
version = '0.1.6.1',
license='MIT',
description = 'Simple API for Python Integration with NCBI',
long_description_content_type="text/markdown",
long_description=read_md('README.md'),
author = 'Thomas Konstantinovsky',
author_email = '[email protected]',
url = 'https://github.com/MuteJester/PyNCBI',
download_url = 'https://github.com/MuteJester/PyNCBI/archive/refs/tags/0.1.5.5.tar.gz',
download_url = 'https://github.com/MuteJester/PyNCBI/archive/refs/tags/0.1.6.1.tar.gz',
keywords = ['api','data database','analytics,biology','methylation','epigenetics','ncbi','epigenetic-data'], # Keywords that define your package best
install_requires=[
'methylprep',
Expand Down

0 comments on commit d88ff2a

Please sign in to comment.