From 87b2c8e8d1f43d915b0b2c7d9ab5f17c61818297 Mon Sep 17 00:00:00 2001 From: roryk Date: Fri, 15 Feb 2019 14:25:57 -0500 Subject: [PATCH] Release 1.0.3 with python3 support. --- HISTORY.md | 7 +++++-- setup.py | 2 +- umis/umis.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 5a76512..f0418b1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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. diff --git a/setup.py b/setup.py index 84923ca..d7c944d 100644 --- a/setup.py +++ b/setup.py @@ -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'], diff --git a/umis/umis.py b/umis/umis.py index 5a3cf77..b6cdd58 100644 --- a/umis/umis.py +++ b/umis/umis.py @@ -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__)