Skip to content

Commit

Permalink
version bump to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
xinehc committed Apr 26, 2024
1 parent 51107ab commit 889235f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.1.4] - 2024-04-26
### Changed
- Use `tqdm` for logging.
- Reduce peak memory usage by parsing PAF files on the fly.

## [0.1.3] - 2024-03-29
### Changed
- Change alignment filtering criteria: make `AS` cutoff more stringent, drop `MS`. See [7cc6dbd](https://github.com/xinehc/melon/commit/7cc6dbd866027cf5c1adaa5c69ed7919d8630607) for details.
Expand Down
2 changes: 1 addition & 1 deletion src/melon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.1.3'
__version__ = '0.1.4'

from .melon import GenomeProfiler
2 changes: 1 addition & 1 deletion src/melon/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
import subprocess
import logging

## setup logging format
if sys.stderr.isatty():
os.environ['TQDM_DISABLE'] = '1'

from tqdm import tqdm
from tqdm.contrib.logging import logging_redirect_tqdm

## setup logger format
logging.basicConfig(
level='INFO',
format='[%(asctime)s] %(levelname)s: %(message)s',
Expand Down

0 comments on commit 889235f

Please sign in to comment.