File: test_prefetch.py

package info (click to toggle)
sourmash 4.9.4-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 54,688 kB
  • sloc: python: 59,380; ansic: 332; makefile: 277; sh: 6
file content (1117 lines) | stat: -rw-r--r-- 32,946 bytes parent folder | download | duplicates (2)
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
"""
Tests for `sourmash prefetch` command-line and API functionality.
"""

import os
import csv
import gzip
import pytest
import glob
import random
from sourmash.search import PrefetchResult

import sourmash_tst_utils as utils
import sourmash
from sourmash_tst_utils import SourmashCommandFailed
from sourmash import SourmashSignature, sourmash_args
from sourmash.signature import (
    save_signatures_to_json,
    load_signatures_from_json,
    load_one_signature_from_json,
)


def approx_eq(val1, val2):
    if val1 == "":
        return val1 == val2
    return round(float(val1), 3) == round(float(val2), 3)


def test_prefetch_basic(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    c.run_sourmash("prefetch", "-k", "31", sig47, sig63, sig2, sig47, linear_gather)
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0

    assert (
        "WARNING: no output(s) specified! Nothing will be saved from this prefetch!"
        in c.last_result.err
    )
    assert "selecting specified query k=31" in c.last_result.err
    assert (
        "loaded query: NC_009665.1 Shewanella baltica... (k=31, DNA)"
        in c.last_result.err
    )
    assert (
        "query sketch has scaled=1000; will be dynamically downsampled as needed"
        in c.last_result.err
    )

    err = c.last_result.err
    assert "loaded 5 total signatures from 3 locations." in err
    assert "after selecting signatures compatible with search, 3 remain." in err

    assert "total of 2 matching signatures." in c.last_result.err
    assert (
        "of 5177 distinct query hashes, 5177 were found in matches above threshold."
        in c.last_result.err
    )
    assert "a total of 0 query hashes remain unmatched." in c.last_result.err


def test_prefetch_select_query_ksize(runtmp, linear_gather):
    # test prefetch where query and subject db both have multiple ksizes
    c = runtmp

    ss = utils.get_test_data("GCF_000005845.2_ASM584v2_genomic.fna.gz.sig")

    c.run_sourmash("prefetch", ss, ss, linear_gather)
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert (
        "of 4476 distinct query hashes, 4476 were found in matches above threshold."
        in c.last_result.err
    )


def test_prefetch_subject_scaled_is_larger(runtmp, linear_gather):
    # test prefetch where subject scaled is larger
    c = runtmp

    # make a query sketch with scaled=1000
    fa = utils.get_test_data("genome-s10.fa.gz")
    c.run_sourmash("sketch", "dna", fa, "-o", "query.sig")
    assert os.path.exists(runtmp.output("query.sig"))

    # this has a scaled of 10000, from same genome:
    against1 = utils.get_test_data("scaled/genome-s10.fa.gz.sig")
    against2 = utils.get_test_data("scaled/all.sbt.zip")
    against3 = utils.get_test_data("scaled/all.lca.json")

    # run against large scaled, then small (self)
    c.run_sourmash(
        "prefetch",
        "query.sig",
        against1,
        against2,
        against3,
        "query.sig",
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert "total of 8 matching signatures." in c.last_result.err
    assert (
        "of 48 distinct query hashes, 48 were found in matches above threshold."
        in c.last_result.err
    )
    assert (
        "final scaled value (max across query and all matches) is 10000"
        in c.last_result.err
    )


def test_prefetch_subject_scaled_is_larger_outsigs(runtmp, linear_gather):
    # test prefetch where subject scaled is larger -- output sigs
    c = runtmp

    # make a query sketch with scaled=1000
    fa = utils.get_test_data("genome-s10.fa.gz")
    c.run_sourmash("sketch", "dna", fa, "-o", "query.sig")
    assert os.path.exists(runtmp.output("query.sig"))

    # this has a scaled of 10000, from same genome:
    against1 = utils.get_test_data("scaled/genome-s10.fa.gz.sig")
    against2 = utils.get_test_data("scaled/all.sbt.zip")
    against3 = utils.get_test_data("scaled/all.lca.json")

    # run against large scaled, then small (self)
    c.run_sourmash(
        "prefetch",
        "query.sig",
        against1,
        against2,
        against3,
        "query.sig",
        linear_gather,
        "--save-matches",
        "matches.sig",
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert "total of 8 matching signatures." in c.last_result.err
    assert (
        "of 48 distinct query hashes, 48 were found in matches above threshold."
        in c.last_result.err
    )
    assert (
        "final scaled value (max across query and all matches) is 10000"
        in c.last_result.err
    )

    # make sure non-downsampled sketches were saved.
    matches = sourmash.load_file_as_signatures(runtmp.output("matches.sig"))
    scaled_vals = set([match.minhash.scaled for match in matches])
    assert 1000 in scaled_vals
    assert 10000 in scaled_vals
    assert len(scaled_vals) == 2


def test_prefetch_query_abund(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch w/abund query
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("track_abund/47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    c.run_sourmash("prefetch", "-k", "31", sig47, sig63, sig2, sig47, linear_gather)
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0

    assert (
        "WARNING: no output(s) specified! Nothing will be saved from this prefetch!"
        in c.last_result.err
    )
    assert "selecting specified query k=31" in c.last_result.err
    assert (
        "loaded query: NC_009665.1 Shewanella baltica... (k=31, DNA)"
        in c.last_result.err
    )
    assert (
        "query sketch has scaled=1000; will be dynamically downsampled as needed"
        in c.last_result.err
    )

    assert "total of 2 matching signatures." in c.last_result.err
    assert (
        "of 5177 distinct query hashes, 5177 were found in matches above threshold."
        in c.last_result.err
    )
    assert "a total of 0 query hashes remain unmatched." in c.last_result.err


def test_prefetch_subj_abund(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch w/abund signature.
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("track_abund/63.fa.sig")

    c.run_sourmash("prefetch", "-k", "31", sig47, sig63, sig2, sig47, linear_gather)
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0

    assert (
        "WARNING: no output(s) specified! Nothing will be saved from this prefetch!"
        in c.last_result.err
    )
    assert "selecting specified query k=31" in c.last_result.err
    assert (
        "loaded query: NC_009665.1 Shewanella baltica... (k=31, DNA)"
        in c.last_result.err
    )
    assert (
        "query sketch has scaled=1000; will be dynamically downsampled as needed"
        in c.last_result.err
    )

    assert "total of 2 matching signatures." in c.last_result.err
    assert (
        "of 5177 distinct query hashes, 5177 were found in matches above threshold."
        in c.last_result.err
    )
    assert "a total of 0 query hashes remain unmatched." in c.last_result.err


def test_prefetch_csv_out(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with CSV output
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    csvout = c.output("out.csv")

    c.run_sourmash(
        "prefetch", "-k", "31", sig47, sig63, sig2, sig47, "-o", csvout, linear_gather
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(csvout)

    expected_intersect_bp = [2529000, 5177000]
    with open(csvout, newline="") as fp:
        r = csv.DictReader(fp)
        for row, expected in zip(r, expected_intersect_bp):
            print(row)
            assert int(row["intersect_bp"]) == expected


def test_prefetch_csv_gz_out(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with CSV output to a .gz file
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    csvout = c.output("out.csv.gz")

    c.run_sourmash(
        "prefetch", "-k", "31", sig47, sig63, sig2, sig47, "-o", csvout, linear_gather
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(csvout)

    expected_intersect_bp = [2529000, 5177000]
    with gzip.open(csvout, "rt", newline="") as fp:
        r = csv.DictReader(fp)
        for row, expected in zip(r, expected_intersect_bp):
            print(row)
            assert int(row["intersect_bp"]) == expected


def test_prefetch_matches(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with --save-matches
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    matches_out = c.output("matches.sig")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        sig2,
        sig47,
        "--save-matches",
        matches_out,
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(matches_out)

    sigs = sourmash.load_file_as_index(matches_out)

    expected_matches = [sig63, sig47]
    for match, expected in zip(sigs.signatures(), expected_matches):
        ss = load_one_signature_from_json(expected, ksize=31)
        assert match == ss


def test_prefetch_matches_to_dir(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with --save-matches to a directory
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")
    ss63 = load_one_signature_from_json(sig63)
    ss47 = load_one_signature_from_json(sig47)

    matches_out = c.output("matches_dir/")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        sig2,
        sig47,
        "--save-matches",
        matches_out,
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(matches_out)
    assert os.path.isdir(matches_out)

    sigs = sourmash.load_file_as_signatures(matches_out)

    match_sigs = list(sigs)
    assert ss63 in match_sigs
    assert ss47 in match_sigs
    assert len(match_sigs) == 2


def test_prefetch_matches_to_sig_gz(runtmp, linear_gather):
    c = runtmp

    import gzip

    # test a basic prefetch, with --save-matches to a sig.gz file
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")
    ss63 = load_one_signature_from_json(sig63)
    ss47 = load_one_signature_from_json(sig47)

    matches_out = c.output("matches.sig.gz")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        sig2,
        sig47,
        "--save-matches",
        matches_out,
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(matches_out)
    assert os.path.isfile(matches_out)

    with gzip.open(matches_out, "rt") as fp:
        # can we read this as a gz file?
        fp.read()

    sigs = sourmash.load_file_as_signatures(matches_out)

    match_sigs = list(sigs)
    assert ss63 in match_sigs
    assert ss47 in match_sigs
    assert len(match_sigs) == 2


def test_prefetch_matches_to_zip(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with --save-matches to a zipfile
    import zipfile

    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")
    ss63 = load_one_signature_from_json(sig63)
    ss47 = load_one_signature_from_json(sig47)

    matches_out = c.output("matches.zip")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        sig2,
        sig47,
        "--save-matches",
        matches_out,
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(matches_out)
    assert os.path.isfile(matches_out)

    with zipfile.ZipFile(matches_out, "r") as fp:
        # can we read this as a .zip file?
        for zi in fp.infolist():
            pass

    sigs = sourmash.load_file_as_signatures(matches_out)

    match_sigs = list(sigs)
    assert ss63 in match_sigs
    assert ss47 in match_sigs
    assert len(match_sigs) == 2


def test_prefetch_matching_hashes(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with --save-matches
    utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    matches_out = c.output("matches.sig")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        "--save-matching-hashes",
        matches_out,
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(matches_out)

    ss47 = load_one_signature_from_json(sig47, ksize=31)
    ss63 = load_one_signature_from_json(sig63, ksize=31)
    matches = set(ss47.minhash.hashes) & set(ss63.minhash.hashes)

    intersect = ss47.minhash.copy_and_clear()
    intersect.add_many(matches)

    ss = load_one_signature_from_json(matches_out)
    assert ss.name.endswith("-known")
    assert ss.minhash == intersect


def test_prefetch_nomatch_hashes(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with --save-matches
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    nomatch_out = c.output("unmatched_hashes.sig")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        sig2,
        "--save-unmatched-hashes",
        nomatch_out,
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(nomatch_out)

    ss47 = load_one_signature_from_json(sig47, ksize=31)
    ss63 = load_one_signature_from_json(sig63, ksize=31)

    remain = ss47.minhash.to_mutable()
    remain.remove_many(ss63.minhash.hashes)

    ss = load_one_signature_from_json(nomatch_out)
    assert ss.name.endswith("-unknown")
    assert ss.minhash == remain


def test_prefetch_no_num_query(runtmp, linear_gather):
    c = runtmp

    # can't do prefetch with num signatures for query
    sig47 = utils.get_test_data("num/47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    with pytest.raises(SourmashCommandFailed):
        c.run_sourmash("prefetch", "-k", "31", sig47, sig63, sig47, linear_gather)

    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status != 0


def test_prefetch_no_num_subj(runtmp, linear_gather):
    c = runtmp

    # can't do prefetch with num signatures for query; no matches!
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("num/63.fa.sig")

    with pytest.raises(SourmashCommandFailed):
        c.run_sourmash("prefetch", "-k", "31", sig47, sig63, linear_gather)

    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status != 0
    assert (
        "ERROR in prefetch: after picklists and patterns, no signatures to search!?"
        in c.last_result.err
    )


def test_prefetch_db_fromfile(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    from_file = c.output("from-list.txt")

    with open(from_file, "w") as fp:
        print(sig63, file=fp)
        print(sig2, file=fp)
        print(sig47, file=fp)

    c.run_sourmash(
        "prefetch", "-k", "31", sig47, linear_gather, "--db-from-file", from_file
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0

    assert (
        "WARNING: no output(s) specified! Nothing will be saved from this prefetch!"
        in c.last_result.err
    )
    assert "selecting specified query k=31" in c.last_result.err
    assert (
        "loaded query: NC_009665.1 Shewanella baltica... (k=31, DNA)"
        in c.last_result.err
    )
    assert (
        "query sketch has scaled=1000; will be dynamically downsampled as needed"
        in c.last_result.err
    )

    assert "total of 2 matching signatures." in c.last_result.err
    assert (
        "of 5177 distinct query hashes, 5177 were found in matches above threshold."
        in c.last_result.err
    )
    assert "a total of 0 query hashes remain unmatched." in c.last_result.err


def test_prefetch_no_db(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch with no databases/signatures
    sig47 = utils.get_test_data("47.fa.sig")

    with pytest.raises(SourmashCommandFailed):
        c.run_sourmash("prefetch", "-k", "31", sig47, linear_gather)
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status != 0
    assert "ERROR: no databases or signatures to search!?" in c.last_result.err


def test_prefetch_check_scaled_bounds_negative(runtmp, linear_gather):
    c = runtmp

    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    with pytest.raises(SourmashCommandFailed) as exc:
        c.run_sourmash(
            "prefetch",
            "-k",
            "31",
            sig47,
            sig63,
            sig2,
            sig47,
            "--scaled",
            "-5",
            linear_gather,
        )

    assert "ERROR: scaled value must be positive" in str(exc.value)


def test_prefetch_check_scaled_bounds_less_than_minimum(runtmp, linear_gather):
    c = runtmp

    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    with pytest.raises(SourmashCommandFailed) as exc:
        c.run_sourmash(
            "prefetch",
            "-k",
            "31",
            sig47,
            sig63,
            sig2,
            sig47,
            "--scaled",
            "50",
            linear_gather,
        )

    assert "WARNING: scaled value should be >= 100. Continuing anyway." in str(
        exc.value
    )


def test_prefetch_check_scaled_bounds_more_than_maximum(runtmp, linear_gather):
    c = runtmp

    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    with pytest.raises(SourmashCommandFailed) as exc:
        c.run_sourmash(
            "prefetch",
            "-k",
            "31",
            sig47,
            sig63,
            sig2,
            sig47,
            "--scaled",
            "1e9",
            linear_gather,
        )

    assert "WARNING: scaled value should be <= 1e6. Continuing anyway." in str(
        exc.value
    )


def test_prefetch_downsample_scaled(runtmp, linear_gather):
    c = runtmp

    # test --scaled
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        sig2,
        sig47,
        "--scaled",
        "1e5",
        linear_gather,
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert "downsampling query from scaled=1000 to 10000" in c.last_result.err


def test_prefetch_downsample_multiple(runtmp, linear_gather):
    # test multiple different downsamplings in prefetch code
    query_sig = utils.get_test_data("GCF_000006945.2-s500.sig")

    # load in the hashes and do split them into four bins, randomly.
    ss = load_one_signature_from_json(query_sig)
    hashes = list(ss.minhash.hashes)

    random.seed(a=1)  # fix seed so test is reproducible
    random.shuffle(hashes)

    # split into 4 bins:
    mh_bins = [ss.minhash.copy_and_clear() for i in range(4)]
    for i, hashval in enumerate(hashes):
        mh_bins[i % 4].add_hash(hashval)

    # downsample with different scaleds; initial scaled is 500, note.
    mh_bins[0] = mh_bins[0].downsample(scaled=750)
    mh_bins[1] = mh_bins[1].downsample(scaled=600)
    mh_bins[2] = mh_bins[2].downsample(scaled=1000)
    mh_bins[3] = mh_bins[3].downsample(scaled=650)

    gathersigs = []
    for i in range(4):
        binsig = SourmashSignature(mh_bins[i], name=f"bin{i}")

        with open(runtmp.output(f"bin{i}.sig"), "wb") as fp:
            save_signatures_to_json([binsig], fp)

        gathersigs.append(f"bin{i}.sig")

    runtmp.sourmash("prefetch", linear_gather, query_sig, *gathersigs)

    print(runtmp.last_result.out)
    print(runtmp.last_result.err)

    assert (
        "final scaled value (max across query and all matches) is 1000"
        in runtmp.last_result.err
    )


def test_prefetch_empty(runtmp, linear_gather):
    c = runtmp

    # test --scaled
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    with pytest.raises(SourmashCommandFailed):
        c.run_sourmash(
            "prefetch",
            "-k",
            "31",
            sig47,
            sig63,
            sig2,
            sig47,
            "--scaled",
            "1e9",
            linear_gather,
        )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status != 0
    assert "no query hashes!? exiting." in c.last_result.err


def test_prefetch_basic_many_sigs(runtmp, linear_gather):
    c = runtmp

    # test what happens with many (and duplicate) signatures
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    manysigs = [sig63, sig2, sig47] * 5

    c.run_sourmash("prefetch", "-k", "31", sig47, *manysigs, linear_gather)
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert "total of 10 matching signatures so far." in c.last_result.err
    assert "total of 10 matching signatures." in c.last_result.err
    assert (
        "of 5177 distinct query hashes, 5177 were found in matches above threshold."
        in c.last_result.err
    )
    assert "a total of 0 query hashes remain unmatched." in c.last_result.err


def test_prefetch_with_picklist(runtmp):
    # test 'sourmash prefetch' with picklists
    gcf_sigs = glob.glob(utils.get_test_data("gather/GCF*.sig"))
    metag_sig = utils.get_test_data("gather/combined.sig")
    picklist = utils.get_test_data("gather/thermotoga-picklist.csv")

    runtmp.sourmash(
        "prefetch", metag_sig, *gcf_sigs, "--picklist", f"{picklist}:md5:md5"
    )

    err = runtmp.last_result.err
    print(err)
    assert "for given picklist, found 3 matches to 9 distinct values" in err
    # these are the different ksizes
    assert "WARNING: 6 missing picklist values." in err

    out = runtmp.last_result.out
    print(out)

    assert "total of 3 matching signatures." in err
    assert (
        "of 1466 distinct query hashes, 453 were found in matches above threshold."
        in err
    )
    assert "a total of 1013 query hashes remain unmatched." in err


def test_prefetch_with_picklist_exclude(runtmp):
    # test 'sourmash prefetch' with picklists, exclude
    gcf_sigs = glob.glob(utils.get_test_data("gather/GCF*.sig"))
    metag_sig = utils.get_test_data("gather/combined.sig")
    picklist = utils.get_test_data("gather/thermotoga-picklist.csv")

    runtmp.sourmash(
        "prefetch", metag_sig, *gcf_sigs, "--picklist", f"{picklist}:md5:md5:exclude"
    )

    err = runtmp.last_result.err
    print(err)
    assert "for given picklist, found 9 matches by excluding 9 distinct values" in err
    # these are the different ksizes

    out = runtmp.last_result.out
    print(out)

    assert "total of 9 matching signatures." in err
    assert (
        "of 1466 distinct query hashes, 1013 were found in matches above threshold."
        in err
    )
    assert "a total of 453 query hashes remain unmatched." in err


def test_prefetch_with_pattern_include(runtmp):
    # test 'sourmash prefetch' with --include-db-pattern
    gcf_sigs = glob.glob(utils.get_test_data("gather/GCF*.sig"))
    metag_sig = utils.get_test_data("gather/combined.sig")

    runtmp.sourmash("prefetch", metag_sig, *gcf_sigs, "--include", "thermotoga")

    err = runtmp.last_result.err
    print(err)

    out = runtmp.last_result.out
    print(out)

    assert "total of 3 matching signatures." in err
    assert (
        "of 1466 distinct query hashes, 453 were found in matches above threshold."
        in err
    )
    assert "a total of 1013 query hashes remain unmatched." in err


def test_prefetch_with_pattern_exclude(runtmp):
    # test 'sourmash prefetch' with --exclude-db-pattern
    gcf_sigs = glob.glob(utils.get_test_data("gather/GCF*.sig"))
    metag_sig = utils.get_test_data("gather/combined.sig")

    runtmp.sourmash("prefetch", metag_sig, *gcf_sigs, "--exclude", "thermotoga")

    err = runtmp.last_result.err
    print(err)

    out = runtmp.last_result.out
    print(out)

    assert "total of 9 matching signatures." in err
    assert (
        "of 1466 distinct query hashes, 1013 were found in matches above threshold."
        in err
    )
    assert "a total of 453 query hashes remain unmatched." in err


def test_prefetch_output_with_abundance(runtmp, prefetch_gather, linear_gather):
    c = runtmp
    query = utils.get_test_data("gather-abund/reads-s10x10-s11.sig")
    against = utils.get_test_data("gather-abund/genome-s10.fa.gz.sig")

    c.run_sourmash(
        "prefetch",
        linear_gather,
        query,
        against,
        "--save-matching-hashes",
        c.output("match-hash.sig"),
        "--save-unmatched-hashes",
        c.output("nomatch-hash.sig"),
    )

    print(c.last_result.out)

    assert os.path.exists(c.output("match-hash.sig"))
    ss = list(sourmash.load_file_as_signatures(c.output("match-hash.sig")))[0]
    assert ss.minhash.track_abundance

    assert os.path.exists(c.output("nomatch-hash.sig"))
    ss = list(sourmash.load_file_as_signatures(c.output("nomatch-hash.sig")))[0]
    assert ss.minhash.track_abundance


def test_prefetch_ani_csv_out(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with CSV output
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    csvout = c.output("out.csv")

    c.run_sourmash(
        "prefetch", "-k", "31", sig47, sig63, sig2, sig47, "-o", csvout, linear_gather
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(csvout)

    prefetch_result_names = PrefetchResult.prefetch_write_cols
    exp1 = {
        "q_ani": "0.9771552502238963",
        "m_ani": "0.9767860811200507",
        "ac_ani": "0.9769706656719734",
        "mc_ani": "0.9771552502238963",
        "pfn": "False",
    }
    exp2 = {
        "q_ani": "1.0",
        "m_ani": "1.0",
        "ac_ani": "1.0",
        "mc_ani": "1.0",
        "pfn": "False",
    }
    expected_ani_vals = [exp1, exp2]
    with open(csvout, newline="") as fp:
        r = csv.DictReader(fp)
        for row, expected in zip(r, expected_ani_vals):
            print(row)
            assert prefetch_result_names == list(row.keys())
            assert approx_eq(row["query_containment_ani"], expected["q_ani"])
            assert approx_eq(row["match_containment_ani"], expected["m_ani"])
            assert approx_eq(row["max_containment_ani"], expected["mc_ani"])
            assert approx_eq(row["average_containment_ani"], expected["ac_ani"])
            assert row["potential_false_negative"] == expected["pfn"]


def test_prefetch_ani_csv_out_estimate_ci(runtmp, linear_gather):
    c = runtmp

    # test a basic prefetch, with CSV output
    sig2 = utils.get_test_data("2.fa.sig")
    sig47 = utils.get_test_data("47.fa.sig")
    sig63 = utils.get_test_data("63.fa.sig")

    csvout = c.output("out.csv")

    c.run_sourmash(
        "prefetch",
        "-k",
        "31",
        sig47,
        sig63,
        sig2,
        sig47,
        "-o",
        csvout,
        linear_gather,
        "--estimate-ani-ci",
    )
    print(c.last_result.status)
    print(c.last_result.out)
    print(c.last_result.err)

    assert c.last_result.status == 0
    assert os.path.exists(csvout)
    prefetch_result_names_ci = PrefetchResult.prefetch_write_cols_ci

    exp1 = {
        "q_ani": "0.9771552502238963",
        "m_ani": "0.9767860811200507",
        "q_ani_low": "0.9762537506990911",
        "q_ani_high": "0.9780336875157754",
        "m_ani_low": "0.9758801604653301",
        "m_ani_high": "0.9776692390768575",
        "ac_ani": "0.9769706656719734",
        "mc_ani": "0.9771552502238963",
        "pfn": "False",
    }
    exp2 = {
        "q_ani": "1.0",
        "m_ani": "1.0",
        "q_ani_low": "1.0",
        "q_ani_high": "1.0",
        "m_ani_low": "1.0",
        "m_ani_high": "1.0",
        "ac_ani": "1.0",
        "mc_ani": "1.0",
        "pfn": "False",
    }

    expected_ani_vals = [exp1, exp2]
    with open(csvout, newline="") as fp:
        r = csv.DictReader(fp)
        for row, expected in zip(r, expected_ani_vals):
            print(row)
            assert prefetch_result_names_ci == list(row.keys())
            assert approx_eq(row["query_containment_ani"], expected["q_ani"])
            assert approx_eq(row["query_containment_ani_low"], expected["q_ani_low"])
            assert approx_eq(row["query_containment_ani_high"], expected["q_ani_high"])
            assert approx_eq(row["match_containment_ani"], expected["m_ani"])
            assert approx_eq(row["match_containment_ani_low"], expected["m_ani_low"])
            assert approx_eq(row["match_containment_ani_high"], expected["m_ani_high"])
            assert approx_eq(row["max_containment_ani"], expected["mc_ani"])
            assert approx_eq(row["average_containment_ani"], expected["ac_ani"])
            assert row["potential_false_negative"] == expected["pfn"]


def test_prefetch_ani_containment_asymmetry(runtmp):
    # test contained_by asymmetries, viz #2215
    query_sig = utils.get_test_data("47.fa.sig")
    merged_sig = utils.get_test_data("47-63-merge.sig")

    runtmp.sourmash("prefetch", query_sig, merged_sig, "-o", "query-in-merged.csv")
    runtmp.sourmash("prefetch", merged_sig, query_sig, "-o", "merged-in-query.csv")

    with sourmash_args.FileInputCSV(runtmp.output("query-in-merged.csv")) as r:
        query_in_merged = list(r)[0]

    with sourmash_args.FileInputCSV(runtmp.output("merged-in-query.csv")) as r:
        merged_in_query = list(r)[0]

    assert query_in_merged["query_containment_ani"] == "1.0"
    assert query_in_merged["match_containment_ani"] == "0.9865155060423993"
    assert query_in_merged["average_containment_ani"] == "0.9932577530211997"

    assert merged_in_query["match_containment_ani"] == "1.0"
    assert merged_in_query["query_containment_ani"] == "0.9865155060423993"
    assert merged_in_query["average_containment_ani"] == "0.9932577530211997"