Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Dec 21, 2024
1 parent bff743a commit 438191e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/python/tests/test_manysearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -1432,13 +1432,13 @@ def test_bug_550(runtmp):
# due to a problem with the way Signature::name() behaved in sourmash
# before r0.18.0.
# see https://github.com/sourmash-bio/sourmash_plugin_branchwater/issues/550
fa_file = get_test_data('short.fa')
sig_out = runtmp.output('short.sig')
mf_out = runtmp.output('short.mf.csv')
csv_out = runtmp.output('out.csv')

runtmp.sourmash('sketch', 'dna', fa_file, '-o', sig_out)
runtmp.sourmash('sig', 'collect', '-F', 'csv', sig_out, '-o', mf_out)
runtmp.sourmash('scripts', 'manysearch', mf_out, mf_out, '-o', csv_out)
fa_file = get_test_data("short.fa")
sig_out = runtmp.output("short.sig")
mf_out = runtmp.output("short.mf.csv")
csv_out = runtmp.output("out.csv")

runtmp.sourmash("sketch", "dna", fa_file, "-o", sig_out)
runtmp.sourmash("sig", "collect", "-F", "csv", sig_out, "-o", mf_out)
runtmp.sourmash("scripts", "manysearch", mf_out, mf_out, "-o", csv_out)

assert os.path.exists(csv_out)

0 comments on commit 438191e

Please sign in to comment.