We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008c1d9 commit 340e387Copy full SHA for 340e387
1 file changed
vortex-bench/src/statpopgen/schema.rs
@@ -34,7 +34,8 @@ pub fn schema_from_vcf_header(header: &Header) -> SchemaRef {
34
.into_iter()
35
.chain(info_fields)
36
.chain([
37
- Arc::new(Field::new("GT", list(UInt64), true)),
+ // GT is NULL, 0, 1, or 2
38
+ Arc::new(Field::new("GT", list(UInt8), true)),
39
Arc::new(Field::new("GQ", list(Int32), true)),
40
Arc::new(Field::new("DP", list(Int32), true)),
41
Arc::new(Field::new("AD", list(list(Int32)), true)),
0 commit comments