Skip to content

Commit 878aaca

Browse files
committed
v1.2.2: Updates to variant_caller parameter and plotting improvements
1 parent ae96ef7 commit 878aaca

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [1.2.2] - 2025-07-21
10+
11+
### Added
12+
- Integrated `pytest` to ensure correct handling of the `variant_caller` parameter.
13+
14+
### Changed
15+
- Update the standard names for the `variant_caller` parameter
16+
- Changed `sanger` to `caveman`
17+
- `TCGA` and `standardVC` have been merged into a more flexible `standard` option.
18+
- `standard` is now default and parses VAF from 8th and 10th columns of VCF files (`VAF=` or `AF=`).
19+
20+
### Fixed
21+
- Plotting Stability: Added error handling to skip samples that are invalid and proceed with valid ones.
22+
- Resolved a potential index out-of-bounds error in the `plot_hist` function.
23+
924
## [1.2.1] - 2025-04-02
1025

1126
### Changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def readme():
1717
# return(f.read())
1818

1919

20-
VERSION = "1.2.1"
20+
VERSION = "1.2.2"
2121

2222

2323
def write_version_py(filename="SigProfilerClusters/version.py"):
@@ -26,7 +26,7 @@ def write_version_py(filename="SigProfilerClusters/version.py"):
2626
# THIS FILE IS GENERATED FROM SIGPROFILECLUSTERS SETUP.PY
2727
short_version = '%(version)s'
2828
version = '%(version)s'
29-
Update = 'v1.2.1: Add centromere coordinates for mm39'
29+
Update = 'v1.2.2: Updates to variant_caller parameter and plotting improvements'
3030
3131
"""
3232
fh = open(filename, "w")

0 commit comments

Comments
 (0)