Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MRG] add tests for multiple rounds of downsampling in prefetch and gather #1956

Merged
merged 1 commit into from
Apr 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions tests/test_prefetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
import csv
import pytest
import glob
import random

import sourmash_tst_utils as utils
import sourmash
from sourmash_tst_utils import SourmashCommandFailed
from sourmash import signature


def test_prefetch_basic(runtmp, linear_gather):
Expand Down Expand Up @@ -527,6 +529,47 @@ def test_prefetch_downsample_scaled(runtmp, linear_gather):
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 = sourmash.load_one_signature(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 = signature.SourmashSignature(mh_bins[i], name=f"bin{i}")

with open(runtmp.output(f"bin{i}.sig"), "wb") as fp:
sourmash.save_signatures([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

Expand Down
40 changes: 40 additions & 0 deletions tests/test_sourmash.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import pytest
import sys
import zipfile
import random

import sourmash_tst_utils as utils

Expand Down Expand Up @@ -3886,6 +3887,45 @@ def test_gather_query_downsample_explicit(runtmp, linear_gather, prefetch_gather
'NC_003197.2' in runtmp.last_result.out))


def test_gather_downsample_multiple(runtmp, linear_gather, prefetch_gather):
# test multiple different downsamplings in gather 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 = sourmash.load_one_signature(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 = signature.SourmashSignature(mh_bins[i], name=f"bin{i}")

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

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

runtmp.sourmash('gather', '-k', '31', linear_gather, prefetch_gather, query_sig, *gathersigs)

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

assert "WARNING: final scaled was 1000, vs query scaled of 500" in runtmp.last_result.out


def test_gather_with_picklist(runtmp, linear_gather, prefetch_gather):
# test 'sourmash gather' with picklists
gcf_sigs = glob.glob(utils.get_test_data('gather/GCF*.sig'))
Expand Down