Skip to content

Commit

Permalink
0.4.8 fix fastx bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanzhaozzzz committed Aug 19, 2023
1 parent b393554 commit 382ed15
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bioat"
version = "0.4.7"
version = "0.4.8"
description = "Bioinformatic toolkit with python (It's still under development!)"
license = "MIT"
authors = ["Herman Zhao <[email protected]>"]
Expand Down
1 change: 1 addition & 0 deletions src/bioat/fastxtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

class FastxTools:
def __init__(self):
self.fastx = None
pass

def mgi_parse_md5(self, file: str, log_level='WARNING'):
Expand Down
2 changes: 1 addition & 1 deletion src/bioat/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
project_toml: str = os.path.join(bioat.__path__[0], 'version.py')
sec = os.path.getmtime(project_toml)
__upgrade_date__ = datetime.date.fromtimestamp(sec)
__version__ = "0.4.7"
__version__ = "0.4.8"

__author__ = 'Hua-nan ZHAO @ Tsinghua University'
__email__ = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bioat.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import bioat

def test_version_info():
assert bioat.__version__ == "0.4.7"
assert bioat.__version__ == "0.4.8"
assert bioat.__author__ == 'Hua-nan ZHAO @ Tsinghua University'
assert bioat.__doc_format__ == "restructuredtext"

0 comments on commit 382ed15

Please sign in to comment.