From 340e38754fdc6e1276dd45152b2f1ee4da4d8fd5 Mon Sep 17 00:00:00 2001 From: Mikhail Kot Date: Thu, 21 May 2026 17:50:16 +0100 Subject: [PATCH] Use Uint8 for GT field in statpopgen instead of UInt64 Signed-off-by: Mikhail Kot --- vortex-bench/src/statpopgen/schema.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vortex-bench/src/statpopgen/schema.rs b/vortex-bench/src/statpopgen/schema.rs index e19afaa09a1..ec00e5a138c 100644 --- a/vortex-bench/src/statpopgen/schema.rs +++ b/vortex-bench/src/statpopgen/schema.rs @@ -34,7 +34,8 @@ pub fn schema_from_vcf_header(header: &Header) -> SchemaRef { .into_iter() .chain(info_fields) .chain([ - Arc::new(Field::new("GT", list(UInt64), true)), + // GT is NULL, 0, 1, or 2 + Arc::new(Field::new("GT", list(UInt8), true)), Arc::new(Field::new("GQ", list(Int32), true)), Arc::new(Field::new("DP", list(Int32), true)), Arc::new(Field::new("AD", list(list(Int32)), true)),