grumpy 1.1.4

Genetic analysis in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
//! Module for handling VCF files
use pyo3::prelude::*;
use rayon::prelude::*;

use std::collections::{hash_map, HashMap};
use std::fs::File;
use std::io::BufReader;
use std::string::String;
use vcf::{VCFReader, VCFRecord};

use crate::common::{AltType, Evidence, VCFRow};

const NULL_FILTERS: [&str; 7] = [
    "MIN_QUAL",
    "MIN_MQ",
    "MIN_VDB",
    "MIN_HQ_DP",
    "STRAND_BIAS",
    "STRAND_MISMATCH",
    "SNP_SUPPORT_IN_VCF",
];

#[pyclass]
/// Dummy struct for wrapping VCFRecord
///
/// Required to make a valid pyclass to use as a function argument
#[derive(Clone)]
pub struct VCFRecordToParse {
    pub record: VCFRecord,
    pub min_dp: i32,
    pub required_fields: Vec<String>,
    pub vcf_row_index: usize,
}

#[pyclass]
#[derive(Clone, Debug)]
/// Struct to hold the information from a VCF file
pub struct VCFFile {
    #[pyo3(get, set)]
    /// Header of the VCF file. TODO: populate
    pub header: Vec<String>,

    #[pyo3(get, set)]
    /// Records of the VCF file
    pub records: Vec<VCFRow>,

    #[pyo3(get, set)]
    /// Calls from the VCF file, indexed by genome index
    pub calls: HashMap<i64, Vec<Evidence>>,

    #[pyo3(get, set)]
    /// Minor calls from the VCF file, indexed by genome index
    pub minor_calls: HashMap<i64, Vec<Evidence>>,
}

#[pymethods]
impl VCFFile {
    #[new]
    /// Create a new VCFFile object
    ///
    /// # Arguments
    /// - `filename`: String - Path to the VCF file
    /// - `ignore_filter`: bool - Whether to ignore the filter column
    /// - `min_dp`: i32 - Minimum depth to consider a call
    pub fn new(filename: String, ignore_filter: bool, min_dp: i32) -> Self {
        let file = File::open(filename).unwrap();
        let buf = BufReader::new(file);
        let mut reader = VCFReader::new(buf).unwrap();

        let mut record = reader.empty_record();
        let mut more_records = reader.next_record(&mut record);
        let mut reader_records = Vec::new();

        let required_fields = vec!["GT".to_string()];
        // Read data into memory
        while matches!(more_records, Ok(true)) {
            reader_records.push(record.clone());
            more_records = reader.next_record(&mut record);
        }

        // Parse records multithreaded
        let parsed = reader_records
            .par_iter()
            .enumerate()
            .map(|(idx, record)| {
                VCFFile::parse_record(VCFRecordToParse {
                    record: record.clone(),
                    min_dp,
                    required_fields: required_fields.clone(),
                    vcf_row_index: idx,
                })
            })
            .collect::<Vec<(VCFRow, Vec<Evidence>, Vec<Evidence>)>>();
        // For ease of access, we'll store the calls in a hashmap indexed on genome index
        let mut calls_map: HashMap<i64, Vec<Evidence>> = HashMap::new();
        let mut minor_calls_map: HashMap<i64, Vec<Evidence>> = HashMap::new();
        let mut records = Vec::new();

        // Fetch data
        for (record, record_calls, _record_minor_calls) in parsed.iter() {
            let passed = record.is_filter_pass;
            let mut record_minor_calls = _record_minor_calls.clone();
            records.push(record.clone());
            for call in record_calls.iter() {
                let mut added = false;
                if call.call_type == AltType::NULL || ignore_filter || passed {
                    added = true;
                }

                // Check if calls are already in the map,
                // if they are, warn the user about multiple calls at the same position and add to vector
                // if they aren't, add to the map
                if let hash_map::Entry::Vacant(e) = calls_map.entry(call.genome_index) {
                    if added {
                        e.insert(vec![call.clone()]);
                    }
                } else {
                    println!(
                        "Multiple calls at genome position {}! {:?}\n",
                        call.genome_index,
                        calls_map.get(&call.genome_index).unwrap()
                    );
                    if added {
                        calls_map
                            .get_mut(&call.genome_index)
                            .unwrap()
                            .push(call.clone());
                    }
                }

                if !added {
                    // Call skipped due to filter fail, so add as a minor call
                    let mut c = call.clone();
                    c.is_minor = true;
                    record_minor_calls.push(c);
                }
            }

            // Add minor calls if the filter is passed or ignored, or if fails lie within allowed filters
            let mut valid_filters = passed || ignore_filter;
            if !valid_filters {
                // Not passed filter and not ignored, so check if all filters are in allowed filters
                let allowed_filters = [
                    "MIN_FRS".to_string(),
                    "MIN_DP".to_string(),
                    "MIN_GCP".to_string(),
                    // ONT specific
                    "MIN_IDV".to_string(),
                    "MIN_IMF".to_string(),
                    "OVERLAP_BETTER_VARIANT".to_string(),
                ];
                // Auto-ignore if no filters are present (i.e filter = "." which is fail)
                let mut all_allowed = !record.filter.is_empty();
                for f in record.filter.iter() {
                    if !allowed_filters.contains(f) {
                        all_allowed = false;
                        break;
                    }
                }
                if all_allowed {
                    valid_filters = true;
                }
            }
            if valid_filters {
                for call in record_minor_calls.iter() {
                    if let hash_map::Entry::Vacant(e) = minor_calls_map.entry(call.genome_index) {
                        e.insert(vec![call.clone()]);
                    } else {
                        minor_calls_map
                            .get_mut(&call.genome_index)
                            .unwrap()
                            .push(call.clone());
                    }
                }
            }
        }

        // I hate implict returns, but appease clippy
        VCFFile {
            header: Vec::new(),
            records,
            calls: calls_map,
            minor_calls: minor_calls_map,
        }
    }

    #[staticmethod]
    fn parse_record(rec: VCFRecordToParse) -> (VCFRow, Vec<Evidence>, Vec<Evidence>) {
        let record = rec.record;
        let min_dp = rec.min_dp;
        let required_fields = rec.required_fields;
        let vcf_row_index = rec.vcf_row_index;

        // Parse fields of the record to pull out data
        // For whatever reason non of these fields are strings, so we need to convert them
        let mut alts = Vec::new(); // One string per alt
        for alt in record.alternative.iter() {
            alts.push(String::from_utf8_lossy(alt).to_string().to_lowercase());
        }
        let mut filters = Vec::new(); // String per filter
        for filter in record.filter.iter() {
            for f in String::from_utf8_lossy(filter).split(";") {
                filters.push(f.to_string());
            }
        }

        // Oddities of how this VCF library works...
        // Format is a vector of bytes, but we need to convert it to a vector of strings
        // Each of these strings corresponds to an item in the genotypes vector
        let mut format: Vec<String> = Vec::new();
        for f in record.format.iter() {
            format.push(String::from_utf8_lossy(f).to_string());
        }

        let mut idx = 0;
        let mut fields: HashMap<String, Vec<String>> = HashMap::new();
        for s in record.genotype.iter() {
            let mut item: Vec<Vec<String>> = Vec::new();
            for i in s.iter() {
                let mut value: Vec<String> = Vec::new();
                for j in i.iter() {
                    value.push(String::from_utf8_lossy(j).to_string());
                }
                item.push(value.clone());
                fields.insert(format[idx].clone(), value.clone());
                idx += 1;
            }
        }

        // Validate that this record has the required fields
        for field in required_fields.iter() {
            if !format.contains(&field.to_string()) {
                panic!("Required field {} not found in record", field);
            }
        }

        // Enforce that this record has a COV field
        if !fields.contains_key("COV") {
            let mut _cov_tag = "";
            let mut cov = Vec::new();
            if fields.contains_key("AD") {
                _cov_tag = "AD";
            } else if fields.contains_key("RO") && fields.contains_key("AO") {
                // Annoying edge case where no single COV field exists but can be constructed
                _cov_tag = "RO";
            } else {
                panic!("No COV tag found in record");
            }
            if _cov_tag != "RO" {
                for c in fields.get(_cov_tag).unwrap() {
                    cov.push(c.to_string());
                }
            } else {
                let ro = fields.get("RO").unwrap()[0].clone();
                let ao = fields.get("AO").unwrap()[0].clone();
                cov.push(ro.to_string());
                cov.push(ao.to_string());
            }

            fields.insert("COV".to_string(), cov);
        }

        // Check if this record has passed the filters
        let mut passed = false;
        if filters == vec!["PASS"] {
            passed = true;
        }

        let is_complex = record.reference.len() > 1000 && alts.len() > 1;

        let row = VCFRow {
            position: record.position as i64,
            reference: String::from_utf8_lossy(&record.reference)
                .to_string()
                .to_lowercase(),
            alternative: alts.clone(),
            filter: filters.clone(),
            fields: fields.clone(),
            is_filter_pass: passed,
            is_complex,
        };

        let (record_calls, record_minor_calls) =
            VCFFile::parse_record_for_calls(row.clone(), min_dp, vcf_row_index);

        // if record.position == 178452 {
        //     println!(
        //         "{:?}\t{:?}\t{:?}\t{:?}\t{:?}",
        //         record.position,
        //         String::from_utf8_lossy(&record.reference),
        //         alts,
        //         filters,
        //         fields
        //     );
        //     for call in record_calls.iter() {
        //         println!("{:?}\n", call);
        //     }
        //     println!("--");
        //     for call in record_minor_calls.iter() {
        //         println!("{:?}\n", call);
        //     }
        //     println!("\n\n");
        // }

        (row, record_calls, record_minor_calls)
    }

    #[staticmethod]
    /// Parse a record from a VCF file to get the calls
    ///
    /// # Arguments
    /// - `record`: VCFRow - Record to parse
    /// - `min_dp`: i32 - Minimum depth to consider a call
    ///
    /// # Returns
    /// Tuple of:
    /// - `calls`: Vec of Evidence - Calls from the record
    /// - `minor_calls`: Vec of Evidence - Minor calls from the record
    pub fn parse_record_for_calls(
        record: VCFRow,
        min_dp: i32,
        vcf_row_index: usize,
    ) -> (Vec<Evidence>, Vec<Evidence>) {
        let mut calls: Vec<Evidence> = Vec::new();
        let mut minor_calls: Vec<Evidence> = Vec::new();

        // Dealing with the actual call here; should spit out possible minor calls afterwards

        // Convert ugly genotype into a list of strings for each allele
        let genotype = &(record.fields.get("GT").unwrap())[0]
            .split("/")
            .collect::<Vec<&str>>();
        let mut cov = Vec::new();
        for c in record.fields.get("COV").unwrap() {
            cov.push(c.parse::<i32>().unwrap());
        }

        let mut dp = 0;
        // As DP isn't always reliable, default to the sum of the COV field
        cov.iter().for_each(|x| dp += x);

        let ref_allele = record.reference.clone().to_lowercase();
        let mut alt_allele = "".to_string();

        let mut call_type = AltType::NULL;

        // Check the filters to see if we need to override the parsing to a null call
        for filter in record.filter.iter() {
            // Doesn't matter what else is happening in this record if the filter
            // is a filter we want to null
            if NULL_FILTERS.contains(&filter.as_str()) {
                calls.push(Evidence {
                    cov: Some(0),
                    frs: Some(ordered_float::OrderedFloat(0.0)),
                    genotype: genotype.join("/"),
                    call_type: AltType::NULL,
                    vcf_row: vcf_row_index,
                    reference: ref_allele.chars().nth(0).unwrap().to_string(),
                    alt: "x".to_string(),
                    genome_index: record.position,
                    is_minor: false,
                    vcf_idx: None,
                });
                return (calls, minor_calls);
            }
        }

        // println!(
        //     "{:?}\t{:?}\t{:?}\t{:?}\t{:?}",
        //     record.position, record.reference, record.alternative, record.filter, record.fields
        // );
        let first = genotype[0];
        // Adjust for 1-indexed VCF
        let mut alt_idx = 0;
        if first != "." {
            alt_idx = first.parse::<i32>().unwrap() - 1;
        }
        if cov.len() == 1 {
            // Just 1 item in the call so santiy check if it's a null call
            let mut vcf_idx = None;
            if genotype == &vec!["0", "0"] && cov[0] >= min_dp {
                // Ref call
                call_type = AltType::REF;
                alt_allele = ref_allele.clone();
                vcf_idx = Some(0);
            } else if genotype[0] != genotype[1] && cov[0] >= min_dp {
                // Het call
                call_type = AltType::HET;
                alt_allele = "z".to_string();
            } else {
                // Null call
                call_type = AltType::NULL;
                alt_allele = "x".to_string();
            }
            calls.push(Evidence {
                cov: Some(cov[0_usize]),
                frs: Some(ordered_float::OrderedFloat(1.0)),
                genotype: genotype.join("/"),
                call_type,
                vcf_row: vcf_row_index,
                reference: ref_allele.chars().nth(0).unwrap().to_string(),
                alt: alt_allele.clone(),
                genome_index: record.position,
                is_minor: false,
                vcf_idx,
            });
            return (calls, minor_calls);
        }

        for gt in genotype.iter().skip(1) {
            if *gt != first {
                call_type = AltType::HET;
                alt_allele = "z".to_string();
                break;
            }
        }
        if call_type != AltType::HET {
            if first == "0" {
                call_type = AltType::REF;
                alt_allele = ref_allele.clone();
            } else {
                // Placeholder to denote we have an actual call at this point
                // Could actually be an indel instead but that can't be inferred from just the genotype
                call_type = AltType::SNP;
            }
        }
        if *genotype == vec![".", "."] {
            call_type = AltType::NULL;
        }
        if call_type == AltType::NULL {
            alt_allele = "x".to_string();
        }

        if call_type == AltType::SNP {
            // Parse the corresponding alternate allele to get the call(s)
            alt_allele = record.alternative[alt_idx as usize].clone().to_lowercase();
            let call = VCFFile::simplify_call(ref_allele.clone(), alt_allele.clone());
            let call_cov = cov[(alt_idx + 1) as usize]; // COV should be [ref, alt1, alt2..]
            for (offset, __alt_type, __base) in call {
                let mut _alt_type = __alt_type;
                let mut _base = __base;
                if call_cov < min_dp {
                    // Override calls with null if the coverage is too low
                    _alt_type = AltType::NULL;
                    _base = "x".to_string();
                }
                let mut reference = "".to_string();
                if offset >= 0 {
                    reference = ref_allele.chars().nth(offset as usize).unwrap().to_string();
                }
                calls.push(Evidence {
                    cov: Some(call_cov),
                    frs: Some(ordered_float::OrderedFloat(call_cov as f32 / dp as f32)),
                    genotype: genotype.join("/"),
                    call_type: _alt_type,
                    vcf_row: vcf_row_index,
                    reference,
                    alt: _base,
                    genome_index: record.position + offset,
                    is_minor: false,
                    vcf_idx: Some((alt_idx + 1) as i64),
                });
            }
        } else {
            let mut call_cov = None;
            let mut frs = None;
            let mut vcf_idx = None;
            if call_type != AltType::HET {
                if genotype == &vec![".", "."] {
                    // Explicit null GT can't point to a coverage so null
                    call_type = AltType::NULL;
                    alt_allele = "x".to_string();
                } else {
                    call_cov = Some(cov[(alt_idx + 1) as usize]); // COV should be [ref, alt1, alt2..]
                    if call_cov.unwrap() < min_dp {
                        // Override calls with null if the coverage is too low
                        call_type = AltType::NULL;
                        alt_allele = "x".to_string();
                    }
                    frs = Some(ordered_float::OrderedFloat(
                        call_cov.unwrap() as f32 / dp as f32,
                    ));
                    vcf_idx = Some((alt_idx + 1) as i64);
                }
            }
            for (offset, r) in ref_allele.chars().enumerate() {
                calls.push(Evidence {
                    cov: call_cov,
                    frs,
                    genotype: genotype.join("/"),
                    call_type: call_type.clone(),
                    vcf_row: vcf_row_index,
                    reference: r.to_string(),
                    alt: alt_allele.clone(),
                    genome_index: record.position + offset as i64,
                    is_minor: false,
                    vcf_idx,
                });
            }
        }

        if call_type == AltType::NULL {
            // Don't check for minor calls if the call is null
            return (calls, minor_calls);
        }

        if call_type == AltType::HET {
            // HET calls need to make sure we aren't skipping the first alt
            alt_idx = -1;
        }

        // Now we've got the main call, we need to figure out the minor calls
        // So check all possible values of COV for threshold to be considered a minor call
        let mut idx = 0;
        for coverage in cov.iter() {
            if idx == (alt_idx + 1) as usize || idx == 0 {
                // Skip ref and the alt we've already called
                idx += 1;
                continue;
            }
            if *coverage >= min_dp {
                alt_allele = record.alternative[idx - 1].clone().to_lowercase();
                let call = VCFFile::simplify_call(ref_allele.clone(), alt_allele.clone());
                let call_cov = *coverage;
                for (offset, alt_type, base) in call {
                    let mut reference = "".to_string();
                    if offset >= 0 {
                        reference = ref_allele.chars().nth(offset as usize).unwrap().to_string();
                    }
                    minor_calls.push(Evidence {
                        cov: Some(call_cov),
                        frs: Some(ordered_float::OrderedFloat(call_cov as f32 / dp as f32)),
                        genotype: genotype.join("/"), // This is a minor call so the row's genotype is the same
                        call_type: alt_type,
                        vcf_row: vcf_row_index,
                        reference,
                        alt: base,
                        genome_index: record.position + offset,
                        is_minor: true,
                        vcf_idx: Some(idx as i64),
                    });
                }
            }
            idx += 1;
        }

        // I hate implict returns, but appease clippy
        (calls, minor_calls)
    }

    #[staticmethod]
    /// Simplify a call into a list of SNPs, INSs and DELs
    ///
    /// Some rows have long ref/alt pairs which need to be decomposed into constituent calls
    ///
    /// # Arguments
    /// - `reference`: String - Reference sequence
    /// - `alternate`: String - Alternate sequence
    ///
    /// # Returns
    /// `Vec of (usize, AltType, String)` - Vec where each element is a 3-tuple of:
    ///    - `usize`: Offset of the call from row's genome index
    ///    - `AltType`: Type of call
    ///    - `String`: Base(s) of the call. If SNP/HET/NULL this will be a single base. If INS/DEL this will be the sequence inserted/deleted
    pub fn simplify_call(reference: String, alternate: String) -> Vec<(i64, AltType, String)> {
        // Note that the offset of a call can be negative in annoying edge cases
        // e.g insertion of "gg" --> "cagg" is a -1 offset as "ca" is inserted before the reference
        let mut calls: Vec<(i64, AltType, String)> = Vec::new();
        if reference.len() == alternate.len() {
            // Simple set of SNPs
            for i in 0..reference.len() {
                if reference.chars().nth(i).unwrap() != alternate.chars().nth(i).unwrap() {
                    calls.push((
                        i as i64,
                        AltType::SNP,
                        alternate.chars().nth(i).unwrap().to_string(),
                    ));
                }
            }
            return calls;
        }

        /*
        The process for finding the positions for indels are almost identical
        as the process for finding a del can be interpreted as finding an ins with ref
            and alt reversed.
        The approach here is to use a sliding window to find the position of the indel
            where the number of SNPs is lowest.
        Assumes that there is only a single indel between the ref and the alt - there
            may be cases where this does not work these will just produce large amounts
            of SNPs... Could be adapted to check for multi-indel but this will scale
            exponentially the number of versions checked.
         */
        let mut _x: String = "".to_string();
        let mut _y: String = "".to_string();
        let length = (reference.len() as i64 - alternate.len() as i64).abs();
        let mut _indel_type = AltType::NULL;
        // Figure out which way around to approach this
        if reference.len() > alternate.len() {
            _y = reference.clone();
            _x = alternate.clone();
            _indel_type = AltType::DEL;
        } else {
            _y = alternate.clone();
            _x = reference.clone();
            _indel_type = AltType::INS;
        }

        let padding = "N".repeat(length as usize);
        let mut current = "".to_string();
        let mut current_dist = i64::MAX;
        let mut indel_start: i64 = 0;
        for i in 0.._x.len() + 1 {
            let x1 = _x[0..i].to_string() + &padding + &_x[i.._x.len()];
            // println!("{:?}\t{:?}\t{:?}\t{:?}\t{:?}", reference, alternate, x, y, x1);
            let dist = snp_dist(&x1, &_y);
            if dist <= current_dist {
                current = x1.clone();
                current_dist = dist;
                indel_start = i as i64;
            }
        }

        if _indel_type == AltType::INS {
            // Ins after, del at, so adjust
            indel_start -= 1;
        }

        let mut indel_str = "".to_string();
        for i in 0..current.len() {
            if current.chars().nth(i).unwrap() == 'N' {
                indel_str += &_y.chars().nth(i).unwrap().to_string();
            }
        }

        calls.push((indel_start, _indel_type.clone(), indel_str));

        if _indel_type == AltType::INS {
            // Return to vector index now the call has been constructed
            indel_start += 1;
        }
        let mut indel_left = length;
        let mut offset = 0;
        for i in 0.._y.len() {
            if i as i64 == indel_start {
                // Pad where the indel is to ensure we get all calls
                if indel_left > 0 {
                    indel_left -= 1;
                    indel_start += 1;
                    offset += 1;
                }
                continue;
            }
            let r = _y.chars().nth(i).unwrap();
            let a = _x.chars().nth(i - offset).unwrap();
            if r != 'N' && a != 'N' && r != a {
                if _indel_type == AltType::DEL {
                    if indel_left > 0 {
                        // We have some deletion ahead of this positon, so it doesn't need to be adjusted
                        calls.push(((i - offset) as i64, AltType::SNP, a.to_string()));
                    } else {
                        // We've passed the deletion, so adjust the offset to account for the deletion
                        calls.push((
                            (i - offset + length as usize) as i64,
                            AltType::SNP,
                            a.to_string(),
                        ));
                    }
                } else {
                    calls.push(((i - offset) as i64, AltType::SNP, r.to_string()));
                }
            }
        }

        // I hate implict returns, but appease clippy
        calls
    }
}

/// Calculate the distance between two strings ignoring N characters
///
/// # Arguments
/// - `reference`: &str - Reference sequence
/// - `alternate`: &str - Alternate sequence
///
/// # Returns
/// SNP distance between the two strings
fn snp_dist(reference: &str, alternate: &str) -> i64 {
    if reference.len() != alternate.len() {
        panic!("Reference and alternate strings are not the same length!");
    }
    let mut dist = 0;
    for i in 0..reference.len() {
        let r = reference.chars().nth(i).unwrap();
        let a = alternate.chars().nth(i).unwrap();
        if r != 'N' && a != 'N' && r != a {
            dist += 1;
        }
    }

    // I hate implict returns, but appease clippy
    dist
}

#[cfg(test)]
mod tests {
    use super::*;

    macro_rules! assert_panics {
        ($expression:expr) => {
            let result = std::panic::catch_unwind(|| $expression);
            assert!(result.is_err());
        };
    }

    #[test]
    fn test_snp_dist() {
        // Some trivial cases
        assert_eq!(snp_dist("ACGT", "ACGT"), 0);
        assert_eq!(snp_dist("AAAAA", "AAAAA"), 0);
        assert_eq!(snp_dist("ACGTACGT", "ACGTACGT"), 0);
        assert_eq!(snp_dist("ACGT", "AAGT"), 1);
        assert_eq!(snp_dist("ACGT", "AAAT"), 2);
        assert_eq!(snp_dist("ACGT", "AAAA"), 3);
        assert_eq!(snp_dist("ACGT", "NNNN"), 0);
        assert_eq!(snp_dist("ACGT", "NAGT"), 1);

        // Should panic
        assert_panics!(snp_dist("ACGT", "ACG"));
        assert_panics!(snp_dist("", "ACGT"));
        assert_panics!(snp_dist("ACGT", ""));
    }

    #[test]
    fn test_simplify_call() {
        // Some trivial cases
        assert_eq!(
            VCFFile::simplify_call("ACGT".to_string(), "ACGT".to_string()),
            vec![]
        );
        assert_eq!(
            VCFFile::simplify_call("AAAAA".to_string(), "AAAAA".to_string()),
            vec![]
        );
        assert_eq!(
            VCFFile::simplify_call("ACGTACGT".to_string(), "ACGTACGT".to_string()),
            vec![]
        );
        assert_eq!(
            VCFFile::simplify_call("ACGT".to_string(), "AAGT".to_string()),
            vec![(1, AltType::SNP, "A".to_string())]
        );
        assert_eq!(
            VCFFile::simplify_call("ACGT".to_string(), "AAAT".to_string()),
            vec![
                (1, AltType::SNP, "A".to_string()),
                (2, AltType::SNP, "A".to_string()),
            ]
        );
        assert_eq!(
            VCFFile::simplify_call("ACGT".to_string(), "AAAA".to_string()),
            vec![
                (1, AltType::SNP, "A".to_string()),
                (2, AltType::SNP, "A".to_string()),
                (3, AltType::SNP, "A".to_string()),
            ]
        );
        // Some more complex cases
        assert_eq!(
            VCFFile::simplify_call("ACGT".to_string(), "ACG".to_string()),
            vec![(3, AltType::DEL, "T".to_string())]
        );
        assert_eq!(
            VCFFile::simplify_call("ACG".to_string(), "ACGT".to_string()),
            vec![(2, AltType::INS, "T".to_string())]
        );
        assert_eq!(
            VCFFile::simplify_call("ACGT".to_string(), "AGT".to_string()),
            vec![(1, AltType::DEL, "C".to_string()),]
        );

        // Somewhat pathological cases
        assert_eq!(
            VCFFile::simplify_call("AAAAA".to_string(), "CCC".to_string()),
            vec![
                (3, AltType::DEL, "AA".to_string()),
                (0, AltType::SNP, "C".to_string()),
                (1, AltType::SNP, "C".to_string()),
                (2, AltType::SNP, "C".to_string()),
            ]
        );

        assert_eq!(
            VCFFile::simplify_call("CCC".to_string(), "AAAAA".to_string()),
            vec![
                (2, AltType::INS, "AA".to_string()),
                (0, AltType::SNP, "A".to_string()),
                (1, AltType::SNP, "A".to_string()),
                (2, AltType::SNP, "A".to_string()),
            ]
        );

        assert_eq!(
            VCFFile::simplify_call("ACGT".to_string(), "ACGAGT".to_string()),
            vec![(2, AltType::INS, "AG".to_string()),]
        );

        assert_eq!(
            VCFFile::simplify_call(
                "AGTGCGCCTCCCGCGAGCAGACACAGAATCGCACTGCGCCGGCCCGGCGCGTGCGATTCTGTGTCTGCTT"
                    .to_string(),
                "AGCTC".to_string()
            ),
            vec![
                (
                    2,
                    AltType::DEL,
                    "TGCGCCTCCCGCGAGCAGACACAGAATCGCACTGCGCCGGCCCGGCGCGTGCGATTCTGTGTCTG".to_string()
                ),
                (69, AltType::SNP, "C".to_string()),
            ]
        );
    }

    #[test]
    fn test_parse_record_for_calls() {
        // Note the use of blocks to allow collapsing in vscode.
        // Not necessary but makes it easier to read as this is a long test

        // There's an almost infinite number of edge cases here, so we'll just test a few

        // Ref call
        {
            let record = VCFRow {
                position: 1,
                reference: "A".to_string(),
                alternative: vec!["T".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["0/0".to_string()]),
                    ("COV".to_string(), vec!["1".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 1, 0);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 1);
            assert_eq!(calls[0].reference, "a".to_string());
            assert_eq!(calls[0].alt, "a".to_string());
            assert_eq!(calls[0].call_type, AltType::REF);
            assert_eq!(calls[0].cov, Some(1));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(1.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, Some(0));
            assert_eq!(calls[0].vcf_row, 0);
        }

        // Alt call
        {
            let record = VCFRow {
                position: 1,
                reference: "A".to_string(),
                alternative: vec!["T".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "2".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 1, 0);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 1);
            assert_eq!(calls[0].reference, "a".to_string());
            assert_eq!(calls[0].alt, "t".to_string());
            assert_eq!(calls[0].call_type, AltType::SNP);
            assert_eq!(calls[0].cov, Some(2));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(2.0 / 3.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, Some(1));
            assert_eq!(calls[0].vcf_row, 0);
        }

        // Het call (including minor call)
        {
            let record = VCFRow {
                position: 1,
                reference: "A".to_string(),
                alternative: vec!["T".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["0/1".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "3".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 2, 0);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 1);

            assert_eq!(calls[0].genome_index, 1);
            assert_eq!(calls[0].reference, "a".to_string());
            assert_eq!(calls[0].alt, "z".to_string());
            assert_eq!(calls[0].call_type, AltType::HET);
            assert_eq!(calls[0].cov, None);
            assert_eq!(calls[0].frs, None);
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, None);
            assert_eq!(calls[0].vcf_row, 0);

            assert_eq!(minor_calls[0].genome_index, 1);
            assert_eq!(minor_calls[0].reference, "a".to_string());
            assert_eq!(minor_calls[0].alt, "t".to_string());
            assert_eq!(minor_calls[0].call_type, AltType::SNP);
            assert_eq!(minor_calls[0].cov, Some(3));
            assert_eq!(minor_calls[0].frs, Some(ordered_float::OrderedFloat(0.75)));
            assert!(minor_calls[0].is_minor);
            assert_eq!(minor_calls[0].vcf_idx, Some(1));
            assert_eq!(minor_calls[0].vcf_row, 0);
        }

        // Null call (in a few forms)
        // Null call due to low coverage
        {
            let record = VCFRow {
                position: 1,
                reference: "A".to_string(),
                alternative: vec!["T".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("COV".to_string(), vec!["1".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 2, 0);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 1);
            assert_eq!(calls[0].reference, "a".to_string());
            assert_eq!(calls[0].alt, "x".to_string());
            assert_eq!(calls[0].call_type, AltType::NULL);
            assert_eq!(calls[0].cov, Some(1));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(1.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, None);
            assert_eq!(calls[0].vcf_row, 0);
        }

        // Null call due calling null
        {
            let record = VCFRow {
                position: 1,
                reference: "A".to_string(),
                alternative: vec!["T".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["./.".to_string()]),
                    ("COV".to_string(), vec!["1".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 1, 0);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 1);
            assert_eq!(calls[0].reference, "a".to_string());
            assert_eq!(calls[0].alt, "x".to_string());
            assert_eq!(calls[0].call_type, AltType::NULL);
            assert_eq!(calls[0].cov, Some(1));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(1.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, None);
            assert_eq!(calls[0].vcf_row, 0);
        }

        // Null call due to low coverage and filter fail (should still make it)
        {
            let record = VCFRow {
                position: 1,
                reference: "A".to_string(),
                alternative: vec!["T".to_string()],
                filter: vec!["MIN_DP".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("COV".to_string(), vec!["1".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 2, 0);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 1);
            assert_eq!(calls[0].reference, "a".to_string());
            assert_eq!(calls[0].alt, "x".to_string());
            assert_eq!(calls[0].call_type, AltType::NULL);
            assert_eq!(calls[0].cov, Some(1));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(1.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, None);
            assert_eq!(calls[0].vcf_row, 0);
        }

        // Ins call
        {
            let record = VCFRow {
                position: 1,
                reference: "A".to_string(),
                alternative: vec!["AT".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "5".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 3, 123);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 1);
            assert_eq!(calls[0].reference, "a".to_string());
            assert_eq!(calls[0].alt, "t".to_string());
            assert_eq!(calls[0].call_type, AltType::INS);
            assert_eq!(calls[0].cov, Some(5));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(5.0 / 6.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, Some(1));
            assert_eq!(calls[0].vcf_row, 123);
        }

        // Del call
        {
            let record = VCFRow {
                position: 1,
                reference: "AT".to_string(),
                alternative: vec!["A".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "5".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 3, 0);
            assert_eq!(calls.len(), 1);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 2);
            assert_eq!(calls[0].reference, "t".to_string());
            assert_eq!(calls[0].alt, "t".to_string());
            assert_eq!(calls[0].call_type, AltType::DEL);
            assert_eq!(calls[0].cov, Some(5));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(5.0 / 6.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, Some(1));
            assert_eq!(calls[0].vcf_row, 0);
        }

        // Del call with SNP
        {
            let record = VCFRow {
                position: 1,
                reference: "AT".to_string(),
                alternative: vec!["C".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "5".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 3, 0);
            assert_eq!(calls.len(), 2);
            assert_eq!(minor_calls.len(), 0);
            assert_eq!(calls[0].genome_index, 2);
            assert_eq!(calls[0].reference, "t".to_string());
            assert_eq!(calls[0].alt, "t".to_string());
            assert_eq!(calls[0].call_type, AltType::DEL);
            assert_eq!(calls[0].cov, Some(5));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(5.0 / 6.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, Some(1));

            assert_eq!(calls[1].genome_index, 1);
            assert_eq!(calls[1].reference, "a".to_string());
            assert_eq!(calls[1].alt, "c".to_string());
            assert_eq!(calls[1].call_type, AltType::SNP);
            assert_eq!(calls[1].cov, Some(5));
            assert_eq!(calls[1].frs, Some(ordered_float::OrderedFloat(5.0 / 6.0)));
            assert!(!calls[1].is_minor);
            assert_eq!(calls[1].vcf_idx, Some(1));
            assert_eq!(calls[0].vcf_row, 0);
        }

        // More complex mix of SNP and indel minors
        {
            let record = VCFRow {
                position: 1,
                reference: "AT".to_string(),
                alternative: vec!["C".to_string(), "GCC".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    (
                        "COV".to_string(),
                        vec!["1".to_string(), "57".to_string(), "12".to_string()],
                    ),
                ]),
                is_filter_pass: true,
                is_complex: false,
            };
            let (calls, minor_calls) = VCFFile::parse_record_for_calls(record, 3, 0);
            assert_eq!(calls.len(), 2);
            assert_eq!(minor_calls.len(), 3);

            assert_eq!(calls[0].genome_index, 2);
            assert_eq!(calls[0].reference, "t".to_string());
            assert_eq!(calls[0].alt, "t".to_string());
            assert_eq!(calls[0].call_type, AltType::DEL);
            assert_eq!(calls[0].cov, Some(57));
            assert_eq!(calls[0].frs, Some(ordered_float::OrderedFloat(57.0 / 70.0)));
            assert!(!calls[0].is_minor);
            assert_eq!(calls[0].vcf_idx, Some(1));
            assert_eq!(calls[0].vcf_row, 0);

            assert_eq!(calls[1].genome_index, 1);
            assert_eq!(calls[1].reference, "a".to_string());
            assert_eq!(calls[1].alt, "c".to_string());
            assert_eq!(calls[1].call_type, AltType::SNP);
            assert_eq!(calls[1].cov, Some(57));
            assert_eq!(calls[1].frs, Some(ordered_float::OrderedFloat(57.0 / 70.0)));
            assert!(!calls[1].is_minor);
            assert_eq!(calls[1].vcf_idx, Some(1));
            assert_eq!(calls[1].vcf_row, 0);

            assert_eq!(minor_calls[0].genome_index, 2);
            assert_eq!(minor_calls[0].reference, "t".to_string());
            assert_eq!(minor_calls[0].alt, "c".to_string());
            assert_eq!(minor_calls[0].call_type, AltType::INS);
            assert_eq!(minor_calls[0].cov, Some(12));
            assert_eq!(
                minor_calls[0].frs,
                Some(ordered_float::OrderedFloat(12.0 / 70.0))
            );
            assert!(minor_calls[0].is_minor);
            assert_eq!(minor_calls[0].vcf_idx, Some(2));
            assert_eq!(minor_calls[0].vcf_row, 0);

            assert_eq!(minor_calls[1].genome_index, 1);
            assert_eq!(minor_calls[1].reference, "a".to_string());
            assert_eq!(minor_calls[1].alt, "g".to_string());
            assert_eq!(minor_calls[1].call_type, AltType::SNP);
            assert_eq!(minor_calls[1].cov, Some(12));
            assert_eq!(
                minor_calls[1].frs,
                Some(ordered_float::OrderedFloat(12.0 / 70.0))
            );
            assert!(minor_calls[1].is_minor);
            assert_eq!(minor_calls[1].vcf_idx, Some(2));
            assert_eq!(minor_calls[1].vcf_row, 0);

            assert_eq!(minor_calls[2].genome_index, 2);
            assert_eq!(minor_calls[2].reference, "t".to_string());
            assert_eq!(minor_calls[2].alt, "c".to_string());
            assert_eq!(minor_calls[2].call_type, AltType::SNP);
            assert_eq!(minor_calls[2].cov, Some(12));
            assert_eq!(
                minor_calls[2].frs,
                Some(ordered_float::OrderedFloat(12.0 / 70.0))
            );
            assert!(minor_calls[2].is_minor);
            assert_eq!(minor_calls[2].vcf_idx, Some(2));
            assert_eq!(minor_calls[2].vcf_row, 0);
        }
    }

    #[test]
    fn test_instanciate_vcffile() {
        let vcf = VCFFile::new("test/dummy.vcf".to_string(), false, 3);
        let expected_records = vec![
            VCFRow {
                position: 4687,
                reference: "t".to_string(),
                alternative: vec!["c".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            },
            VCFRow {
                position: 4725,
                reference: "t".to_string(),
                alternative: vec!["c".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            },
            VCFRow {
                position: 4730,
                reference: "c".to_string(),
                alternative: vec!["t".to_string(), "g".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/2".to_string()]),
                    ("DP".to_string(), vec!["200".to_string()]),
                    (
                        "COV".to_string(),
                        vec!["1".to_string(), "99".to_string(), "100".to_string()],
                    ),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            },
            VCFRow {
                position: 4735,
                reference: "g".to_string(),
                alternative: vec!["gcc".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["63.77".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            },
            VCFRow {
                position: 4740,
                reference: "c".to_string(),
                alternative: vec!["gtt".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["63.77".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            },
            VCFRow {
                position: 13148,
                reference: "t".to_string(),
                alternative: vec!["g".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["./.".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            },
            VCFRow {
                position: 13149,
                reference: "g".to_string(),
                alternative: vec!["t".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["./.".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            },
            VCFRow {
                position: 13150,
                reference: "a".to_string(),
                alternative: vec!["tcg".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["./.".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,
                is_complex: false,
            },
            VCFRow {
                position: 13333,
                reference: "c".to_string(),
                alternative: vec!["a".to_string(), "g".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/2".to_string()]),
                    ("DP".to_string(), vec!["100".to_string()]),
                    (
                        "COV".to_string(),
                        vec!["2".to_string(), "50".to_string(), "48".to_string()],
                    ),
                    ("GT_CONF".to_string(), vec!["613".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            },
            VCFRow {
                // Edge case of using `RO` and `AO` for coverage
                position: 13335,
                reference: "t".to_string(),
                alternative: vec!["a".to_string()],
                filter: vec!["MAX_DP".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("RO".to_string(), vec!["66".to_string()]),
                    ("AO".to_string(), vec!["2".to_string()]),
                    ("COV".to_string(), vec!["66".to_string(), "2".to_string()]),
                    ("GT_CONF".to_string(), vec!["3.77".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            },
            VCFRow {
                // Odd edge case which is a valid VCF row where it's a het GT but single COV value
                position: 13336,
                reference: "c".to_string(),
                alternative: vec!["a".to_string()],
                filter: vec![],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["0/1".to_string()]),
                    ("DP".to_string(), vec!["50".to_string()]),
                    ("COV".to_string(), vec!["50".to_string()]),
                    ("GT_CONF".to_string(), vec!["613".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            },
            VCFRow {
                // Null call by virtue of failing specific filter
                position: 14000,
                reference: "c".to_string(),
                alternative: vec!["a".to_string()],
                filter: vec!["MIN_QUAL".to_string(), "MIN_FRS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["50".to_string()]),
                    ("COV".to_string(), vec!["50".to_string()]),
                    ("GT_CONF".to_string(), vec!["613".to_string()]),
                ]),
                is_filter_pass: false,
                is_complex: false,
            },
        ];
        for (idx, record) in expected_records.iter().enumerate() {
            assert_eq!(record.position, vcf.records[idx].position);
            assert_eq!(record.reference, vcf.records[idx].reference);
            assert_eq!(record.alternative, vcf.records[idx].alternative);
            assert_eq!(record.filter, vcf.records[idx].filter);
            assert_eq!(record.fields, vcf.records[idx].fields);
            assert_eq!(record.is_filter_pass, vcf.records[idx].is_filter_pass);
        }

        let expected_calls = [
            vec![Evidence {
                cov: Some(68),
                frs: Some(ordered_float::OrderedFloat(1.0)),
                genotype: "1/1".to_string(),
                call_type: AltType::SNP,
                vcf_row: 0,
                reference: "t".to_string(),
                alt: "c".to_string(),
                genome_index: 4687,
                is_minor: false,
                vcf_idx: Some(1),
            }],
            vec![Evidence {
                cov: None,
                frs: None,
                genotype: "1/2".to_string(),
                call_type: AltType::HET,
                vcf_row: 2,
                reference: "c".to_string(),
                alt: "z".to_string(),
                genome_index: 4730,
                is_minor: false,
                vcf_idx: None,
            }],
            vec![Evidence {
                cov: Some(68),
                frs: Some(ordered_float::OrderedFloat(1.0)),
                genotype: "1/1".to_string(),
                call_type: AltType::INS,
                vcf_row: 3,
                reference: "g".to_string(),
                alt: "cc".to_string(),
                genome_index: 4735,
                is_minor: false,
                vcf_idx: Some(1),
            }],
            vec![Evidence {
                cov: None,
                frs: None,
                genotype: "./.".to_string(),
                call_type: AltType::NULL,
                vcf_row: 5,
                reference: "t".to_string(),
                alt: "x".to_string(),
                genome_index: 13148,
                is_minor: false,
                vcf_idx: None,
            }],
            vec![Evidence {
                cov: None,
                frs: None,
                genotype: "./.".to_string(),
                call_type: AltType::NULL,
                vcf_row: 6,
                reference: "g".to_string(),
                alt: "x".to_string(),
                genome_index: 13149,
                is_minor: false,
                vcf_idx: None,
            }],
            vec![Evidence {
                cov: None,
                frs: None,
                genotype: "./.".to_string(),
                call_type: AltType::NULL,
                vcf_row: 7,
                reference: "a".to_string(),
                alt: "x".to_string(),
                genome_index: 13150,
                is_minor: false,
                vcf_idx: None,
            }],
            // Null call ignoring filter fails
            vec![Evidence {
                cov: Some(2),
                frs: Some(ordered_float::OrderedFloat(0.029411765)),
                genotype: "1/1".to_string(),
                call_type: AltType::NULL,
                vcf_row: 9,
                reference: "t".to_string(),
                alt: "x".to_string(),
                genome_index: 13335,
                is_minor: false,
                vcf_idx: Some(1),
            }],
            // Null call caused by specific filter fail
            vec![Evidence {
                cov: Some(0),
                frs: Some(ordered_float::OrderedFloat(0.0)),
                genotype: "1/1".to_string(),
                call_type: AltType::NULL,
                vcf_row: 11,
                reference: "c".to_string(),
                alt: "x".to_string(),
                genome_index: 14000,
                is_minor: false,
                vcf_idx: None,
            }],
        ];

        for calls in expected_calls.iter() {
            let actual = vcf.calls.get(&calls[0].genome_index).unwrap();
            for (idx, call) in calls.iter().enumerate() {
                assert_eq!(call.cov, actual[idx].cov);
                assert_eq!(call.frs, actual[idx].frs);
                assert_eq!(call.genotype, actual[idx].genotype);
                assert_eq!(call.call_type, actual[idx].call_type);
                assert_eq!(call.vcf_row, actual[idx].vcf_row);
                assert_eq!(call.reference, actual[idx].reference);
                assert_eq!(call.alt, actual[idx].alt);
                assert_eq!(call.genome_index, actual[idx].genome_index);
                assert_eq!(call.is_minor, actual[idx].is_minor);
                assert_eq!(call.vcf_idx, actual[idx].vcf_idx);
            }
        }
        assert_eq!(vcf.calls.keys().len(), expected_calls.len());

        let expected_minor_calls = [vec![
            Evidence {
                cov: Some(99),
                frs: Some(ordered_float::OrderedFloat(0.495)),
                genotype: "1/2".to_string(),
                call_type: AltType::SNP,
                vcf_row: 2,
                reference: "c".to_string(),
                alt: "t".to_string(),
                genome_index: 4730,
                is_minor: true,
                vcf_idx: Some(1),
            },
            Evidence {
                cov: Some(100),
                frs: Some(ordered_float::OrderedFloat(0.5)),
                genotype: "1/2".to_string(),
                call_type: AltType::SNP,
                vcf_row: 2,
                reference: "c".to_string(),
                alt: "g".to_string(),
                genome_index: 4730,
                is_minor: true,
                vcf_idx: Some(2),
            },
        ]];

        for calls in expected_minor_calls.iter() {
            let actual = vcf.minor_calls.get(&calls[0].genome_index).unwrap();
            for (idx, call) in calls.iter().enumerate() {
                assert_eq!(call.cov, actual[idx].cov);
                assert_eq!(call.frs, actual[idx].frs);
                assert_eq!(call.genotype, actual[idx].genotype);
                assert_eq!(call.call_type, actual[idx].call_type);
                assert_eq!(call.vcf_row, actual[idx].vcf_row);
                assert_eq!(call.reference, actual[idx].reference);
                assert_eq!(call.alt, actual[idx].alt);
                assert_eq!(call.genome_index, actual[idx].genome_index);
                assert_eq!(call.is_minor, actual[idx].is_minor);
                assert_eq!(call.vcf_idx, actual[idx].vcf_idx);
            }
        }
    }

    #[test]
    fn test_complex_is_detected() {
        // Check that the is_complex flag gets set if a VCF has a complex row in it
        // This VCF has 1 standard row, then 2 almost complex rows, then a complex row
        // Standard SNP at 4687
        // Ref of length 1000 with 2 alts at 4730
        // Ref of length 1001 with 1 alt at 5730
        // Ref of length 1001 with 2 alts at 7030 <-- this is the complex row

        let vcf = VCFFile::new("test/complex.vcf".to_string(), false, 3);

        let expected_records = [VCFRow {
                position: 4687,
                reference: "t".to_string(),
                alternative: vec!["c".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["68".to_string()]),
                    ("COV".to_string(), vec!["0".to_string(), "68".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,is_complex: false,
            },
            VCFRow {
                position: 4730,
                reference: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa".to_string(),
                alternative: vec!["t".to_string(), "g".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["200".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "99".to_string(), "100".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,is_complex: false,
            },
            VCFRow {
                position: 5730,
                reference: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa".to_string(),
                alternative: vec!["t".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["1/1".to_string()]),
                    ("DP".to_string(), vec!["200".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "99".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,is_complex: false,
            },
            VCFRow {
                position: 7030,
                reference: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa".to_string(),
                alternative: vec!["t".to_string(), "g".to_string()],
                filter: vec!["PASS".to_string()],
                fields: HashMap::from([
                    ("GT".to_string(), vec!["2/2".to_string()]),
                    ("DP".to_string(), vec!["200".to_string()]),
                    ("COV".to_string(), vec!["1".to_string(), "99".to_string(), "100".to_string()]),
                    ("GT_CONF".to_string(), vec!["613.77".to_string()]),
                ]),
                is_filter_pass: true,is_complex: true,
            }];

        for (idx, record) in expected_records.iter().enumerate() {
            assert_eq!(record.position, vcf.records[idx].position);
            assert_eq!(record.reference, vcf.records[idx].reference);
            assert_eq!(record.alternative, vcf.records[idx].alternative);
            assert_eq!(record.filter, vcf.records[idx].filter);
            assert_eq!(record.fields, vcf.records[idx].fields);
            assert_eq!(record.is_filter_pass, vcf.records[idx].is_filter_pass);
        }
    }
}