Skip to content
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
1 change: 0 additions & 1 deletion tests/some_mols_zinc.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
c1ccc(c(c1)C(=O)OCC[C@@H]2CCCC[NH2+]2)N ZINC000000000638_1
Cc1ccccc1OC[C@@H](C[NH+]2CCC=CC2)O ZINC000000000794_1
COc1cc(cc(c1OC)OC)/C=C/C(=O)N ZINC000000001157_1
c1cc(=O)[nH]cc1C(=O)N2CCCCC2 ZINC000000003546_1
Expand Down
4 changes: 2 additions & 2 deletions tests/test_molbloom.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_fpr():
if molbloom.buy(rs, catalog="zinc-instock-mini"):
fp += 1
count += 1
assert count > 1000
assert count > 1000 and fp / count < 0.1
print("False positive rate for instock mini {:f} (N={})".format(fp / count, count))
Comment thread
whitead marked this conversation as resolved.

count = 0
Expand All @@ -77,7 +77,7 @@ def test_fpr():
if molbloom.buy(rs, catalog="zinc20"):
fp += 1
count += 1
assert count > 1000 and fn < 5
assert count > 1000 and fn == 0
print("False positive rate for zinc all is {:f} (N={})".format(fp / count, count))


Expand Down