fgumi 0.2.0

High-performance tools for UMI-tagged sequencing data: extraction, grouping, and consensus calling
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
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
//! Filter consensus reads based on quality, depth, and error thresholds.
//!
//! This tool filters consensus reads generated by `simplex` or
//! `duplex`. It performs two levels of filtering:
//!
//! 1. **Base-level masking**: Individual bases are masked to 'N' if they fail thresholds
//!    (min quality, min depth, max error rate)
//! 2. **Read-level filtering**: Entire reads are filtered if they fail thresholds
//!    (min reads, max read error rate, max no-calls, min mean quality)

use crate::alignment_tags::regenerate_alignment_tags_raw;
use crate::bam_io::create_bam_reader_for_pipeline_with_opts;
use crate::consensus_filter::{
    FilterConfig, FilterResult, MethylationDepthThresholds, MethylationTags,
    check_conversion_fraction_raw_with_ref_bases_and_tags, compute_read_stats, filter_duplex_read,
    filter_read, is_duplex_consensus, mask_bases, mask_duplex_bases,
    mask_methylation_depth_duplex_raw_with_tags, mask_methylation_depth_simplex_raw_with_tags,
    mask_strand_methylation_agreement_raw_with_ref_bases_and_tags, resolve_ref_bases_for_record,
    template_passes,
};
use crate::grouper::{SingleRawRecordGrouper, TemplateGrouper};
use crate::logging::OperationTimer;
use crate::per_thread_accumulator::PerThreadAccumulator;
use crate::read_info::LibraryIndex;
use crate::reference::ReferenceReader;
use crate::sort::bam_fields;
use crate::tag_reversal::reverse_per_base_tags_raw;
use crate::template::TemplateBatch;
use crate::unified_pipeline::{
    BamPipelineConfig, BatchWeight, GroupKeyConfig, Grouper, MemoryEstimate,
    run_bam_pipeline_from_reader, run_bam_pipeline_from_reader_with_secondary,
};
use crate::validation::validate_file_exists;
use ahash::AHashMap;
use anyhow::{Result, bail};
use clap::Parser;
use fgumi_raw_bam::{RawRecord, RawRecordView};
use log::info;
use noodles::sam::Header;
use std::io;
use std::path::PathBuf;
use std::sync::Arc;
use std::sync::atomic::{AtomicU64, Ordering};
use std::time::Instant;

use crate::commands::command::Command;
use crate::commands::common::{
    BamIoOptions, CompressionOptions, QueueMemoryOptions, SchedulerOptions, ThreadingOptions,
    build_pipeline_config, parse_bool,
};

/// Filters and masks consensus reads based on various quality metrics.
#[derive(Debug, Parser)]
#[command(
    name = "filter",
    about = "\x1b[38;5;173m[POST-CONSENSUS]\x1b[0m \x1b[36mFilter consensus reads based on quality metrics\x1b[0m",
    long_about = r#"
Filters consensus reads generated by simplex or duplex commands.
Two kinds of filtering are performed:

  1. Masking/filtering of individual bases in reads
  2. Filtering out of reads (i.e. not writing them to the output file)

Base-level filtering/masking is only applied if per-base tags are present (see duplex and simplex for
descriptions of these tags). Read-level filtering is always applied. When filtering reads, secondary alignments
and supplementary records may be removed independently if they fail one or more filters; if either R1 or R2
primary alignments fail a filter then all records for the template will be filtered out.

The filters applied are as follows:

  1. Reads with fewer than min-reads contributing reads are filtered out
  2. Reads with an average consensus error rate higher than max-read-error-rate are filtered out
  3. Reads with mean base quality of the consensus read, prior to any masking, less than min-mean-base-quality
     are filtered out (if specified)
  4. Bases with quality scores below min-base-quality are masked to Ns
  5. Bases with fewer than min-reads contributing raw reads are masked to Ns
  6. Bases with a consensus error rate (defined as the fraction of contributing reads that voted for a different
     base than the consensus call) higher than max-base-error-rate are masked to Ns
  7. Reads with a fraction or count of Ns higher than max-no-call-fraction after per-base filtering are filtered out.

When filtering single-umi consensus reads generated by simplex, a single value each
should be supplied for --min-reads, --max-read-error-rate, and --max-base-error-rate.

When filtering duplex consensus reads generated by duplex, each of the three parameters
may independently take 1-3 values. For example:

  fgumi filter ... --min-reads 10,5,3 --max-base-error-rate 0.1

In each case if fewer than three values are supplied, the last value is repeated (i.e. `80,40` -> `80 40 40`
and `0.1` -> `0.1 0.1 0.1`). The first value applies to the final consensus read, the second value to one
single-strand consensus, and the last value to the other single-strand consensus. It is required that if
values two and three differ, the more stringent value comes earlier.

In order to correctly filter reads in or out by template, the input BAM must be either queryname sorted or
query grouped. If your BAM is not already in an appropriate order, this can be done in streaming fashion with:

  fgumi sort -i in.bam --order queryname | fgumi filter -i /dev/stdin ...

The output sort order may be specified with --sort-order. If not given, then the output will be in the same
order as input.

The --reverse-per-base-tags option controls whether per-base tags should be reversed before being used on reads
marked as being mapped to the negative strand. This is necessary if the reads have been mapped and the
bases/quals reversed but the consensus tags have not. If true, the tags written to the output BAM will be
reversed where necessary in order to line up with the bases and quals.
"#
)]
#[allow(clippy::struct_excessive_bools)]
pub struct Filter {
    /// Input and output BAM files
    #[command(flatten)]
    pub io: BamIoOptions,

    /// Reference FASTA file for NM/UQ/MD tag regeneration.
    /// If not provided, alignment tag regeneration (NM/UQ/MD) is skipped.
    #[arg(short = 'r', long = "ref")]
    pub reference: Option<PathBuf>,

    /// Minimum number of raw reads to support a single-strand consensus base/read.
    /// For duplex: provide 1-3 values for [duplex, single-strand consensus, single-strand consensus]
    #[arg(short = 'M', long = "min-reads", value_delimiter = ',')]
    pub min_reads: Vec<usize>,

    /// Maximum raw read error rate for a single-strand consensus base/read (0.0-1.0).
    /// For duplex: provide 1-3 values for [duplex, single-strand consensus, single-strand consensus]
    #[arg(
        short = 'E',
        long = "max-read-error-rate",
        value_delimiter = ',',
        default_value = "0.025"
    )]
    pub max_read_error_rate: Vec<f64>,

    /// Maximum base error rate across raw reads (0.0-1.0).
    /// For duplex: provide 1-3 values for [duplex, AB consensus, BA consensus]
    #[arg(short = 'e', long = "max-base-error-rate", value_delimiter = ',', default_value = "0.1")]
    pub max_base_error_rate: Vec<f64>,

    /// Minimum base quality score (after masking)
    #[arg(short = 'N', long = "min-base-quality")]
    pub min_base_quality: Option<u8>,

    /// Minimum mean base quality across the read (after masking)
    #[arg(short = 'q', long = "min-mean-base-quality")]
    pub min_mean_base_quality: Option<f64>,

    /// Maximum no-calls (N bases) allowed in a read.
    ///
    /// If < 1.0, treated as a fraction of read length (e.g. 0.2 = 20% Ns allowed).
    /// If >= 1.0, treated as an absolute base count (must be integer, e.g. 5 = max 5 Ns).
    #[arg(short = 'n', long = "max-no-call-fraction", default_value = "0.2")]
    pub max_no_call_fraction: f64,

    /// Reverse per-base tags for negative strand reads
    #[arg(short = 'R', long = "reverse-per-base-tags", default_value = "false", num_args = 0..=1, default_missing_value = "true", action = clap::ArgAction::Set, value_parser = parse_bool)]
    pub reverse_per_base_tags: bool,

    /// Threading options for parallel processing
    #[command(flatten)]
    pub threading: ThreadingOptions,

    /// Filter templates together (all primary reads must pass)
    #[arg(long = "filter-by-template", default_value = "true", num_args = 0..=1, default_missing_value = "true", action = clap::ArgAction::Set, value_parser = parse_bool)]
    pub filter_by_template: bool,

    /// Optional output BAM file for rejected reads
    #[arg(long = "rejects")]
    pub rejects: Option<PathBuf>,

    /// Optional output file for filtering statistics
    #[arg(long = "stats")]
    pub stats: Option<PathBuf>,

    /// Require single-strand agreement for duplex consensus (mask bases where AB and BA disagree)
    #[arg(short = 's', long = "require-single-strand-agreement", default_value = "false", num_args = 0..=1, default_missing_value = "true", action = clap::ArgAction::Set, value_parser = parse_bool)]
    pub require_single_strand_agreement: bool,

    /// Minimum methylation depth (cu+ct) to keep a base call (EM-Seq/TAPs).
    /// For duplex: provide 1-3 values for [duplex, AB consensus, BA consensus]
    #[arg(long = "min-methylation-depth", value_delimiter = ',')]
    pub min_methylation_depth: Vec<usize>,

    #[allow(clippy::doc_markdown)]
    /// Require strand methylation agreement at CpG sites for duplex consensus (EM-Seq/TAPs).
    /// Masks both positions of a CpG dinucleotide when top and bottom strands disagree on
    /// methylation status. Requires --ref.
    #[arg(long = "require-strand-methylation-agreement", default_value = "false", num_args = 0..=1, default_missing_value = "true", action = clap::ArgAction::Set, value_parser = parse_bool)]
    pub require_strand_methylation_agreement: bool,

    #[allow(clippy::doc_markdown)]
    /// Minimum bisulfite/enzymatic conversion fraction at non-CpG cytosines.
    /// For EM-Seq: checks converted/total >= threshold (high conversion = good).
    /// For TAPs: checks unconverted/total >= threshold (low conversion = good).
    /// Requires --ref and --methylation-mode. Uses cu/ct tags.
    #[arg(long = "min-conversion-fraction")]
    pub min_conversion_fraction: Option<f64>,

    /// Methylation mode for conversion fraction filtering.
    /// Required when using --min-conversion-fraction.
    /// Controls whether the conversion fraction check uses converted (em-seq)
    /// or unconverted (taps) counts as the numerator.
    #[arg(long = "methylation-mode", value_enum)]
    pub methylation_mode: Option<crate::commands::common::MethylationModeArg>,

    /// Compression options for output BAM.
    #[command(flatten)]
    pub compression: CompressionOptions,

    /// Scheduler and pipeline stats options
    #[command(flatten)]
    pub scheduler_opts: SchedulerOptions,

    /// Queue memory options.
    #[command(flatten)]
    pub queue_memory: QueueMemoryOptions,
}

// ============================================================================
// 7-Step Pipeline Types
// ============================================================================

/// Result from processing a batch of records through raw-byte filtering.
struct FilterProcessedBatchRaw {
    /// Records that passed filtering (raw bytes).
    kept_records: Vec<RawRecord>,
    /// Records that failed filtering (raw bytes, if tracking rejects).
    rejected_records: Vec<RawRecord>,
    /// Number of records processed.
    records_count: u64,
    /// Number of records that passed.
    passed_count: u64,
    /// Number of bases masked.
    bases_masked: u64,
}

impl MemoryEstimate for FilterProcessedBatchRaw {
    fn estimate_heap_size(&self) -> usize {
        let vec_overhead = std::mem::size_of::<RawRecord>();
        let kept_outer = self.kept_records.capacity() * vec_overhead;
        let kept_inner: usize = self.kept_records.iter().map(RawRecord::capacity).sum();
        let rejected_outer = self.rejected_records.capacity() * vec_overhead;
        let rejected_inner: usize = self.rejected_records.iter().map(RawRecord::capacity).sum();
        kept_outer + kept_inner + rejected_outer + rejected_inner
    }
}

/// Serialize raw BAM records directly (bypasses `bam_codec` encoder).
fn serialize_raw_records(records: &[RawRecord], output: &mut Vec<u8>) -> io::Result<u64> {
    for record in records {
        let len = u32::try_from(record.len()).map_err(|_| {
            io::Error::new(
                io::ErrorKind::InvalidData,
                format!("BAM record too large ({} bytes) for u32 block_size", record.len()),
            )
        })?;
        output.extend_from_slice(&len.to_le_bytes());
        output.extend_from_slice(record);
    }
    Ok(records.len() as u64)
}

/// Per-thread accumulator merged into final counts after pipeline completion.
#[derive(Default)]
struct CollectedFilterMetrics {
    /// Total records processed.
    total_records: u64,
    /// Records that passed.
    passed_records: u64,
    /// Records that failed.
    failed_records: u64,
    /// Total bases masked.
    total_bases_masked: u64,
}

/// Shared state for a filter pipeline run, built by `setup_pipeline`.
struct FilterPipelineSetup {
    pipeline_config: BamPipelineConfig,
    config: Arc<FilterConfig>,
    reference: Option<Arc<ReferenceReader>>,
    collected_metrics: Arc<PerThreadAccumulator<CollectedFilterMetrics>>,
    progress_counter: Arc<AtomicU64>,
}

/// Captures needed by the process closure, extracted from `Filter` and `FilterPipelineSetup`.
struct FilterProcessCaptures {
    config: Arc<FilterConfig>,
    reference: Option<Arc<ReferenceReader>>,
    min_base_quality: Option<u8>,
    should_reverse_tags: bool,
    min_mean_base_quality: Option<f64>,
    max_no_call_fraction: f64,
    require_single_strand_agreement: bool,
    methylation_depth_thresholds: Option<MethylationDepthThresholds>,
    require_strand_methylation_agreement: bool,
    min_conversion_fraction: Option<f64>,
    methylation_mode: fgumi_consensus::MethylationMode,
    ref_names: Arc<Vec<String>>,
    progress: Arc<AtomicU64>,
    header: Header,
}

impl Command for Filter {
    fn execute(&self, command_line: &str) -> Result<()> {
        // Validate inputs
        validate_file_exists(&self.io.input, "Input BAM")?;

        if let Some(ref reference) = self.reference {
            validate_file_exists(reference, "Reference FASTA")?;
        }

        // Validate parameter counts (1-3 values for duplex support)
        self.validate_parameters()?;

        let timer = OperationTimer::new("Filtering consensus reads");

        info!("Starting Filter");
        info!("Input: {}", self.io.input.display());
        info!("Output: {}", self.io.output.display());
        match &self.reference {
            Some(r) => info!("Reference: {}", r.display()),
            None => info!("Reference: <none> (tag regeneration disabled)"),
        }
        info!("Min reads: {:?}", self.min_reads);
        info!("Max read error rate: {:?}", self.max_read_error_rate);
        info!("Max base error rate: {:?}", self.max_base_error_rate);
        if let Some(q) = self.min_base_quality {
            info!("Min base quality: {q}");
        }
        if let Some(q) = self.min_mean_base_quality {
            info!("Min mean base quality: {q}");
        }
        info!("Max no-call fraction: {}", self.max_no_call_fraction);
        if !self.min_methylation_depth.is_empty() {
            info!("Min methylation depth: {:?}", self.min_methylation_depth);
        }
        if self.require_strand_methylation_agreement {
            info!("Require strand methylation agreement: true");
        }
        if let Some(frac) = self.min_conversion_fraction {
            info!("Min conversion fraction: {frac}");
        }
        if let Some(mode) = &self.methylation_mode {
            info!("Methylation mode: {mode:?}");
        }

        // Open input using streaming-capable reader for pipeline use
        let (reader, header) = create_bam_reader_for_pipeline_with_opts(
            &self.io.input,
            self.io.pipeline_reader_opts(),
        )?;

        // Add @PG record with PP chaining to input's last program
        let header = crate::commands::common::add_pg_record(header, command_line)?;

        let track_rejects = self.rejects.is_some();
        let threads = self.threading.threads.unwrap_or(1);

        // Route to appropriate 7-step pipeline mode
        let total_reads = if self.filter_by_template {
            self.execute_threads_mode_template(threads, reader, header, track_rejects)?
        } else {
            self.execute_threads_mode_single_read(threads, reader, header, track_rejects)?
        };

        timer.log_completion(total_reads);
        Ok(())
    }
}

impl Filter {
    // ========================================================================
    // 7-Step Unified Pipeline Implementation
    // ========================================================================

    /// Build the shared pipeline configuration, filter config, reference, metrics
    /// queue, and progress counter used by both pipeline modes.
    fn setup_pipeline(&self, num_threads: usize, header: &Header) -> Result<FilterPipelineSetup> {
        let mut pipeline_config = build_pipeline_config(
            &self.scheduler_opts,
            &self.compression,
            &self.queue_memory,
            num_threads,
        )?;

        let library_index = LibraryIndex::from_header(header);
        pipeline_config.group_key_config = Some(GroupKeyConfig::new_raw_no_cell(library_index));

        let config = Arc::new(FilterConfig::new(
            &self.min_reads,
            &self.max_read_error_rate,
            &self.max_base_error_rate,
            self.min_base_quality,
            self.min_mean_base_quality,
            self.max_no_call_fraction,
        ));

        let reference: Option<Arc<ReferenceReader>> = match &self.reference {
            Some(ref_path) => {
                info!("Loading reference genome into memory...");
                let ref_load_start = Instant::now();
                let r = Arc::new(ReferenceReader::new(ref_path)?);
                info!("Reference loaded in {:.1}s", ref_load_start.elapsed().as_secs_f64());
                Some(r)
            }
            None => None,
        };

        let collected_metrics = PerThreadAccumulator::<CollectedFilterMetrics>::new(num_threads);
        let progress_counter = Arc::new(AtomicU64::new(0));

        Ok(FilterPipelineSetup {
            pipeline_config,
            config,
            reference,
            collected_metrics,
            progress_counter,
        })
    }

    /// Build the process closure captures from self and setup.
    fn process_captures(
        &self,
        setup: &FilterPipelineSetup,
        header: &Header,
    ) -> FilterProcessCaptures {
        let ref_names: Vec<String> =
            header.reference_sequences().keys().map(|name| name.to_string()).collect();
        FilterProcessCaptures {
            config: Arc::clone(&setup.config),
            reference: setup.reference.clone(),
            min_base_quality: self.min_base_quality,
            should_reverse_tags: self.reverse_per_base_tags,
            min_mean_base_quality: self.min_mean_base_quality,
            max_no_call_fraction: self.max_no_call_fraction,
            require_single_strand_agreement: self.require_single_strand_agreement,
            methylation_depth_thresholds: if self.min_methylation_depth.is_empty() {
                None
            } else {
                Some(MethylationDepthThresholds::from_values(&self.min_methylation_depth))
            },
            require_strand_methylation_agreement: self.require_strand_methylation_agreement,
            min_conversion_fraction: self.min_conversion_fraction,
            methylation_mode: crate::commands::common::resolve_methylation_mode(
                self.methylation_mode,
            ),
            ref_names: Arc::new(ref_names),
            progress: Arc::clone(&setup.progress_counter),
            header: header.clone(),
        }
    }

    /// Run the filter pipeline with the given grouper and process function.
    ///
    /// This is the common pipeline executor shared by single-read and template modes.
    /// It builds the serialize function, runs the pipeline (with optional secondary
    /// output for rejects), and aggregates metrics.
    fn run_filter_pipeline<G, GrouperFn, ProcessFn>(
        &self,
        setup: FilterPipelineSetup,
        reader: Box<dyn std::io::Read + Send>,
        header: Header,
        grouper_fn: GrouperFn,
        process_fn: ProcessFn,
    ) -> Result<u64>
    where
        G: Send + BatchWeight + MemoryEstimate + 'static,
        GrouperFn: FnOnce(&Header) -> Box<dyn Grouper<Group = G> + Send>,
        ProcessFn: Fn(G) -> io::Result<FilterProcessedBatchRaw> + Send + Sync + 'static,
    {
        let collected_for_serialize = Arc::clone(&setup.collected_metrics);

        // Primary serialize: write kept records
        let serialize_fn = move |processed: FilterProcessedBatchRaw,
                                 _header: &Header,
                                 output: &mut Vec<u8>|
              -> io::Result<u64> {
            collected_for_serialize.with_slot(|m| {
                m.total_records += processed.records_count;
                m.passed_records += processed.passed_count;
                m.failed_records += processed.records_count - processed.passed_count;
                m.total_bases_masked += processed.bases_masked;
            });

            serialize_raw_records(&processed.kept_records, output)
        };

        if let Some(rejects_path) = &self.rejects {
            // Secondary serialize: write rejected records
            let secondary_serialize_fn =
                |batch: &FilterProcessedBatchRaw, buf: &mut Vec<u8>| -> io::Result<u64> {
                    serialize_raw_records(&batch.rejected_records, buf)
                };

            run_bam_pipeline_from_reader_with_secondary(
                setup.pipeline_config,
                reader,
                header,
                &self.io.output,
                None,
                rejects_path,
                grouper_fn,
                process_fn,
                serialize_fn,
                secondary_serialize_fn,
            )?;
        } else {
            run_bam_pipeline_from_reader(
                setup.pipeline_config,
                reader,
                header,
                &self.io.output,
                None,
                grouper_fn,
                process_fn,
                serialize_fn,
            )?;
        }

        // Aggregate metrics
        let mut total_reads = 0u64;
        let mut passed_reads = 0u64;
        let mut failed_reads = 0u64;
        let mut total_bases_masked = 0u64;

        for slot in setup.collected_metrics.slots() {
            let m = slot.lock();
            total_reads += m.total_records;
            passed_reads += m.passed_records;
            failed_reads += m.failed_records;
            total_bases_masked += m.total_bases_masked;
        }

        if let Some(stats_path) = &self.stats {
            self.write_filter_stats(stats_path, total_reads, passed_reads, failed_reads)?;
        }

        info!("Processed {total_reads} reads; kept {passed_reads} and rejected {failed_reads}");
        if self.rejects.is_some() && failed_reads > 0 {
            info!("Wrote {failed_reads} rejected records to rejects file");
        }
        info!("Total bases masked: {total_bases_masked}");

        Ok(total_reads)
    }

    /// Execute using the 7-step unified pipeline (single-read mode, raw bytes).
    ///
    /// Each record is filtered independently without template awareness.
    fn execute_threads_mode_single_read(
        &self,
        num_threads: usize,
        reader: Box<dyn std::io::Read + Send>,
        header: Header,
        track_rejects: bool,
    ) -> Result<u64> {
        let setup = self.setup_pipeline(num_threads, &header)?;
        let ctx = self.process_captures(&setup, &header);

        let grouper_fn = move |_header: &Header| {
            Box::new(SingleRawRecordGrouper::new()) as Box<dyn Grouper<Group = RawRecord> + Send>
        };

        let process_fn = move |mut record: RawRecord| -> io::Result<FilterProcessedBatchRaw> {
            let mut kept_records: Vec<RawRecord> = Vec::new();
            let mut rejected_records: Vec<RawRecord> = Vec::new();
            let mut passed_count = 0u64;

            let (bases_masked, pass) = Self::process_record_raw(
                &mut record,
                &ctx.config,
                ctx.reference.as_deref(),
                &ctx.header,
                ctx.should_reverse_tags,
                ctx.min_base_quality,
                ctx.require_single_strand_agreement,
                ctx.min_mean_base_quality,
                ctx.max_no_call_fraction,
                ctx.methylation_depth_thresholds.as_ref(),
                ctx.require_strand_methylation_agreement,
                ctx.min_conversion_fraction,
                ctx.methylation_mode,
                &ctx.ref_names,
            )
            .map_err(io::Error::other)?;

            if pass {
                passed_count = 1;
                kept_records.push(record);
            } else if track_rejects {
                rejected_records.push(record);
            }

            let count = ctx.progress.fetch_add(1, Ordering::Relaxed);
            if (count + 1).is_multiple_of(1_000_000) {
                info!("Processed {} records", count + 1);
            }

            Ok(FilterProcessedBatchRaw {
                kept_records,
                rejected_records,
                records_count: 1,
                passed_count,
                bases_masked,
            })
        };

        self.run_filter_pipeline(setup, reader, header, grouper_fn, process_fn)
    }

    /// Execute using the 7-step unified pipeline (template-aware mode).
    ///
    /// All primary reads in a template must pass for the template to pass.
    fn execute_threads_mode_template(
        &self,
        num_threads: usize,
        reader: Box<dyn std::io::Read + Send>,
        header: Header,
        track_rejects: bool,
    ) -> Result<u64> {
        let setup = self.setup_pipeline(num_threads, &header)?;
        let ctx = self.process_captures(&setup, &header);

        #[cfg(test)]
        const BATCH_SIZE: usize = 50;
        #[cfg(not(test))]
        const BATCH_SIZE: usize = 1000;

        let grouper_fn = move |_header: &Header| {
            Box::new(TemplateGrouper::new(BATCH_SIZE))
                as Box<dyn Grouper<Group = TemplateBatch> + Send>
        };

        let process_fn = move |batch: TemplateBatch| -> io::Result<FilterProcessedBatchRaw> {
            let mut kept_records: Vec<RawRecord> = Vec::new();
            let mut rejected_records: Vec<RawRecord> = Vec::new();
            let mut total_records = 0u64;
            let mut passed_count = 0u64;
            let mut bases_masked = 0u64;

            for template in batch {
                let mut template_records: Vec<RawRecord> = template.into_records();
                let mut pass_map: AHashMap<usize, bool> = AHashMap::new();

                for (idx, record) in template_records.iter_mut().enumerate() {
                    total_records += 1;

                    let (masked, pass) = Self::process_record_raw(
                        record,
                        &ctx.config,
                        ctx.reference.as_deref(),
                        &ctx.header,
                        ctx.should_reverse_tags,
                        ctx.min_base_quality,
                        ctx.require_single_strand_agreement,
                        ctx.min_mean_base_quality,
                        ctx.max_no_call_fraction,
                        ctx.methylation_depth_thresholds.as_ref(),
                        ctx.require_strand_methylation_agreement,
                        ctx.min_conversion_fraction,
                        ctx.methylation_mode,
                        &ctx.ref_names,
                    )
                    .map_err(io::Error::other)?;
                    bases_masked += masked;
                    pass_map.insert(idx, pass);
                }

                let template_pass = template_passes(&template_records, &pass_map);

                for (idx, record) in template_records.into_iter().enumerate() {
                    let flags = RawRecordView::new(&record).flags();
                    let is_primary = (flags & bam_fields::flags::SECONDARY) == 0
                        && (flags & bam_fields::flags::SUPPLEMENTARY) == 0;

                    if is_primary {
                        if template_pass {
                            passed_count += 1;
                            kept_records.push(record);
                        } else if track_rejects {
                            rejected_records.push(record);
                        }
                    } else {
                        let record_pass = pass_map.get(&idx).copied().unwrap_or(false);
                        if template_pass && record_pass {
                            passed_count += 1;
                            kept_records.push(record);
                        } else if track_rejects {
                            rejected_records.push(record);
                        }
                    }
                }
            }

            let count = ctx.progress.fetch_add(total_records, Ordering::Relaxed);
            if (count + total_records) / 1_000_000 > count / 1_000_000 {
                info!("Processed {} records", count + total_records);
            }

            Ok(FilterProcessedBatchRaw {
                kept_records,
                rejected_records,
                records_count: total_records,
                passed_count,
                bases_masked,
            })
        };

        self.run_filter_pipeline(setup, reader, header, grouper_fn, process_fn)
    }

    /// Write filtering statistics to a file.
    fn write_filter_stats(
        &self,
        path: &std::path::Path,
        total: u64,
        passed: u64,
        failed: u64,
    ) -> Result<()> {
        use std::fs::File;
        use std::io::Write;

        let mut file = File::create(path)?;
        writeln!(file, "total_reads\t{total}")?;
        writeln!(file, "passed_reads\t{passed}")?;
        writeln!(file, "failed_reads\t{failed}")?;
        #[allow(clippy::cast_precision_loss)]
        let pass_rate = if total > 0 { passed as f64 / total as f64 } else { 0.0 };
        writeln!(file, "pass_rate\t{pass_rate:.4}")?;
        Ok(())
    }

    /// Process a single raw BAM record: reverse tags, mask bases, regenerate alignment
    /// tags, and check filters.
    ///
    /// Returns `(bases_masked, pass)`.
    #[allow(clippy::too_many_arguments)]
    fn process_record_raw(
        record: &mut RawRecord,
        config: &FilterConfig,
        reference: Option<&ReferenceReader>,
        header: &Header,
        reverse_tags: bool,
        min_base_quality: Option<u8>,
        require_ss_agreement: bool,
        min_mean_base_quality: Option<f64>,
        max_no_call_fraction: f64,
        methylation_depth_thresholds: Option<&MethylationDepthThresholds>,
        require_strand_methylation_agreement: bool,
        min_conversion_fraction: Option<f64>,
        methylation_mode: fgumi_consensus::MethylationMode,
        ref_names: &[String],
    ) -> Result<(u64, bool)> {
        // Fail fast if we encounter a mapped read without a reference, since masking
        // can invalidate NM/UQ/MD tags and we have no way to regenerate them.
        if reference.is_none() {
            let flags = RawRecordView::new(record).flags();
            if (flags & bam_fields::flags::UNMAPPED) == 0 {
                bail!(
                    "--ref is required when filtering mapped reads \
                     to keep NM/UQ/MD tags consistent"
                );
            }
        }

        if reverse_tags {
            reverse_per_base_tags_raw(record)?;
        }

        let is_duplex = {
            let aux = bam_fields::aux_data_slice(record);
            is_duplex_consensus(aux)
        };

        let mut masked_count = if is_duplex {
            let (cc_thresh, ab_thresh, ba_thresh) = config
                .duplex_thresholds()
                .ok_or_else(|| anyhow::anyhow!("No duplex thresholds configured"))?;
            mask_duplex_bases(
                record,
                cc_thresh,
                ab_thresh,
                ba_thresh,
                min_base_quality,
                require_ss_agreement,
            )?
        } else {
            let thresholds = config
                .effective_single_strand_thresholds()
                .ok_or_else(|| anyhow::anyhow!("No thresholds configured"))?;
            mask_bases(record, thresholds, min_base_quality)?
        };

        // Parse methylation tags once for all EM-Seq filters
        let needs_methylation_tags = methylation_depth_thresholds.is_some()
            || (require_strand_methylation_agreement && is_duplex)
            || min_conversion_fraction.is_some();
        let methylation_tags =
            if needs_methylation_tags { Some(MethylationTags::from_record(record)) } else { None };

        // Methylation depth masking (EM-Seq)
        if let Some(thresholds) = methylation_depth_thresholds {
            let tags =
                methylation_tags.as_ref().expect("methylation_tags set when thresholds present");
            masked_count += if is_duplex {
                mask_methylation_depth_duplex_raw_with_tags(record, thresholds, tags)?
            } else {
                mask_methylation_depth_simplex_raw_with_tags(record, thresholds.duplex, tags)?
            };
        }

        // Resolve reference bases once for all reference-dependent filters
        let needs_ref_bases = (require_strand_methylation_agreement && is_duplex)
            || min_conversion_fraction.is_some();
        let ref_base_map = if needs_ref_bases {
            reference.and_then(|r| resolve_ref_bases_for_record(record, r, ref_names))
        } else {
            None
        };

        // Strand methylation agreement masking (EM-Seq, duplex only)
        if require_strand_methylation_agreement && is_duplex {
            masked_count += mask_strand_methylation_agreement_raw_with_ref_bases_and_tags(
                record,
                ref_base_map.as_deref(),
                methylation_tags
                    .as_ref()
                    .expect("methylation_tags set when strand agreement enabled"),
            )?;
        }

        if let Some(reference) = reference {
            regenerate_alignment_tags_raw(record.as_mut_vec(), header, reference)?;
        }

        let mut pass = {
            let aux = bam_fields::aux_data_slice(record);
            if is_duplex {
                let (cc_thresh, ab_thresh, ba_thresh) = config
                    .duplex_thresholds()
                    .ok_or_else(|| anyhow::anyhow!("No duplex thresholds configured"))?;
                Self::check_duplex_filters_raw(
                    record,
                    aux,
                    cc_thresh,
                    ab_thresh,
                    ba_thresh,
                    min_mean_base_quality,
                    max_no_call_fraction,
                )?
            } else {
                let thresholds = config
                    .effective_single_strand_thresholds()
                    .ok_or_else(|| anyhow::anyhow!("No thresholds configured"))?;
                Self::check_filters_raw(
                    record,
                    aux,
                    thresholds,
                    min_mean_base_quality,
                    max_no_call_fraction,
                )?
            }
        };

        // Conversion fraction filter (EM-Seq/TAPs read-level)
        if pass {
            if let Some(min_frac) = min_conversion_fraction {
                if !check_conversion_fraction_raw_with_ref_bases_and_tags(
                    record,
                    min_frac,
                    ref_base_map.as_deref(),
                    methylation_tags
                        .as_ref()
                        .expect("methylation_tags set when conversion fraction enabled"),
                    methylation_mode,
                ) {
                    pass = false;
                }
            }
        }

        Ok((masked_count as u64, pass))
    }

    /// Check mean quality and no-call fraction/count on a raw BAM record.
    ///
    /// Returns `true` if the record passes the quality and no-call thresholds.
    fn check_no_call_and_quality(
        bam: &[u8],
        min_mean_qual: Option<f64>,
        max_no_call_frac: f64,
    ) -> bool {
        let (no_calls, mean_qual) = compute_read_stats(bam);
        if let Some(min_qual) = min_mean_qual {
            if mean_qual < min_qual {
                return false;
            }
        }
        let seq_len = bam_fields::l_seq(bam) as usize;
        if max_no_call_frac >= 1.0 {
            // Count mode: threshold is an absolute base count
            (no_calls as f64) <= max_no_call_frac
        } else {
            // Fraction mode
            let no_call_frac = if seq_len > 0 { no_calls as f64 / seq_len as f64 } else { 0.0 };
            no_call_frac <= max_no_call_frac
        }
    }

    /// Checks read-level filters on a raw simplex consensus record.
    ///
    /// Returns `true` if the record passes all filters (depth, error rate, mean quality,
    /// no-call fraction/count).
    fn check_filters_raw(
        bam: &[u8],
        aux_data: &[u8],
        thresholds: &crate::consensus_filter::FilterThresholds,
        min_mean_qual: Option<f64>,
        max_no_call_frac: f64,
    ) -> Result<bool> {
        let filter_result = filter_read(aux_data, thresholds)?;
        if filter_result != FilterResult::Pass {
            return Ok(false);
        }
        Ok(Self::check_no_call_and_quality(bam, min_mean_qual, max_no_call_frac))
    }

    /// Checks read-level filters on a raw duplex consensus record.
    ///
    /// Returns `true` if the record passes all filters (CC/AB/BA depth and error rate,
    /// mean quality, no-call fraction/count).
    fn check_duplex_filters_raw(
        bam: &[u8],
        aux_data: &[u8],
        cc_thresholds: &crate::consensus_filter::FilterThresholds,
        ab_thresholds: &crate::consensus_filter::FilterThresholds,
        ba_thresholds: &crate::consensus_filter::FilterThresholds,
        min_mean_qual: Option<f64>,
        max_no_call_frac: f64,
    ) -> Result<bool> {
        let filter_result =
            filter_duplex_read(aux_data, cc_thresholds, ab_thresholds, ba_thresholds)?;
        if filter_result != FilterResult::Pass {
            return Ok(false);
        }
        Ok(Self::check_no_call_and_quality(bam, min_mean_qual, max_no_call_frac))
    }

    /// Validates that parameter vectors have 1-3 values and are in valid ranges
    ///
    /// Also validates stringency ordering requirements from Scala (lines 161-167):
    /// - For min-reads: ba <= ab <= cc (more reads required = more stringent)
    /// - For error rates: ab <= ba (lower error allowed = more stringent)
    fn validate_parameters(&self) -> Result<()> {
        // Validate min-reads
        if self.min_reads.is_empty() || self.min_reads.len() > 3 {
            bail!("--min-reads must have 1-3 values, got {}", self.min_reads.len());
        }

        // Validate max-read-error-rate
        if self.max_read_error_rate.len() > 3 {
            bail!(
                "--max-read-error-rate must have 1-3 values, got {}",
                self.max_read_error_rate.len()
            );
        }
        for &rate in &self.max_read_error_rate {
            if !(0.0..=1.0).contains(&rate) {
                bail!("--max-read-error-rate must be between 0.0 and 1.0, got {rate}");
            }
        }

        // Validate max-base-error-rate
        if self.max_base_error_rate.len() > 3 {
            bail!(
                "--max-base-error-rate must have 1-3 values, got {}",
                self.max_base_error_rate.len()
            );
        }
        for &rate in &self.max_base_error_rate {
            if !(0.0..=1.0).contains(&rate) {
                bail!("--max-base-error-rate must be between 0.0 and 1.0, got {rate}");
            }
        }

        // Validate max-no-call-fraction
        // If >= 1.0, it should be an integer (count of bases)
        // If < 1.0, it's a fraction
        if self.max_no_call_fraction < 0.0 {
            bail!("--max-no-call-fraction must be >= 0.0, got {}", self.max_no_call_fraction);
        }
        if self.max_no_call_fraction >= 1.0 && self.max_no_call_fraction.fract() != 0.0 {
            bail!(
                "--max-no-call-fraction >= 1.0 must be an integer (count of bases), got {}",
                self.max_no_call_fraction
            );
        }

        // Validate stringency ordering for duplex parameters (following Scala lines 161-167)
        if self.min_reads.len() >= 2 {
            // ab_min_reads <= cc_min_reads (more reads = more stringent)
            let cc_min = self.min_reads[0];
            let ab_min = self.min_reads[1];
            if ab_min > cc_min {
                bail!(
                    "min-reads values must be specified high to low (duplex >= AB), got {cc_min} < {ab_min}"
                );
            }
        }

        if self.min_reads.len() == 3 {
            // ba_min_reads <= ab_min_reads
            let ab_min = self.min_reads[1];
            let ba_min = self.min_reads[2];
            if ba_min > ab_min {
                bail!(
                    "min-reads values must be specified high to low (AB >= BA), got {ab_min} < {ba_min}"
                );
            }
        }

        // Validate error rate ordering (AB must be more stringent or equal to BA)
        if self.max_read_error_rate.len() >= 3 {
            let ab_error = self.max_read_error_rate[1];
            let ba_error = self.max_read_error_rate[2];
            if ab_error > ba_error {
                bail!(
                    "max-read-error-rate for AB must be <= BA (more stringent), got AB={ab_error} > BA={ba_error}"
                );
            }
        }

        if self.max_base_error_rate.len() >= 3 {
            let ab_error = self.max_base_error_rate[1];
            let ba_error = self.max_base_error_rate[2];
            if ab_error > ba_error {
                bail!(
                    "max-base-error-rate for AB must be <= BA (more stringent), got AB={ab_error} > BA={ba_error}"
                );
            }
        }

        // Validate min-methylation-depth
        if self.min_methylation_depth.len() > 3 {
            bail!(
                "--min-methylation-depth must have 1-3 values, got {}",
                self.min_methylation_depth.len()
            );
        }

        // Validate min-methylation-depth ordering (same as min-reads: CC >= AB >= BA)
        if self.min_methylation_depth.len() >= 2 {
            let cc = self.min_methylation_depth[0];
            let ab = self.min_methylation_depth[1];
            if ab > cc {
                bail!(
                    "min-methylation-depth values must be specified high to low (duplex >= AB), got {cc} < {ab}"
                );
            }
        }
        if self.min_methylation_depth.len() == 3 {
            let ab = self.min_methylation_depth[1];
            let ba = self.min_methylation_depth[2];
            if ba > ab {
                bail!(
                    "min-methylation-depth values must be specified high to low (AB >= BA), got {ab} < {ba}"
                );
            }
        }

        // Validate require-strand-methylation-agreement requires --ref
        if self.require_strand_methylation_agreement && self.reference.is_none() {
            bail!("--require-strand-methylation-agreement requires --ref to identify CpG sites");
        }

        // Validate min-conversion-fraction
        if let Some(frac) = self.min_conversion_fraction {
            if !(0.0..=1.0).contains(&frac) {
                bail!("--min-conversion-fraction must be between 0.0 and 1.0, got {frac}");
            }
            if self.reference.is_none() {
                bail!("--min-conversion-fraction requires --ref to identify non-CpG cytosines");
            }
            if self.methylation_mode.is_none() {
                bail!("--min-conversion-fraction requires --methylation-mode to be set");
            }
        }

        Ok(())
    }
}

#[cfg(test)]
#[allow(clippy::float_cmp)]
mod tests {
    use super::*;
    use fgumi_raw_bam::{RawRecord, SamBuilder as RawSamBuilder, aux_data_slice, flags};
    use noodles::sam::alignment::record_buf::RecordBuf;
    use rstest::rstest;

    /// Helper function to create a Filter command with commonly used test defaults.
    fn create_filter_with_paths(input: PathBuf, output: PathBuf, reference: PathBuf) -> Filter {
        Filter {
            io: BamIoOptions { input, output, async_reader: false },
            reference: Some(reference),
            min_reads: vec![1],
            max_read_error_rate: vec![0.025],
            max_base_error_rate: vec![0.1],
            min_base_quality: None,
            min_mean_base_quality: None,
            max_no_call_fraction: 0.2,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        }
    }

    #[test]
    fn test_parameter_validation() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.min_reads = vec![3];
        cmd.max_read_error_rate = vec![0.1];
        cmd.max_base_error_rate = vec![0.2];
        cmd.min_base_quality = Some(13);
        cmd.reverse_per_base_tags = true;
        cmd.max_no_call_fraction = 0.1;

        // Should succeed with valid parameters
        assert!(cmd.validate_parameters().is_ok());
    }

    #[test]
    fn test_invalid_error_rate() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.min_reads = vec![3];
        cmd.max_read_error_rate = vec![1.5]; // Invalid: > 1.0
        cmd.max_base_error_rate = vec![0.2];
        cmd.min_base_quality = Some(13);
        cmd.reverse_per_base_tags = true;
        cmd.max_no_call_fraction = 0.1;

        // Should fail with invalid error rate
        assert!(cmd.validate_parameters().is_err());
    }

    #[test]
    fn test_default_filter_parameters() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.min_base_quality, Some(13));
        assert!(filter.threading.is_single_threaded());
        assert!(filter.filter_by_template);
    }

    #[test]
    fn test_multithreaded_filter_configuration() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::new(8),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.threading.threads, Some(8));
    }

    #[test]
    fn test_filter_with_optional_outputs() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: Some(20.0),
            max_no_call_fraction: 0.05,
            reverse_per_base_tags: true,
            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: Some(PathBuf::from("rejects.bam")),
            stats: Some(PathBuf::from("stats.txt")),
            require_single_strand_agreement: true,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.min_mean_base_quality, Some(20.0));
        assert_eq!(filter.rejects, Some(PathBuf::from("rejects.bam")));
        assert_eq!(filter.stats, Some(PathBuf::from("stats.txt")));
        assert!(filter.require_single_strand_agreement);
    }

    #[test]
    fn test_validate_parameters_too_many_values() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![1, 2, 3, 4], // Too many values
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(filter.validate_parameters().is_err());
    }

    #[test]
    fn test_validate_parameters_invalid_stringency_order() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![1, 10], // Invalid: AB > CC
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(filter.validate_parameters().is_err());
    }

    #[test]
    fn test_validate_min_methylation_depth_too_many_values() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.min_methylation_depth = vec![4, 3, 2, 1]; // Too many values
        assert!(cmd.validate_parameters().is_err());
    }

    #[test]
    fn test_validate_min_methylation_depth_invalid_order() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.min_methylation_depth = vec![2, 5]; // AB > CC
        assert!(cmd.validate_parameters().is_err());
    }

    #[test]
    fn test_validate_strand_agreement_requires_ref() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.reference = None;
        cmd.require_strand_methylation_agreement = true;
        assert!(cmd.validate_parameters().is_err());
    }

    #[test]
    fn test_validate_conversion_fraction_out_of_range() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.min_conversion_fraction = Some(1.5); // Out of range
        assert!(cmd.validate_parameters().is_err());
    }

    #[test]
    fn test_validate_conversion_fraction_requires_ref() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.reference = None;
        cmd.min_conversion_fraction = Some(0.9);
        assert!(cmd.validate_parameters().is_err());
    }

    #[test]
    fn test_validate_conversion_fraction_requires_methylation_mode() {
        let mut cmd = create_filter_with_paths(
            PathBuf::from("input.bam"),
            PathBuf::from("output.bam"),
            PathBuf::from("ref.fa"),
        );
        cmd.min_conversion_fraction = Some(0.9);
        cmd.methylation_mode = None;
        assert!(cmd.validate_parameters().is_err());
    }

    // Integration tests for filtering logic

    /// Creates a raw BAM test record for filtering tests.
    ///
    /// Returns a `RawRecord` with the provided sequence, quality scores,
    /// and optional consensus depth and error tags.
    fn create_filter_test_record(
        _name: &str,
        sequence: &[u8],
        qualities: &[u8],
        read_depth: Option<u8>,
        read_error: Option<f32>,
        base_depths: Option<Vec<u16>>,
        base_errors: Option<Vec<u16>>,
    ) -> RawRecord {
        let seq_len = sequence.len();
        let cigar_op = if seq_len > 0 { (seq_len as u32) << 4 } else { 0 }; // nM

        let mut b = RawSamBuilder::new();
        b.ref_id(0).pos(0).mapq(60).flags(0);
        if seq_len > 0 {
            b.cigar_ops(&[cigar_op]).sequence(sequence).qualities(qualities);
        }
        if let Some(depth) = read_depth {
            b.add_int_tag(b"cD", i32::from(depth));
        }
        if let Some(error) = read_error {
            b.add_float_tag(b"cE", error);
        }
        if let Some(depths) = base_depths {
            b.add_array_u16(b"cd", &depths);
        }
        if let Some(errors) = base_errors {
            b.add_array_u16(b"ce", &errors);
        }
        b.build()
    }

    /// Creates a raw BAM test record with `PAIRED+FIRST_SEGMENT` flags.
    fn create_r1_record(sequence: &[u8], qualities: &[u8]) -> RawRecord {
        let seq_len = sequence.len();
        let cigar_op = (seq_len as u32) << 4;
        let mut b = RawSamBuilder::new();
        b.ref_id(0)
            .pos(0)
            .mapq(60)
            .flags(flags::PAIRED | flags::FIRST_SEGMENT)
            .cigar_ops(&[cigar_op])
            .sequence(sequence)
            .qualities(qualities);
        b.build()
    }

    /// Creates a raw BAM test record with `PAIRED+LAST_SEGMENT` flags.
    fn create_r2_record(sequence: &[u8], qualities: &[u8]) -> RawRecord {
        let seq_len = sequence.len();
        let cigar_op = (seq_len as u32) << 4;
        let mut b = RawSamBuilder::new();
        b.ref_id(0)
            .pos(0)
            .mapq(60)
            .flags(flags::PAIRED | flags::LAST_SEGMENT)
            .cigar_ops(&[cigar_op])
            .sequence(sequence)
            .qualities(qualities);
        b.build()
    }

    #[test]
    fn test_count_no_calls_empty_sequence() {
        let record = create_filter_test_record("test", b"", &[], None, None, None, None);
        assert_eq!(crate::consensus_filter::count_no_calls(&record), 0);
    }

    #[test]
    fn test_count_no_calls_no_ns() {
        let record =
            create_filter_test_record("test", b"ACGT", &[30, 30, 30, 30], None, None, None, None);
        assert_eq!(crate::consensus_filter::count_no_calls(&record), 0);
    }

    #[test]
    fn test_count_no_calls_with_ns() {
        let record = create_filter_test_record(
            "test",
            b"ACNTN",
            &[30, 30, 0, 30, 0],
            None,
            None,
            None,
            None,
        );
        assert_eq!(crate::consensus_filter::count_no_calls(&record), 2);
    }

    #[test]
    fn test_count_no_calls_all_ns() {
        let record =
            create_filter_test_record("test", b"NNNN", &[0, 0, 0, 0], None, None, None, None);
        assert_eq!(crate::consensus_filter::count_no_calls(&record), 4);
    }

    #[test]
    fn test_mean_base_quality_empty() {
        let record = create_filter_test_record("test", b"", &[], None, None, None, None);
        assert!((crate::consensus_filter::mean_base_quality(&record) - 0.0).abs() < f64::EPSILON);
    }

    #[test]
    fn test_mean_base_quality_uniform() {
        let record =
            create_filter_test_record("test", b"ACGT", &[30, 30, 30, 30], None, None, None, None);
        assert!((crate::consensus_filter::mean_base_quality(&record) - 30.0).abs() < f64::EPSILON);
    }

    #[test]
    fn test_mean_base_quality_mixed() {
        let record =
            create_filter_test_record("test", b"ACGT", &[10, 20, 30, 40], None, None, None, None);
        assert!((crate::consensus_filter::mean_base_quality(&record) - 25.0).abs() < f64::EPSILON);
    }

    #[test]
    fn test_mask_bases_low_quality() {
        use crate::consensus_filter::{FilterThresholds, mask_bases};

        // Test: mask_bases masks bases with low quality
        // Qualities: A=10 (<20, mask), C=30 (ok), G=5 (<20, mask), T=30 (ok)
        let mut record = create_filter_test_record(
            "test",
            b"ACGT",
            &[10, 30, 5, 30],
            None,
            None,
            Some(vec![10, 10, 10, 10]), // All have sufficient depth
            Some(vec![0, 0, 0, 0]),     // All have low error rates
        );

        let thresholds =
            FilterThresholds { min_reads: 1, max_read_error_rate: 1.0, max_base_error_rate: 1.0 };

        mask_bases(&mut record, &thresholds, Some(20)).expect("mask_bases should succeed");

        // Bases 0 and 2 have quality < 20, should be masked to N
        let seq = fgumi_raw_bam::RawRecordView::new(&record).sequence_vec();
        assert_eq!(&seq, b"NCNT");

        // Quality scores for masked bases should be 2 (Phred MIN_VALUE, matching fgbio)
        let quals = fgumi_raw_bam::RawRecordView::new(&record).quality_scores().to_vec();
        assert_eq!(quals, vec![2u8, 30, 2, 30]);
    }

    #[test]
    fn test_mask_bases_low_depth() {
        use crate::consensus_filter::{FilterThresholds, mask_bases};

        let mut record = create_filter_test_record(
            "test",
            b"ACGT",
            &[30, 30, 30, 30],
            None,
            None,
            Some(vec![1, 10, 4, 10]), // First and third bases have low depth
            None,
        );

        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 1.0, max_base_error_rate: 1.0 };

        mask_bases(&mut record, &thresholds, Some(10)).expect("mask_bases should succeed");

        // Bases with depth < 5 should be masked to N
        let seq = fgumi_raw_bam::RawRecordView::new(&record).sequence_vec();
        assert_eq!(&seq, b"NCNT");
    }

    #[test]
    fn test_mask_bases_high_error_count() {
        use crate::consensus_filter::{FilterThresholds, mask_bases};

        let mut record = create_filter_test_record(
            "test",
            b"ACGT",
            &[30, 30, 30, 30],
            None,
            None,
            Some(vec![10, 10, 10, 10]),
            Some(vec![1, 3, 2, 0]), // Error counts: base 0 has 10%, base 1 has 30%, base 2 has 20%
        );

        let thresholds = FilterThresholds {
            min_reads: 1,
            max_read_error_rate: 1.0,
            max_base_error_rate: 0.2, // 20% threshold
        };

        mask_bases(&mut record, &thresholds, Some(10)).expect("mask_bases should succeed");

        // Base 1 has 3/10 = 30% > 20%, should be masked
        // Base 2 has 2/10 = 20% = 20%, NOT masked (needs to be strictly greater)
        let seq = fgumi_raw_bam::RawRecordView::new(&record).sequence_vec();
        assert_eq!(&seq, b"ANGT");
    }

    #[test]
    fn test_filter_read_passes_all_thresholds() {
        use crate::consensus_filter::{FilterResult, FilterThresholds, filter_read};

        let record = create_filter_test_record(
            "test",
            b"ACGT",
            &[30, 30, 30, 30],
            Some(10),   // Per-read depth
            Some(0.05), // Per-read error rate
            None,
            None,
        );

        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.2 };

        let result =
            filter_read(aux_data_slice(&record), &thresholds).expect("filter_read should succeed");
        assert_eq!(result, FilterResult::Pass);
    }

    #[test]
    fn test_filter_read_fails_low_depth() {
        use crate::consensus_filter::{FilterResult, FilterThresholds, filter_read};

        let record = create_filter_test_record(
            "test",
            b"ACGT",
            &[30, 30, 30, 30],
            Some(3), // Below threshold
            Some(0.05),
            None,
            None,
        );

        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.2 };

        let result =
            filter_read(aux_data_slice(&record), &thresholds).expect("filter_read should succeed");
        assert_eq!(result, FilterResult::InsufficientReads);
    }

    #[test]
    fn test_filter_read_fails_high_error_rate() {
        use crate::consensus_filter::{FilterResult, FilterThresholds, filter_read};

        let record = create_filter_test_record(
            "test",
            b"ACGT",
            &[30, 30, 30, 30],
            Some(10),
            Some(0.3), // High error rate
            None,
            None,
        );

        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.2 };

        let result =
            filter_read(aux_data_slice(&record), &thresholds).expect("filter_read should succeed");
        assert_eq!(result, FilterResult::ExcessiveErrorRate);
    }

    #[test]
    fn test_filter_read_without_tags() {
        use crate::consensus_filter::{FilterResult, FilterThresholds, filter_read};

        // Record without depth/error tags should pass (tags are optional)
        let record =
            create_filter_test_record("test", b"ACGT", &[30, 30, 30, 30], None, None, None, None);

        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.2 };

        let result =
            filter_read(aux_data_slice(&record), &thresholds).expect("filter_read should succeed");
        assert_eq!(result, FilterResult::Pass);
    }

    #[test]
    fn test_template_passes_all_pass() {
        use crate::consensus_filter::template_passes;
        use ahash::AHashMap;

        let r1 = create_r1_record(b"ACGT", &[30, 30, 30, 30]);
        let r2 = create_r2_record(b"GGGG", &[30, 30, 30, 30]);

        let records = vec![r1, r2];
        let mut pass_map = AHashMap::new();
        pass_map.insert(0, true);
        pass_map.insert(1, true);

        assert!(template_passes(&records, &pass_map));
    }

    #[test]
    fn test_template_passes_one_fails() {
        use crate::consensus_filter::template_passes;
        use ahash::AHashMap;

        let r1 = create_r1_record(b"ACGT", &[30, 30, 30, 30]);
        let r2 = create_r2_record(b"GGGG", &[30, 30, 30, 30]);

        let records = vec![r1, r2];
        let mut pass_map = AHashMap::new();
        pass_map.insert(0, true);
        pass_map.insert(1, false); // One fails

        assert!(!template_passes(&records, &pass_map));
    }

    #[test]
    fn test_is_duplex_consensus_simplex() {
        use crate::consensus_filter::is_duplex_consensus;

        let record =
            create_filter_test_record("test", b"ACGT", &[30, 30, 30, 30], None, None, None, None);
        assert!(!is_duplex_consensus(aux_data_slice(&record)));
    }

    #[test]
    fn test_is_duplex_consensus_with_tag() {
        use crate::consensus_filter::is_duplex_consensus;

        // Build a record with the aD tag included directly
        let mut b = RawSamBuilder::new();
        b.ref_id(0)
            .pos(0)
            .mapq(60)
            .flags(0)
            .cigar_ops(&[4 << 4]) // 4M
            .sequence(b"ACGT")
            .qualities(&[30, 30, 30, 30]);
        b.add_int_tag(b"aD", 10);
        let record = b.build();

        assert!(is_duplex_consensus(aux_data_slice(&record)));
    }

    #[test]
    fn test_validate_max_no_call_fraction_integer() {
        // When max_no_call_fraction >= 1.0, it should be an integer
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 5.5, // >= 1.0 but not an integer
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        // Should fail validation
        let result = filter.validate_parameters();
        assert!(result.is_err(), "Should reject non-integer max_no_call_fraction >= 1.0");
        if let Err(e) = result {
            assert!(e.to_string().contains("integer"), "Error should mention integer requirement");
        }
    }

    #[test]
    fn test_validate_max_no_call_fraction_integer_valid() {
        // When max_no_call_fraction >= 1.0 and IS an integer, it should pass
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 5.0, // >= 1.0 and IS an integer
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        // Should pass validation
        assert!(
            filter.validate_parameters().is_ok(),
            "Should accept integer max_no_call_fraction >= 1.0"
        );
    }

    #[test]
    fn test_filter_with_rejects_output() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: Some(PathBuf::from("rejects.bam")),
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(filter.rejects.is_some());
        assert_eq!(filter.rejects.expect("rejects should be set"), PathBuf::from("rejects.bam"));
    }

    #[test]
    fn test_filter_with_stats_output() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: Some(PathBuf::from("stats.txt")),
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(filter.stats.is_some());
        assert_eq!(filter.stats.expect("stats should be set"), PathBuf::from("stats.txt"));
    }

    #[test]
    fn test_filter_multithreaded() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::new(8),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.threading.threads, Some(8));
    }

    #[test]
    fn test_filter_require_single_strand_agreement() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: true,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(filter.require_single_strand_agreement);
    }

    #[test]
    fn test_filter_by_read_not_template() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: false,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(!filter.filter_by_template);
    }

    #[test]
    fn test_filter_reverse_per_base_tags_disabled() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(!filter.reverse_per_base_tags);
    }

    #[test]
    fn test_filter_high_min_base_quality() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(30),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.min_base_quality, Some(30));
    }

    #[test]
    fn test_filter_with_min_mean_base_quality() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: Some(25.0),
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.min_mean_base_quality, Some(25.0));
    }

    #[test]
    fn test_filter_strict_error_rates() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.01],
            max_base_error_rate: vec![0.005],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.01,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.max_read_error_rate[0], 0.01);
        assert_eq!(filter.max_base_error_rate[0], 0.005);
        assert_eq!(filter.max_no_call_fraction, 0.01);
    }

    #[test]
    fn test_filter_lenient_error_rates() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.5],
            max_base_error_rate: vec![0.5],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.max_read_error_rate[0], 0.5);
        assert_eq!(filter.max_base_error_rate[0], 0.5);
        assert_eq!(filter.max_no_call_fraction, 0.5);
    }

    #[test]
    fn test_filter_high_min_reads_threshold() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![10],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.min_reads[0], 10);
    }

    #[test]
    fn test_filter_duplex_different_thresholds() {
        // Test duplex with different thresholds for CC, AB, BA
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![5, 3, 3], // CC=5, AB=3, BA=3
            max_read_error_rate: vec![0.05, 0.1, 0.1],
            max_base_error_rate: vec![0.05, 0.1, 0.1],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.min_reads.len(), 3);
        assert_eq!(filter.min_reads[0], 5); // Duplex (CC)
        assert_eq!(filter.min_reads[1], 3); // AB
        assert_eq!(filter.min_reads[2], 3); // BA
    }

    #[test]
    fn test_filter_all_optional_outputs() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: Some(20.0),
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,
            threading: ThreadingOptions::new(4),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: Some(PathBuf::from("rejects.bam")),
            stats: Some(PathBuf::from("stats.txt")),
            require_single_strand_agreement: true,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert!(filter.rejects.is_some());
        assert!(filter.stats.is_some());
        assert!(filter.require_single_strand_agreement);
        assert!(filter.min_mean_base_quality.is_some());
    }

    #[test]
    fn test_filter_zero_no_call_fraction() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(13),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.0,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.max_no_call_fraction, 0.0);
    }

    #[test]
    fn test_filter_low_min_base_quality() {
        let filter = Filter {
            io: BamIoOptions {
                input: PathBuf::from("input.bam"),
                output: PathBuf::from("output.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![3],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.2],
            min_base_quality: Some(2),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.1,
            reverse_per_base_tags: true,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        assert_eq!(filter.min_base_quality, Some(2));
    }

    // ========================================================================
    // Integration Tests for Filter Command (execute())
    // ========================================================================

    use std::io::Write;
    use tempfile::TempDir;

    /// Creates a test reference FASTA file with chr1 sequence of all A's
    fn create_test_reference(dir: &TempDir) -> PathBuf {
        let ref_path = dir.path().join("ref.fa");
        let mut file = std::fs::File::create(&ref_path).expect("failed to create reference file");
        writeln!(file, ">chr1").expect("failed to write FASTA header");
        // Create 1000bp reference of all A's
        writeln!(file, "{}", "A".repeat(1000)).expect("failed to write FASTA sequence");
        file.flush().expect("failed to flush reference file");
        ref_path
    }

    /// Convert a raw BAM record to a `RecordBuf` using the default (empty) header.
    fn to_record_buf_default(raw: RawRecord) -> RecordBuf {
        fgumi_raw_bam::raw_record_to_record_buf(&raw, &noodles::sam::Header::default())
            .expect("raw_record_to_record_buf should succeed in test")
    }

    /// Read all records from a BAM file
    fn read_bam_records(path: &std::path::Path) -> Result<Vec<RecordBuf>> {
        let mut reader = noodles::bam::io::reader::Builder.build_from_path(path)?;
        let header = reader.read_header()?;
        let mut records = Vec::new();

        for result in reader.records() {
            let record = result?;
            let record_buf = RecordBuf::try_from_alignment_record(&header, &record)?;
            records.push(record_buf);
        }

        Ok(records)
    }

    /// Helper: build a minimal chr1 noodles `Header` for use with the noodles BAM writer.
    fn test_bam_header() -> noodles::sam::Header {
        use noodles::sam::header::record::value::Map;
        use noodles::sam::header::record::value::map::ReferenceSequence;
        use std::num::NonZeroUsize;
        noodles::sam::Header::builder()
            .add_reference_sequence(
                "chr1",
                Map::<ReferenceSequence>::new(NonZeroUsize::new(1000).expect("1000 is non-zero")),
            )
            .build()
    }

    /// Write a list of raw records as a BAM file with a single chr1 reference.
    fn write_test_bam(path: &std::path::Path, records: Vec<RawRecord>) -> Result<()> {
        use noodles::bam;
        use noodles::sam::alignment::io::Write as AlignmentWrite;

        let header = test_bam_header();
        let mut writer = bam::io::writer::Builder.build_from_path(path)?;
        writer.write_header(&header)?;
        for rec in records {
            writer.write_alignment_record(&header, &to_record_buf_default(rec))?;
        }
        Ok(())
    }

    /// Creates a simplex consensus raw record for filtering tests.
    #[allow(clippy::too_many_arguments)]
    fn create_simplex_consensus_record(
        name: &str,
        pos: i32,
        bases: &[u8],
        quals: &[u8],
        read_depth: u8,
        read_error: f32,
        base_depths: &[i16],
        base_errors: &[i16],
    ) -> RawRecord {
        let n = bases.len() as u32;
        let mut b = RawSamBuilder::new();
        b.read_name(name.as_bytes())
            .ref_id(0)
            .pos(pos - 1) // 1-based → 0-based
            .mapq(60)
            .cigar_ops(&[n << 4]) // nM
            .sequence(bases)
            .qualities(quals);
        b.add_int_tag(b"cD", i32::from(read_depth));
        b.add_int_tag(b"cM", i32::from(read_depth));
        b.add_float_tag(b"cE", read_error);
        b.add_array_i16(b"cd", base_depths);
        b.add_array_i16(b"ce", base_errors);
        b.build()
    }

    /// Helper to get read name as string from a `RecordBuf`.
    fn get_read_name(record: &RecordBuf) -> Option<String> {
        record.name().map(|n| String::from_utf8_lossy(n.as_ref()).to_string())
    }

    /// Run filter command with specified number of threads
    #[allow(clippy::too_many_arguments)]
    fn run_filter_command(
        input: &std::path::Path,
        output: &std::path::Path,
        reference: &std::path::Path,
        threads: usize,
        min_reads: Vec<usize>,
        max_read_error_rate: Vec<f64>,
        max_base_error_rate: Vec<f64>,
        min_base_quality: Option<u8>,
    ) -> Result<()> {
        let cmd = Filter {
            io: BamIoOptions {
                input: input.to_path_buf(),
                output: output.to_path_buf(),
                async_reader: false,
            },
            reference: Some(reference.to_path_buf()),
            min_reads,
            max_read_error_rate,
            max_base_error_rate,
            min_base_quality,
            min_mean_base_quality: None,
            max_no_call_fraction: 0.2,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::new(threads),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")
    }

    #[test]
    fn test_filter_execute_basic_simplex() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        // Create test BAM with consensus reads
        let records = vec![
            // Read 1: High depth, low error - should pass
            create_simplex_consensus_record(
                "read1",
                100,
                b"AAAA",
                &[30, 30, 30, 30],
                10,   // depth = 10
                0.01, // error = 1%
                &[10, 10, 10, 10],
                &[0, 0, 0, 0],
            ),
            // Read 2: Low depth - should be filtered
            create_simplex_consensus_record(
                "read2",
                200,
                b"AAAA",
                &[30, 30, 30, 30],
                2, // depth = 2 (below threshold of 5)
                0.01,
                &[2, 2, 2, 2],
                &[0, 0, 0, 0],
            ),
            // Read 3: High error rate - should be filtered
            create_simplex_consensus_record(
                "read3",
                300,
                b"AAAA",
                &[30, 30, 30, 30],
                10,
                0.5, // error = 50% (above threshold of 10%)
                &[10, 10, 10, 10],
                &[5, 5, 5, 5], // 50% error at each position
            ),
        ];
        write_test_bam(&input_path, records)?;

        // Run filter
        run_filter_command(
            &input_path,
            &output_path,
            &ref_path,
            1,         // single threaded
            vec![5],   // min_reads = 5
            vec![0.1], // max_read_error_rate = 10%
            vec![0.3], // max_base_error_rate = 30%
            Some(10),  // min_base_quality = 10
        )?;

        // Verify output
        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1, "Only read1 should pass filtering");

        assert_eq!(get_read_name(&records[0]), Some("read1".to_string()));

        Ok(())
    }

    #[test]
    fn test_filter_execute_base_masking() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        // Create a read with one low-quality base that should be masked
        // Use 10 bases so 1 masked = 10% which is below max_no_call_fraction of 20%
        write_test_bam(
            &input_path,
            vec![create_simplex_consensus_record(
                "read1",
                100,
                b"AAAAAAAAAA",                            // 10 bases
                &[30, 5, 30, 30, 30, 30, 30, 30, 30, 30], // position 1 has low quality
                10,
                0.01,
                &[10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
            )],
        )?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![1],
            max_read_error_rate: vec![0.5],
            max_base_error_rate: vec![0.5],
            min_base_quality: Some(20), // Q < 20 will be masked
            min_mean_base_quality: None,
            max_no_call_fraction: 0.2, // 20% max Ns allowed
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1);

        let record = &records[0];
        let seq: Vec<u8> = record.sequence().as_ref().to_vec();
        // Base at position 1 (0-indexed) should be masked to N
        assert_eq!(seq, b"ANAAAAAAAA");

        // Quality score at masked position should be 2 (MASKED_BASE_QUAL)
        let quals: Vec<u8> = record.quality_scores().as_ref().to_vec();
        assert_eq!(quals, vec![30, 2, 30, 30, 30, 30, 30, 30, 30, 30]);

        Ok(())
    }

    #[test]
    fn test_filter_execute_single_vs_multi_threaded() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_single = dir.path().join("output_single.bam");
        let output_multi = dir.path().join("output_multi.bam");

        // Create test data with multiple reads
        let records: Vec<RawRecord> = (0..50)
            .map(|i| {
                let depth: u8 = if i % 3 == 0 { 3 } else { 10 };
                let error: f32 = if i % 5 == 0 { 0.3 } else { 0.01 };
                create_simplex_consensus_record(
                    &format!("read{i}"),
                    (i * 10 + 100) % 800 + 1,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    depth,
                    error,
                    &[depth as i16; 4],
                    &[0, 0, 0, 0],
                )
            })
            .collect();
        write_test_bam(&input_path, records)?;

        // Run with single thread
        run_filter_command(
            &input_path,
            &output_single,
            &ref_path,
            1, // single threaded
            vec![5],
            vec![0.1],
            vec![0.3],
            Some(10),
        )?;

        // Run with multiple threads
        run_filter_command(
            &input_path,
            &output_multi,
            &ref_path,
            4, // multi threaded
            vec![5],
            vec![0.1],
            vec![0.3],
            Some(10),
        )?;

        // Compare outputs - they should be identical
        let records_single = read_bam_records(&output_single)?;
        let records_multi = read_bam_records(&output_multi)?;

        assert_eq!(
            records_single.len(),
            records_multi.len(),
            "Single and multi-threaded should produce same number of records"
        );

        // Verify both outputs have the same reads (by name)
        let names_single: std::collections::HashSet<_> =
            records_single.iter().filter_map(get_read_name).collect();
        let names_multi: std::collections::HashSet<_> =
            records_multi.iter().filter_map(get_read_name).collect();

        assert_eq!(
            names_single, names_multi,
            "Single and multi-threaded should produce same reads"
        );

        Ok(())
    }

    #[test]
    fn test_filter_execute_with_rejects() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");
        let rejects_path = dir.path().join("rejects.bam");

        write_test_bam(
            &input_path,
            vec![
                // Read that passes
                create_simplex_consensus_record(
                    "pass",
                    100,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10,
                    0.01,
                    &[10, 10, 10, 10],
                    &[0, 0, 0, 0],
                ),
                // Read that fails (low depth)
                create_simplex_consensus_record(
                    "fail",
                    200,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    2,
                    0.01,
                    &[2, 2, 2, 2],
                    &[0, 0, 0, 0],
                ),
            ],
        )?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.2,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: Some(rejects_path.clone()),
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        // Verify passed reads
        let passed = read_bam_records(&output_path)?;
        assert_eq!(passed.len(), 1);
        assert_eq!(get_read_name(&passed[0]), Some("pass".to_string()));

        // Verify rejected reads
        let rejected = read_bam_records(&rejects_path)?;
        assert_eq!(rejected.len(), 1);
        assert_eq!(get_read_name(&rejected[0]), Some("fail".to_string()));

        Ok(())
    }

    #[test]
    fn test_filter_execute_max_no_call_filtering() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        write_test_bam(
            &input_path,
            vec![
                // Read 1: Low quality bases will be masked, but not too many Ns
                create_simplex_consensus_record(
                    "pass",
                    100,
                    b"AAAAAAAAAA",                            // 10 bases
                    &[30, 30, 5, 30, 30, 30, 30, 30, 30, 30], // 1 low quality = 10% masked
                    10,
                    0.01,
                    &[10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                    &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                ),
                // Read 2: Many low quality bases - will have too many Ns after masking
                create_simplex_consensus_record(
                    "fail",
                    200,
                    b"AAAAAAAAAA",                        // 10 bases
                    &[5, 5, 5, 5, 5, 30, 30, 30, 30, 30], // 5 low quality = 50% will be masked
                    10,
                    0.01,
                    &[10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                    &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                ),
            ],
        )?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![1],
            max_read_error_rate: vec![1.0],
            max_base_error_rate: vec![1.0],
            min_base_quality: Some(20), // Q < 20 will be masked
            min_mean_base_quality: None,
            max_no_call_fraction: 0.2, // Max 20% Ns allowed
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1, "Only read with <=20% Ns should pass");
        assert_eq!(get_read_name(&records[0]), Some("pass".to_string()));

        Ok(())
    }

    #[test]
    fn test_filter_execute_min_mean_base_quality() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        write_test_bam(
            &input_path,
            vec![
                // Read 1: High quality (mean = 30)
                create_simplex_consensus_record(
                    "high_qual",
                    100,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10,
                    0.01,
                    &[10, 10, 10, 10],
                    &[0, 0, 0, 0],
                ),
                // Read 2: Low quality (mean = 15)
                create_simplex_consensus_record(
                    "low_qual",
                    200,
                    b"AAAA",
                    &[15, 15, 15, 15],
                    10,
                    0.01,
                    &[10, 10, 10, 10],
                    &[0, 0, 0, 0],
                ),
            ],
        )?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![1],
            max_read_error_rate: vec![1.0],
            max_base_error_rate: vec![1.0],
            min_base_quality: Some(10),
            min_mean_base_quality: Some(20.0), // Filter reads with mean quality < 20
            max_no_call_fraction: 1.0,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1);
        assert_eq!(get_read_name(&records[0]), Some("high_qual".to_string()));

        Ok(())
    }

    /// Creates a duplex consensus raw record with AB/BA tags for filtering tests.
    #[allow(clippy::too_many_arguments)]
    fn create_duplex_consensus_record(
        name: &str,
        pos: i32,
        bases: &[u8],
        quals: &[u8],
        ab_depth: u8,
        ba_depth: u8,
        ab_error: f32,
        ba_error: f32,
        ab_base_depths: &[i16],
        ba_base_depths: &[i16],
    ) -> RawRecord {
        let n = bases.len() as u32;
        let zero_errors = vec![0i16; bases.len()];
        let mut b = RawSamBuilder::new();
        b.read_name(name.as_bytes())
            .ref_id(0)
            .pos(pos - 1) // 1-based → 0-based
            .mapq(60)
            .cigar_ops(&[n << 4]) // nM
            .sequence(bases)
            .qualities(quals);
        // Per-read duplex tags
        b.add_int_tag(b"aD", i32::from(ab_depth));
        b.add_int_tag(b"bD", i32::from(ba_depth));
        b.add_int_tag(b"aM", i32::from(ab_depth));
        b.add_int_tag(b"bM", i32::from(ba_depth));
        b.add_float_tag(b"aE", ab_error);
        b.add_float_tag(b"bE", ba_error);
        // Per-base duplex tags
        b.add_array_i16(b"ad", ab_base_depths);
        b.add_array_i16(b"bd", ba_base_depths);
        b.add_array_i16(b"ae", &zero_errors);
        b.add_array_i16(b"be", &zero_errors);
        b.build()
    }

    #[test]
    fn test_filter_execute_duplex_consensus() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        write_test_bam(
            &input_path,
            vec![
                // Duplex read 1: Both strands have good depth - should pass
                create_duplex_consensus_record(
                    "duplex_pass",
                    100,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10,
                    10, // AB and BA depths
                    0.01,
                    0.01,
                    &[10, 10, 10, 10],
                    &[10, 10, 10, 10],
                ),
                // Duplex read 2: AB strand has low depth - should fail
                create_duplex_consensus_record(
                    "duplex_fail_ab",
                    200,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    2,
                    10, // AB low, BA good
                    0.01,
                    0.01,
                    &[2, 2, 2, 2],
                    &[10, 10, 10, 10],
                ),
                // Duplex read 3: BA strand has low depth - should fail
                create_duplex_consensus_record(
                    "duplex_fail_ba",
                    300,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10,
                    2, // AB good, BA low
                    0.01,
                    0.01,
                    &[10, 10, 10, 10],
                    &[2, 2, 2, 2],
                ),
            ],
        )?;

        // Use 3-value thresholds: duplex=5, AB=5, BA=5 (must be high-to-low)
        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5, 5, 5], // duplex, AB, BA thresholds (duplex >= AB >= BA)
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1, "Only duplex_pass should pass filtering");
        assert_eq!(get_read_name(&records[0]), Some("duplex_pass".to_string()));

        Ok(())
    }

    #[test]
    fn test_filter_execute_non_template_mode() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        write_test_bam(
            &input_path,
            vec![
                // Create paired reads with same name but different qualities
                // In non-template mode, each read is filtered independently
                create_simplex_consensus_record(
                    "pair1",
                    100,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10,
                    0.01,
                    &[10, 10, 10, 10],
                    &[0, 0, 0, 0],
                ),
                // Same name but low depth - would fail individually
                create_simplex_consensus_record(
                    "pair1",
                    200,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    2, // low depth
                    0.01,
                    &[2, 2, 2, 2],
                    &[0, 0, 0, 0],
                ),
            ],
        )?;

        // With filter_by_template: false, reads are filtered independently
        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: false, // Independent filtering
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        // Only the first read should pass (depth=10 >= 5)
        // The second read fails (depth=2 < 5)
        assert_eq!(records.len(), 1);

        Ok(())
    }

    #[test]
    fn test_filter_execute_with_stats_output() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");
        let stats_path = dir.path().join("stats.txt");

        write_test_bam(
            &input_path,
            vec![
                create_simplex_consensus_record(
                    "pass1",
                    100,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10,
                    0.01,
                    &[10, 10, 10, 10],
                    &[0, 0, 0, 0],
                ),
                create_simplex_consensus_record(
                    "fail1",
                    200,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    2,
                    0.01,
                    &[2, 2, 2, 2],
                    &[0, 0, 0, 0],
                ),
            ],
        )?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: Some(stats_path.clone()),
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        // Verify stats file was created
        assert!(stats_path.exists(), "Stats file should be created");

        // Read and verify stats content
        let stats_content = std::fs::read_to_string(&stats_path)?;
        assert!(
            stats_content.contains("passed")
                || stats_content.contains("failed")
                || stats_content.contains('1'),
            "Stats should contain filtering results"
        );

        Ok(())
    }

    #[test]
    fn test_filter_execute_parallel_with_many_templates() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_single = dir.path().join("output_single.bam");
        let output_multi = dir.path().join("output_multi.bam");

        // Create enough templates to trigger batch processing
        // 125 = 2 full batches of 50 + 25 remaining (tests both batch paths)
        let records: Vec<RawRecord> = (0..125)
            .map(|i| {
                let depth: u8 = if i % 4 == 0 { 3 } else { 10 };
                let error: f32 = if i % 7 == 0 { 0.25 } else { 0.02 };
                create_simplex_consensus_record(
                    &format!("read{i}"),
                    (i * 2 + 10) % 900 + 1,
                    b"AAAAAAAA",
                    &[30, 30, 30, 30, 30, 30, 30, 30],
                    depth,
                    error,
                    &[depth as i16; 8],
                    &[0; 8],
                )
            })
            .collect();
        write_test_bam(&input_path, records)?;

        // Run single-threaded
        let cmd_single = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_single.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd_single.execute("test")?;

        // Run multi-threaded with 4 threads
        let cmd_multi = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_multi.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::new(4),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd_multi.execute("test")?;

        let records_single = read_bam_records(&output_single)?;
        let records_multi = read_bam_records(&output_multi)?;

        assert_eq!(
            records_single.len(),
            records_multi.len(),
            "Single and multi-threaded should produce same number of records"
        );

        // Both should have filtered out reads with depth < 5 or error > 0.1
        // ~31 reads have depth=3 (i%4==0), ~18 have error=0.25 (i%7==0)
        assert!(!records_single.is_empty(), "Should have some passing reads");
        assert!(records_single.len() < 125, "Should have filtered out some reads");

        Ok(())
    }

    #[test]
    fn test_filter_execute_regenerates_tags() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        // Create a read that matches the reference (all A's)
        write_test_bam(
            &input_path,
            vec![create_simplex_consensus_record(
                "read1",
                100,
                b"AAAA",
                &[30, 30, 30, 30],
                10,
                0.01,
                &[10, 10, 10, 10],
                &[0, 0, 0, 0],
            )],
        )?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![1],
            max_read_error_rate: vec![1.0],
            max_base_error_rate: vec![1.0],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 1.0,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1);

        // Tags are always regenerated when reference is provided (matching fgbio behavior)
        // (exact values depend on the reference match)
        Ok(())
    }

    #[test]
    fn test_filter_execute_reverse_per_base_tags() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        // Create a read with consensus tags
        write_test_bam(
            &input_path,
            vec![create_simplex_consensus_record(
                "read1",
                100,
                b"AAAA",
                &[30, 30, 30, 30],
                10,
                0.01,
                &[10, 10, 10, 10],
                &[0, 0, 0, 0],
            )],
        )?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![1],
            max_read_error_rate: vec![1.0],
            max_base_error_rate: vec![1.0],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 1.0,
            reverse_per_base_tags: true, // Enable tag reversal

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1);

        Ok(())
    }

    #[test]
    fn test_filter_execute_parallel_with_rejects() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");
        let rejects_path = dir.path().join("rejects.bam");

        // Create 75 reads (1 batch of 50 + 25 remaining) with some that will fail
        let records: Vec<RawRecord> = (0..75)
            .map(|i| {
                let depth: u8 = if i % 3 == 0 { 2 } else { 10 }; // 1/3 will fail
                create_simplex_consensus_record(
                    &format!("read{i}"),
                    (i * 5 + 10) % 900 + 1,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    depth,
                    0.01,
                    &[depth as i16; 4],
                    &[0; 4],
                )
            })
            .collect();
        write_test_bam(&input_path, records)?;

        // Run multi-threaded with rejects output
        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::new(4), // Multi-threaded
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: Some(rejects_path.clone()), // Enable rejects
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let passed = read_bam_records(&output_path)?;
        let rejected = read_bam_records(&rejects_path)?;

        // About 2/3 should pass (depth >= 5), 1/3 should fail (depth = 2)
        assert!(!passed.is_empty(), "Should have passing reads");
        assert!(!rejected.is_empty(), "Should have rejected reads");
        assert_eq!(passed.len() + rejected.len(), 75, "Total should match input");

        Ok(())
    }

    #[test]
    fn test_filter_execute_duplex_single_vs_multi_threaded() -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_single = dir.path().join("output_single.bam");
        let output_multi = dir.path().join("output_multi.bam");

        // Create duplex reads with varying depths
        let records: Vec<RawRecord> = (0..50)
            .map(|i| {
                let ab_depth: u8 = if i % 3 == 0 { 3 } else { 10 };
                let ba_depth: u8 = if i % 5 == 0 { 2 } else { 8 };
                create_duplex_consensus_record(
                    &format!("duplex{i}"),
                    (i * 10 + 100) % 800 + 1,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    ab_depth,
                    ba_depth,
                    0.01,
                    0.01,
                    &[ab_depth as i16; 4],
                    &[ba_depth as i16; 4],
                )
            })
            .collect();
        write_test_bam(&input_path, records)?;

        // Run single-threaded
        let cmd_single = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_single.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5, 5, 5], // duplex, AB, BA (must be high-to-low)
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd_single.execute("test")?;

        // Run multi-threaded
        let cmd_multi = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_multi.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5, 5, 5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::new(4),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd_multi.execute("test")?;

        let records_single = read_bam_records(&output_single)?;
        let records_multi = read_bam_records(&output_multi)?;

        assert_eq!(
            records_single.len(),
            records_multi.len(),
            "Single and multi-threaded duplex filtering should match"
        );

        Ok(())
    }

    #[test]
    fn test_filter_execute_non_template_mode_duplex() -> Result<()> {
        // Test duplex consensus records in non-template (single-read) mode
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");
        let rejects_path = dir.path().join("rejects.bam");

        let mut records: Vec<RawRecord> = (0..5)
            .map(|i| {
                create_duplex_consensus_record(
                    &format!("duplex_pass{i}"),
                    100 + i * 10,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10, // AB depth
                    8,  // BA depth
                    0.01,
                    0.01,
                    &[10, 10, 10, 10],
                    &[8, 8, 8, 8],
                )
            })
            .collect();
        // Create duplex reads that fail (low AB depth)
        records.extend((0..5).map(|i| {
            create_duplex_consensus_record(
                &format!("duplex_fail{i}"),
                200 + i * 10,
                b"AAAA",
                &[30, 30, 30, 30],
                2, // Low AB depth
                8,
                0.01,
                0.01,
                &[2, 2, 2, 2],
                &[8, 8, 8, 8],
            )
        }));
        write_test_bam(&input_path, records)?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5, 5, 5], // duplex, AB, BA thresholds
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: true, // Also test reverse tags in this mode

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: false, // Non-template mode
            rejects: Some(rejects_path.clone()),
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let passed = read_bam_records(&output_path)?;
        let rejected = read_bam_records(&rejects_path)?;

        assert_eq!(passed.len(), 5, "5 duplex reads should pass");
        assert_eq!(rejected.len(), 5, "5 duplex reads should fail");

        Ok(())
    }

    #[test]
    fn test_filter_execute_with_supplementary_records() -> Result<()> {
        // Test filtering with supplementary alignments
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");
        let rejects_path = dir.path().join("rejects.bam");

        // Primary read that passes
        let primary = create_simplex_consensus_record(
            "read_with_supp",
            100,
            b"AAAA",
            &[30, 30, 30, 30],
            10,
            0.01,
            &[10, 10, 10, 10],
            &[0, 0, 0, 0],
        );

        // Passing supplementary for the same template
        let supp = {
            let mut b = RawSamBuilder::new();
            b.read_name(b"read_with_supp")
                .ref_id(0)
                .pos(499)
                .mapq(60)
                .flags(flags::SUPPLEMENTARY)
                .cigar_ops(&[4 << 4]) // 4M
                .sequence(b"CCCC")
                .qualities(&[30, 30, 30, 30]);
            b.add_int_tag(b"cD", 10)
                .add_int_tag(b"cM", 10)
                .add_float_tag(b"cE", 0.01_f32)
                .add_array_i16(b"cd", &[10, 10, 10, 10])
                .add_array_i16(b"ce", &[0, 0, 0, 0]);
            b.build()
        };

        // Supplementary that would fail filtering (low depth, high error)
        let supp_fail = {
            let mut b = RawSamBuilder::new();
            b.read_name(b"read_with_supp")
                .ref_id(0)
                .pos(599)
                .mapq(60)
                .flags(flags::SUPPLEMENTARY)
                .cigar_ops(&[4 << 4]) // 4M
                .sequence(b"GGGG")
                .qualities(&[30, 30, 30, 30]);
            b.add_int_tag(b"cD", 2) // Low depth — fails
                .add_int_tag(b"cM", 2)
                .add_float_tag(b"cE", 0.5_f32) // High error — fails
                .add_array_i16(b"cd", &[2, 2, 2, 2])
                .add_array_i16(b"ce", &[0, 0, 0, 0]);
            b.build()
        };

        write_test_bam(&input_path, vec![primary, supp, supp_fail])?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: Some(rejects_path.clone()),
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let passed = read_bam_records(&output_path)?;
        let rejected = read_bam_records(&rejects_path)?;

        // Primary passes and one supplementary passes, one supplementary fails
        assert_eq!(passed.len(), 2, "Primary + passing supplementary should pass");
        assert_eq!(rejected.len(), 1, "Failing supplementary should be rejected");

        Ok(())
    }

    #[test]
    fn test_filter_execute_parallel_with_supplementary() -> Result<()> {
        // Test supplementary records in parallel template mode
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");
        let rejects_path = dir.path().join("rejects.bam");

        // Create 75 primary reads. For names ending in '0' or '5' (indices 0, 5, 10, ..., 70),
        // add a passing and a failing supplementary — 15 templates have supplementaries.
        let mut records: Vec<RawRecord> = Vec::new();
        for i in 0..75 {
            records.push(create_simplex_consensus_record(
                &format!("read{i}"),
                100 + i * 10,
                b"AAAA",
                &[30, 30, 30, 30],
                10,
                0.01,
                &[10, 10, 10, 10],
                &[0, 0, 0, 0],
            ));

            let name = format!("read{i}");
            if name.ends_with('0') || name.ends_with('5') {
                // Passing supplementary
                let supp = {
                    let mut b = RawSamBuilder::new();
                    b.read_name(name.as_bytes())
                        .ref_id(0)
                        .pos(799)
                        .mapq(60)
                        .flags(flags::SUPPLEMENTARY)
                        .cigar_ops(&[4 << 4])
                        .sequence(b"CCCC")
                        .qualities(&[30, 30, 30, 30]);
                    b.add_int_tag(b"cD", 10)
                        .add_int_tag(b"cM", 10)
                        .add_float_tag(b"cE", 0.01_f32)
                        .add_array_i16(b"cd", &[10, 10, 10, 10])
                        .add_array_i16(b"ce", &[0, 0, 0, 0]);
                    b.build()
                };
                records.push(supp);

                // Failing supplementary (low depth)
                let supp_fail = {
                    let mut b = RawSamBuilder::new();
                    b.read_name(name.as_bytes())
                        .ref_id(0)
                        .pos(899)
                        .mapq(60)
                        .flags(flags::SUPPLEMENTARY)
                        .cigar_ops(&[4 << 4])
                        .sequence(b"GGGG")
                        .qualities(&[30, 30, 30, 30]);
                    b.add_int_tag(b"cD", 2) // Fails min_reads
                        .add_int_tag(b"cM", 2)
                        .add_float_tag(b"cE", 0.5_f32)
                        .add_array_i16(b"cd", &[2, 2, 2, 2])
                        .add_array_i16(b"ce", &[0, 0, 0, 0]);
                    b.build()
                };
                records.push(supp_fail);
            }
        }

        write_test_bam(&input_path, records)?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::new(4),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: Some(rejects_path.clone()),
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let passed = read_bam_records(&output_path)?;
        let rejected = read_bam_records(&rejects_path)?;

        // 75 primaries pass + supplementaries for names ending in 0/5 (15 templates)
        // Each has 1 passing and 1 failing supplementary
        assert!(passed.len() > 75, "Should have primaries + passing supplementaries");
        assert!(!rejected.is_empty(), "Should have rejected supplementaries");

        Ok(())
    }

    #[test]
    fn test_validate_error_rate_ordering_ab_ba() {
        // Test validation of error rate ordering (AB <= BA)
        let cmd = Filter {
            io: BamIoOptions {
                input: PathBuf::from("test.bam"),
                output: PathBuf::from("out.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![5, 5, 5],
            max_read_error_rate: vec![0.1, 0.2, 0.1], // AB (0.2) > BA (0.1) - invalid!
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        let result = cmd.validate_parameters();
        assert!(result.is_err());
        assert!(
            result.unwrap_err().to_string().contains("max-read-error-rate for AB must be <= BA")
        );
    }

    #[test]
    fn test_validate_base_error_rate_ordering_ab_ba() {
        // Test validation of base error rate ordering (AB <= BA)
        let cmd = Filter {
            io: BamIoOptions {
                input: PathBuf::from("test.bam"),
                output: PathBuf::from("out.bam"),
                async_reader: false,
            },
            reference: Some(PathBuf::from("ref.fa")),
            min_reads: vec![5, 5, 5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.1, 0.3, 0.2], // AB (0.3) > BA (0.2) - invalid!
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::none(),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };

        let result = cmd.validate_parameters();
        assert!(result.is_err());
        assert!(
            result.unwrap_err().to_string().contains("max-base-error-rate for AB must be <= BA")
        );
    }

    #[test]
    fn test_filter_execute_parallel_reverse_per_base_tags() -> Result<()> {
        // Test reverse_per_base_tags in parallel template mode
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        // Create templates to trigger parallel processing
        let records: Vec<RawRecord> = (0..75)
            .map(|i| {
                create_simplex_consensus_record(
                    &format!("read{i}"),
                    100 + i * 10,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    10,
                    0.01,
                    &[10, 10, 10, 10],
                    &[0, 0, 0, 0],
                )
            })
            .collect();
        write_test_bam(&input_path, records)?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5],
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: true, // Test reverse tags in parallel mode

            threading: ThreadingOptions::new(4),
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 75);

        Ok(())
    }

    #[test]
    fn test_filter_execute_duplex_parallel_processing() -> Result<()> {
        // Test duplex records in parallel template processing
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        let records: Vec<RawRecord> = (0..75)
            .map(|i| {
                let ab_depth: u8 = if i % 3 == 0 { 3 } else { 10 }; // Some will fail
                let ba_depth: u8 = if i % 5 == 0 { 2 } else { 8 };
                create_duplex_consensus_record(
                    &format!("duplex{i}"),
                    100 + i * 10,
                    b"AAAA",
                    &[30, 30, 30, 30],
                    ab_depth,
                    ba_depth,
                    0.01,
                    0.01,
                    &[ab_depth as i16; 4],
                    &[ba_depth as i16; 4],
                )
            })
            .collect();
        write_test_bam(&input_path, records)?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path.clone(),
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path.clone()),
            min_reads: vec![5, 5, 5], // duplex, AB, BA thresholds
            max_read_error_rate: vec![0.1],
            max_base_error_rate: vec![0.3],
            min_base_quality: Some(10),
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading: ThreadingOptions::new(4), // Multi-threaded
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        // Some should pass, some should fail based on depth
        assert!(
            !records.is_empty() && records.len() < 75,
            "Some duplex records should pass, some fail"
        );

        Ok(())
    }

    /// Parameterized test for all threading modes.
    ///
    /// Tests:
    /// - `None`: Pipeline with default (1 thread)
    /// - `Some(1)`: Pipeline with 1 thread
    /// - `Some(2)`: Pipeline with 2 threads
    #[rstest]
    #[case::default(ThreadingOptions::none())]
    #[case::pipeline_1(ThreadingOptions::new(1))]
    #[case::pipeline_2(ThreadingOptions::new(2))]
    fn test_threading_modes(#[case] threading: ThreadingOptions) -> Result<()> {
        let dir = TempDir::new()?;
        let ref_path = create_test_reference(&dir);
        let input_path = dir.path().join("input.bam");
        let output_path = dir.path().join("output.bam");

        // Create simple test data
        let records = vec![create_simplex_consensus_record(
            "read1",
            100,
            b"AAAAAAAAAA",
            &[30, 30, 30, 30, 30, 30, 30, 30, 30, 30],
            10,
            0.01,
            &[10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
            &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
        )];
        write_test_bam(&input_path, records)?;

        let cmd = Filter {
            io: BamIoOptions {
                input: input_path,
                output: output_path.clone(),
                async_reader: false,
            },
            reference: Some(ref_path),
            min_reads: vec![1],
            max_read_error_rate: vec![0.5],
            max_base_error_rate: vec![0.5],
            min_base_quality: None,
            min_mean_base_quality: None,
            max_no_call_fraction: 0.5,
            reverse_per_base_tags: false,

            threading,
            compression: CompressionOptions { compression_level: 1 },
            filter_by_template: true,
            rejects: None,
            stats: None,
            require_single_strand_agreement: false,
            min_methylation_depth: vec![],
            require_strand_methylation_agreement: false,
            min_conversion_fraction: None,
            methylation_mode: None,
            scheduler_opts: SchedulerOptions::default(),
            queue_memory: QueueMemoryOptions::default(),
        };
        cmd.execute("test")?;

        let records = read_bam_records(&output_path)?;
        assert_eq!(records.len(), 1, "Should have 1 record");

        Ok(())
    }

    // ========== Tests for max_no_call_fraction count mode ==========

    #[test]
    fn test_check_filters_raw_no_call_fraction_mode() -> Result<()> {
        // Test fraction mode (threshold < 1.0) with max_no_call_fraction = 0.2
        // Build a record with 10 bases, 2 Ns => 0.2 fraction => should pass
        use crate::consensus_filter::FilterThresholds;

        let raw_record = {
            let mut b = RawSamBuilder::new();
            b.sequence(b"AANNTTGGCC") // 10 bases, 2 Ns
                .qualities(&[30, 30, 30, 30, 30, 30, 30, 30, 30, 30]);
            b.add_int_tag(b"cD", 10).add_float_tag(b"cE", 0.01_f32);
            b.build()
        };
        let raw = raw_record.into_inner();

        let aux = crate::sort::bam_fields::aux_data_slice(&raw);
        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.1 };

        // Fraction mode: 2/10 = 0.2, threshold = 0.2 => should pass
        let result = Filter::check_filters_raw(&raw, aux, &thresholds, None, 0.2)?;
        assert!(result, "Should pass with 2/10 Ns and threshold 0.2");

        // Fraction mode: 2/10 = 0.2, threshold = 0.19 => should fail
        let result = Filter::check_filters_raw(&raw, aux, &thresholds, None, 0.19)?;
        assert!(!result, "Should fail with 2/10 Ns and threshold 0.19");

        Ok(())
    }

    #[test]
    fn test_check_filters_raw_no_call_count_mode_pass() -> Result<()> {
        // Test count mode (threshold >= 1.0) with max_no_call_fraction = 5.0
        // Build a record with 10 bases, 3 Ns => 3 < 5 => should pass
        use crate::consensus_filter::FilterThresholds;

        let raw_record = {
            let mut b = RawSamBuilder::new();
            b.sequence(b"AANNNTTGGC") // 10 bases, 3 Ns
                .qualities(&[30, 30, 30, 30, 30, 30, 30, 30, 30, 30]);
            b.add_int_tag(b"cD", 10).add_float_tag(b"cE", 0.01_f32);
            b.build()
        };
        let raw = raw_record.into_inner();

        let aux = crate::sort::bam_fields::aux_data_slice(&raw);
        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.1 };

        // Count mode: 3 Ns <= 5.0 threshold => should pass
        let result = Filter::check_filters_raw(&raw, aux, &thresholds, None, 5.0)?;
        assert!(result, "Should pass with 3 Ns and count threshold 5.0");

        // Count mode: 3 Ns <= 3.0 threshold => should pass (boundary)
        let result = Filter::check_filters_raw(&raw, aux, &thresholds, None, 3.0)?;
        assert!(result, "Should pass with 3 Ns and count threshold 3.0 (boundary)");

        Ok(())
    }

    #[test]
    fn test_check_filters_raw_no_call_count_mode_fail() -> Result<()> {
        // Test count mode (threshold >= 1.0) with max_no_call_fraction = 2.0
        // Build a record with 10 bases, 3 Ns => 3 > 2 => should fail
        use crate::consensus_filter::FilterThresholds;

        let raw_record = {
            let mut b = RawSamBuilder::new();
            b.sequence(b"AANNNTTGGC") // 10 bases, 3 Ns
                .qualities(&[30, 30, 30, 30, 30, 30, 30, 30, 30, 30]);
            b.add_int_tag(b"cD", 10).add_float_tag(b"cE", 0.01_f32);
            b.build()
        };
        let raw = raw_record.into_inner();

        let aux = crate::sort::bam_fields::aux_data_slice(&raw);
        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.1 };

        // Count mode: 3 Ns > 2.0 threshold => should fail
        let result = Filter::check_filters_raw(&raw, aux, &thresholds, None, 2.0)?;
        assert!(!result, "Should fail with 3 Ns and count threshold 2.0");

        Ok(())
    }

    #[test]
    fn test_check_duplex_filters_raw_no_call_count_mode() -> Result<()> {
        // Test duplex filtering with count mode for no-call counting
        use crate::consensus_filter::FilterThresholds;

        let raw_record = {
            let mut b = RawSamBuilder::new();
            b.sequence(b"AANNNTTGGC") // 10 bases, 3 Ns
                .qualities(&[30, 30, 30, 30, 30, 30, 30, 30, 30, 30]);
            // Add required duplex tags: aD, bD, aE, bE, aM, bM
            b.add_int_tag(b"aD", 10)
                .add_int_tag(b"bD", 8)
                .add_float_tag(b"aE", 0.01_f32)
                .add_float_tag(b"bE", 0.01_f32)
                .add_int_tag(b"aM", 10)
                .add_int_tag(b"bM", 8);
            b.build()
        };
        let raw = raw_record.into_inner();

        let aux = crate::sort::bam_fields::aux_data_slice(&raw);
        let thresholds =
            FilterThresholds { min_reads: 5, max_read_error_rate: 0.1, max_base_error_rate: 0.1 };

        // Count mode: 3 Ns <= 5.0 threshold => should pass
        let result = Filter::check_duplex_filters_raw(
            &raw,
            aux,
            &thresholds,
            &thresholds,
            &thresholds,
            None,
            5.0,
        )?;
        assert!(result, "Should pass with 3 Ns and count threshold 5.0");

        // Count mode: 3 Ns > 2.0 threshold => should fail
        let result = Filter::check_duplex_filters_raw(
            &raw,
            aux,
            &thresholds,
            &thresholds,
            &thresholds,
            None,
            2.0,
        )?;
        assert!(!result, "Should fail with 3 Ns and count threshold 2.0");

        Ok(())
    }

    /// Verifies that `process_record_raw` works correctly when `reference` is `None`.
    /// The function should still mask bases and check filters without attempting
    /// to regenerate alignment tags.
    #[test]
    fn test_process_record_raw_no_reference() -> Result<()> {
        // Build an unmapped record with consensus tags
        let raw_record = {
            let mut b = RawSamBuilder::new();
            b.read_name(b"unmapped_read")
                .flags(flags::UNMAPPED)
                .sequence(b"ACGTACGT")
                .qualities(&[35, 35, 35, 35, 35, 35, 35, 35]);
            b.add_array_u16(b"cd", &[10; 8]).add_array_u16(b"ce", &[0; 8]);
            b.build()
        };
        let mut raw = raw_record;

        let header = Header::default();
        let config = FilterConfig::new(&[1], &[0.025], &[0.1], None, None, 0.2);

        let (bases_masked, pass) = Filter::process_record_raw(
            &mut raw,
            &config,
            None, // no reference
            &header,
            false, // no tag reversal
            None,  // no min base quality
            false, // no single-strand agreement
            None,  // no min mean base quality
            0.2,   // max no-call fraction
            None,  // no methylation depth thresholds
            false, // no strand methylation agreement
            None,  // no min conversion fraction
            fgumi_consensus::MethylationMode::Disabled,
            &[], // no ref names
        )?;

        assert_eq!(bases_masked, 0, "No bases should be masked with good tags");
        assert!(pass, "Unmapped record should pass filtering without reference");

        Ok(())
    }

    /// Verifies that `process_record_raw` fails when `reference` is `None`
    /// and the record is mapped, since NM/UQ/MD tags would become stale.
    #[test]
    fn test_process_record_raw_no_reference_mapped_fails() -> Result<()> {
        let mut raw = {
            let mut b = RawSamBuilder::new();
            b.read_name(b"mapped_read")
                .ref_id(0)
                .pos(99)
                .mapq(60)
                .cigar_ops(&[8 << 4]) // 8M
                .sequence(b"ACGTACGT")
                .qualities(&[35; 8]);
            b.add_array_u16(b"cd", &[10; 8]).add_array_u16(b"ce", &[0; 8]);
            b.build()
        };

        let header = test_bam_header();
        let config = FilterConfig::new(&[1], &[0.025], &[0.1], None, None, 0.2);

        let result = Filter::process_record_raw(
            &mut raw,
            &config,
            None, // no reference
            &header,
            false,
            None,
            false,
            None,
            0.2,
            None,  // no methylation depth thresholds
            false, // no strand methylation agreement
            None,  // no min conversion fraction
            fgumi_consensus::MethylationMode::Disabled,
            &[], // no ref names
        );

        assert!(result.is_err(), "Should fail for mapped reads without reference");
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains("--ref is required"),
            "Error should mention --ref requirement, got: {err_msg}"
        );

        Ok(())
    }

    #[rstest]
    // --reverse-per-base-tags (default false)
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1"], false)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--reverse-per-base-tags"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--reverse-per-base-tags", "true"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--reverse-per-base-tags", "false"], false)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--reverse-per-base-tags=true"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--reverse-per-base-tags=false"], false)]
    fn test_reverse_per_base_tags_parsing(#[case] args: &[&str], #[case] expected: bool) {
        let cmd = Filter::try_parse_from(args).expect("valid CLI args should parse");
        assert_eq!(cmd.reverse_per_base_tags, expected);
    }

    #[rstest]
    // --filter-by-template (default true)
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--filter-by-template"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--filter-by-template", "true"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--filter-by-template", "false"], false)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--filter-by-template=true"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--filter-by-template=false"], false)]
    fn test_filter_by_template_parsing(#[case] args: &[&str], #[case] expected: bool) {
        let cmd = Filter::try_parse_from(args).expect("valid CLI args should parse");
        assert_eq!(cmd.filter_by_template, expected);
    }

    #[rstest]
    // --require-single-strand-agreement (default false)
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1"], false)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--require-single-strand-agreement"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--require-single-strand-agreement", "true"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--require-single-strand-agreement", "false"], false)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--require-single-strand-agreement=true"], true)]
    #[case(&["filter", "-i", "in.bam", "-o", "out.bam", "-M", "1", "--require-single-strand-agreement=false"], false)]
    fn test_require_single_strand_agreement_parsing(#[case] args: &[&str], #[case] expected: bool) {
        let cmd = Filter::try_parse_from(args).expect("valid CLI args should parse");
        assert_eq!(cmd.require_single_strand_agreement, expected);
    }
}