Skip to content

Commit dcf7886

Browse files
committed
vcf/header/record/value/map/format/definition/v4_5: Update local genotype likelihoods type
This was changed from an integer to a float in samtools/hts-specs#851.
1 parent b61e517 commit dcf7886

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

noodles-vcf/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Changed
6+
7+
* vcf/header/record/value/map/format/definition/v4_5: Update local genotype
8+
likelihoods (`LGL`) type.
9+
10+
This was changed from an integer to a float in [samtools/hts-specs#851].
11+
12+
[samtools/hts-specs#851]: https://github.com/samtools/hts-specs/pull/851
13+
314
## 0.84.0 - 2026-02-18
415

516
### Changed

noodles-vcf/src/header/record/value/map/format/definition/v4_5.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ pub(super) fn definition(key: &str) -> Option<(Number, Type, &'static str)> {
7777
)),
7878
key::LOCAL_GENOTYPE_LIKELIHOODS => Some((
7979
Number::LocalSamples,
80-
Type::Integer,
80+
Type::Float,
8181
"Local-allele representation of GL",
8282
)),
8383
key::LOCAL_GENOTYPE_POSTERIOR_PROBABILITIES => Some((

0 commit comments

Comments
 (0)