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
2 changes: 1 addition & 1 deletion frag-merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ tht mean they will be reasonably 'lead like'.
## Find similar molecules

```
./screen.py --smiles 'CC(=O)NC1=CN=CC=C1C' 'CC(NC(=O)C)c1cccc(Cl)c1' --input frag-merge/mols.smi --output frag-merge/screened.smi --metric tversky --descriptor morgan2 --nbits 1024 --interval 10000 --sim-index 5 --threshold 0.3
./screen.py --smiles 'CC(=O)NC1=CN=CC=C1C' 'CC(NC(=O)C)c1cccc(Cl)c1' -i frag-merge/mols.smi -o frag-merge/screened.smi --metric tversky --descriptor morgan2 --nbits 1024 --interval 10000 --sim-index 5 --threshold 0.3
...
...
2021-11-06T13:47:09+00:00 # INFO -EVENT- Processed 4560000 records, 4362 hits
Expand Down
4 changes: 2 additions & 2 deletions screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,9 @@ def execute(query_smis,
def main():

# Examples:
# python screen.py --smiles 'O=C(Nc1ccc(Cl)cc1)c1ccccn1' --input data/10000.smi --delimiter tab -o foo.smi\
# python screen.py --smiles 'O=C(Nc1ccc(Cl)cc1)c1ccccn1' -i data/10000.smi --delimiter tab -o foo.smi\
# --descriptor rdkit -m tanimoto
# python screen.py --queries-file data/10.smi --input data/10000.smi --delimiter tab --id-column 1 -o foo.smi \
# python screen.py --queries-file data/10.smi -i data/10000.smi --delimiter tab --id-column 1 -o foo.smi \
# --descriptor rdkit -m tanimoto --queries-delimiter tab --threshold 0.4

parser = argparse.ArgumentParser(description='screen')
Expand Down
Loading