Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion vortex-bench/src/statpopgen/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand Down
Loading