Skip to content

Commit b7b7c96

Browse files
authored
Merge pull request #25 from dnil/version_0.6
Bump version to 0.6
2 parents 37bc6eb + 251874a commit b7b7c96

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ChangeLog
22

3-
## [unreleased]
3+
## [0.6]
44
### Added
5-
- Add an option to rhocall annotate to select
5+
- Add an option to rhocall annotate to allow selecting sample for annotation among several in ROH/VCF
66
### Changed
77
- Refactor rhocall viz ratio calculation
88
### Fixed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ Options:
8888
CHR,POS,AZ,QUAL.
8989
--v14 / --no-v14 Bcftools v1.4 or newer roh file including RG
9090
calls.
91+
--select-sample TEXT Select sample to use for bcftools v1.4 or
92+
newer roh file including RG calls and
93+
multiple indidviduals.
9194
-b FILENAME BED file with AZ windows.
9295
-q, --quality_threshold FLOAT Minimum quality calls that are imported in
9396
region totals.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "rhocall"
7-
version = "0.5.2"
7+
version = "0.6"
88
description = "Call regions of homozygosity and make tentative UPD calls"
99
readme = "README.md"
1010
license = { text = "GPL-3.0-or-later" }

rhocall/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
__version__ = "0.5.1"
1+
# -*- coding: utf-8 -*-
2+
try:
3+
from importlib.metadata import version
4+
except ImportError: # Backport support for importlib metadata on Python 3.7
5+
from importlib_metadata import version
6+
7+
__version__ = version("rhocall")

0 commit comments

Comments
 (0)