Skip to content

Commit 889235f

Browse files
committed
version bump to 0.1.4
1 parent 51107ab commit 889235f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.1.4] - 2024-04-26
4+
### Changed
5+
- Use `tqdm` for logging.
6+
- Reduce peak memory usage by parsing PAF files on the fly.
7+
38
## [0.1.3] - 2024-03-29
49
### Changed
510
- Change alignment filtering criteria: make `AS` cutoff more stringent, drop `MS`. See [7cc6dbd](https://github.com/xinehc/melon/commit/7cc6dbd866027cf5c1adaa5c69ed7919d8630607) for details.

src/melon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.1.3'
1+
__version__ = '0.1.4'
22

33
from .melon import GenomeProfiler

src/melon/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
import subprocess
55
import logging
66

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

1011
from tqdm import tqdm
1112
from tqdm.contrib.logging import logging_redirect_tqdm
1213

13-
## setup logger format
1414
logging.basicConfig(
1515
level='INFO',
1616
format='[%(asctime)s] %(levelname)s: %(message)s',

0 commit comments

Comments
 (0)