Skip to content

Commit

Permalink
Hotfix 1.0.0rc3 (#137)
Browse files Browse the repository at this point in the history
* Fixed typo in header of shift stats file. Issue #136

* Version bump
  • Loading branch information
tleonardi authored May 1, 2020
1 parent ba1829f commit 9f8effe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nanocompore/SampCompDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def save_shift_stats(self, output_fn=None):


headers = ['c1_mean_intensity', 'c2_mean_intensity', 'c1_median_intensity', 'c2_median_intensity', 'c1_sd_intensity', 'c2_sd_intensity', 'c1_mean_dwell', 'c2_mean_dwell', 'c1_median_dwell', 'c2_median_dwell', 'c1_sd_dwell', 'c2_sd_dwell']
fp.write('\t'.join([ str(i) for i in ["red_if", "pos"]+headers ])+'\n')
fp.write('\t'.join([ str(i) for i in ["ref_id", "pos"]+headers ])+'\n')
for tx, refpos in self:
for pos, refpos_list in enumerate(refpos):
if "txComp" in refpos_list:
Expand Down
2 changes: 1 addition & 1 deletion nanocompore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

# Define self package variable
__version__ = "1.0.0rc3-1"
__version__ = "1.0.0rc3-2"
__description__ = 'Software package that identifies raw signal changes between two conditions from https://github.com/jts/nanopolish resquiggled dRNA-Seq data.'
#__all__ = ["SampComp", "SampCompDB", "SimReads", "Whitelist", "TxComp"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nanocompore"
version = "1.0.0rc3-1"
version = "1.0.0rc3-2"
description = "Software package that identifies raw signal changes between two conditions from https://github.com/jts/nanopolish resquiggled dRNA-Seq data."
authors = ["Tommaso Leonardi <[email protected]>", "Adrien Leger <[email protected]>"]
license = "GPL-3.0"
Expand Down

0 comments on commit 9f8effe

Please sign in to comment.