Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.2
current_version = 1.1.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.2
1.1.3
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 1.1.2
current_version = 1.1.3
commit=True
tag=True

[metadata]
name = LRphase
version = 1.1.2
version = 1.1.3

[options]
packages = LRphase
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main():

metadata = dict(
name = 'LRphase',
version = '1.1.2',
version = '1.1.3',
license = 'MIT',
description = 'Phasing individual long reads using known haplotype information.',
description_content_type = 'text/plain',
Expand Down
2 changes: 1 addition & 1 deletion src/LRphase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.1.2'
__version__ = '1.1.3'
try:
from ._LRphase import longest # noqa
except ImportError:
Expand Down
2 changes: 1 addition & 1 deletion src/LRphase/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import time
from LRphase.PhaseSet import powlaw_modified, _estimate_prior_probabilities

__version__ = "1.1.2"
__version__ = "1.1.3"

# TO-DO:
## The main phasing function should be a wrapper that loops over samples
Expand Down
2 changes: 1 addition & 1 deletion utils/fitErrorModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
log-likelihood ratio distribution, just somewhat less granular.
"""

__version__ = "1.1.2"
__version__ = "1.1.3"


def parse_histogram_file(log_file):
Expand Down