File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " rhocall"
7- version = " 0.5.2 "
7+ version = " 0.6 "
88description = " Call regions of homozygosity and make tentative UPD calls"
99readme = " README.md"
1010license = { text = " GPL-3.0-or-later" }
Original file line number Diff line number Diff line change 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" )
You can’t perform that action at this time.
0 commit comments