Skip to content

Commit

Permalink
Merge pull request #10 from ronin-gw/v0.3.1
Browse files Browse the repository at this point in the history
V0.3.1
  • Loading branch information
ronin-gw authored Nov 2, 2019
2 parents ac1a41c + bb885e7 commit 70c32b6
Show file tree
Hide file tree
Showing 15 changed files with 719 additions and 318 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## v0.3.1 (2019-11-01)
**Implemented enhancements:**
- Support VSN calculation
- Save number of (mappable) reads as a file for replotting
- Improve minimum coefficient obtaining method

**Fixed bugs:**
- Avoid arctanh divergence

## v0.3.0 (2019-07-03)
- Drop python3.4 support
**Implemented enhancements:**
Expand Down
3 changes: 2 additions & 1 deletion PyMaSC/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import sys
from functools import wraps

VERSION = "0.3.0"
VERSION = "0.3.1"
WEBSITE_URL = "https://pymasc.sb.ecei.tohoku.ac.jp/"


def logging_version(logger):
Expand Down
2 changes: 1 addition & 1 deletion PyMaSC/handler/masc_noindex_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def run(self):

for read in self.align_file:
chrom = read.reference_name
if chrom is None:
if chrom is None or chrom not in self.references:
continue

if chrom != self._chr:
Expand Down
Loading

0 comments on commit 70c32b6

Please sign in to comment.