Skip to content

Commit

Permalink
Release 1.0.3 with python3 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
roryk committed Feb 15, 2019
1 parent 986e6c6 commit 87b2c8e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## 1.0.3 (in progress)
## 1.0.4 (in progress)

## 1.0.2 (in progress)
## 1.0.3
- Python 3 support

## 1.0.2
- Add `demultiplex_cells` subcommand to break a transformed FASTQ file into separate FASTQ files by cell.
- Future proofing for changes to panda's `to_csv` function.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def read(fname):

setup(
name='umis',
version='1.0.2',
version='1.0.3',
description='Package for estimating UMI counts in Transcript Tag Counting data.',
packages=find_packages(),
install_requires=['click', 'pysam>=0.8.3', 'pandas', 'regex', 'scipy', 'toolz'],
Expand Down
2 changes: 1 addition & 1 deletion umis/umis.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import scipy.io, scipy.sparse
import click

VERSION = "1.0.2"
VERSION = "1.0.3"

logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 87b2c8e

Please sign in to comment.