bio-similarity-searching
Performs molecular similarity searches using Tanimoto coefficient on fingerprints via RDKit. Finds structurally similar compounds using ECFP or MACCS keys and clusters molecules by structural similarity using Butina clustering. Use when finding analogs of a query compound or clustering chemical libraries.
Best use case
bio-similarity-searching is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Performs molecular similarity searches using Tanimoto coefficient on fingerprints via RDKit. Finds structurally similar compounds using ECFP or MACCS keys and clusters molecules by structural similarity using Butina clustering. Use when finding analogs of a query compound or clustering chemical libraries.
Teams using bio-similarity-searching should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/bio-similarity-searching/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How bio-similarity-searching Compares
| Feature / Agent | bio-similarity-searching | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Performs molecular similarity searches using Tanimoto coefficient on fingerprints via RDKit. Finds structurally similar compounds using ECFP or MACCS keys and clusters molecules by structural similarity using Butina clustering. Use when finding analogs of a query compound or clustering chemical libraries.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
## Version Compatibility
Reference examples tested with: RDKit 2024.03+
Before using code patterns, verify installed versions match. If versions differ:
- Python: `pip show <package>` then `help(module.function)` to check signatures
If code throws ImportError, AttributeError, or TypeError, introspect the installed
package and adapt the example to match the actual API rather than retrying.
# Similarity Searching
**"Find compounds similar to my query molecule"** → Compute pairwise Tanimoto similarity on molecular fingerprints to rank a library by structural resemblance to a query, or cluster compounds by chemical similarity using Butina clustering.
- Python: `DataStructs.TanimotoSimilarity()`, `Butina.ClusterData()` (RDKit)
Find structurally similar molecules and cluster compound libraries.
## Tanimoto Similarity
```python
from rdkit import Chem, DataStructs
from rdkit.Chem import AllChem
# Generate fingerprints
mol1 = Chem.MolFromSmiles('CCO')
mol2 = Chem.MolFromSmiles('CCCO')
fp1 = AllChem.GetMorganFingerprintAsBitVect(mol1, radius=2, nBits=2048)
fp2 = AllChem.GetMorganFingerprintAsBitVect(mol2, radius=2, nBits=2048)
# Tanimoto similarity (0-1)
similarity = DataStructs.TanimotoSimilarity(fp1, fp2)
print(f'Tanimoto similarity: {similarity:.3f}')
```
## Similarity Thresholds
| Threshold | Interpretation |
|-----------|----------------|
| > 0.85 | Very similar (likely same scaffold) |
| > 0.70 | Similar (likely related series) |
| > 0.50 | Moderate similarity |
| < 0.50 | Dissimilar |
## Search Library Against Query
**Goal:** Find molecules structurally similar to a query compound within a library.
**Approach:** Generate fingerprints for the query and each library molecule, compute Tanimoto similarity, and return hits above a chosen threshold sorted by similarity.
```python
from rdkit import Chem, DataStructs
from rdkit.Chem import AllChem
def find_similar_molecules(query_smiles, library, threshold=0.7, fp_type='ecfp4'):
'''
Find molecules similar to query in library.
Args:
query_smiles: Query molecule SMILES
library: List of (smiles, name) tuples or SMILES list
threshold: Minimum Tanimoto similarity
fp_type: 'ecfp4', 'ecfp6', or 'maccs'
'''
query = Chem.MolFromSmiles(query_smiles)
if query is None:
raise ValueError('Invalid query SMILES')
# Generate query fingerprint
if fp_type == 'ecfp4':
query_fp = AllChem.GetMorganFingerprintAsBitVect(query, 2, nBits=2048)
elif fp_type == 'ecfp6':
query_fp = AllChem.GetMorganFingerprintAsBitVect(query, 3, nBits=2048)
else: # maccs
from rdkit.Chem import MACCSkeys
query_fp = MACCSkeys.GenMACCSKeys(query)
# Search library
hits = []
for item in library:
smiles = item[0] if isinstance(item, tuple) else item
name = item[1] if isinstance(item, tuple) and len(item) > 1 else smiles
mol = Chem.MolFromSmiles(smiles)
if mol is None:
continue
if fp_type == 'ecfp4':
lib_fp = AllChem.GetMorganFingerprintAsBitVect(mol, 2, nBits=2048)
elif fp_type == 'ecfp6':
lib_fp = AllChem.GetMorganFingerprintAsBitVect(mol, 3, nBits=2048)
else:
lib_fp = MACCSkeys.GenMACCSKeys(mol)
sim = DataStructs.TanimotoSimilarity(query_fp, lib_fp)
if sim >= threshold:
hits.append((smiles, name, sim))
return sorted(hits, key=lambda x: x[2], reverse=True)
```
## Bulk Similarity Search
```python
from rdkit import DataStructs
def bulk_similarity_search(query_fp, library_fps, threshold=0.7):
'''
Fast similarity search using bulk operations.
Args:
query_fp: Query fingerprint
library_fps: List of library fingerprints
threshold: Minimum similarity
'''
# BulkTanimotoSimilarity is faster for large libraries
similarities = DataStructs.BulkTanimotoSimilarity(query_fp, library_fps)
hits = [(i, sim) for i, sim in enumerate(similarities) if sim >= threshold]
return sorted(hits, key=lambda x: x[1], reverse=True)
```
## Butina Clustering
**Goal:** Group a compound library into clusters of structurally similar molecules.
**Approach:** Compute an all-vs-all Tanimoto distance matrix from fingerprints and apply Taylor-Butina clustering with a distance cutoff.
```python
from rdkit import Chem
from rdkit.ML.Cluster import Butina
def cluster_molecules(molecules, cutoff=0.4):
'''
Cluster molecules by Tanimoto similarity using Taylor-Butina algorithm.
Args:
molecules: List of RDKit mol objects
cutoff: Distance cutoff (1 - similarity threshold)
cutoff=0.4 means similarity threshold of 0.6
'''
# Generate fingerprints
fps = [AllChem.GetMorganFingerprintAsBitVect(m, 2, nBits=2048)
for m in molecules if m is not None]
# Calculate distance matrix (upper triangle)
n = len(fps)
dists = []
for i in range(1, n):
sims = DataStructs.BulkTanimotoSimilarity(fps[i], fps[:i])
dists.extend([1 - s for s in sims])
# Cluster
clusters = Butina.ClusterData(dists, n, cutoff, isDistData=True)
return clusters
# Usage
# clusters = cluster_molecules(molecules, cutoff=0.3) # 70% similarity
# print(f'Found {len(clusters)} clusters')
# for i, cluster in enumerate(clusters[:5]):
# print(f'Cluster {i}: {len(cluster)} molecules')
```
## Maximum Common Substructure
**Goal:** Identify the largest shared substructure across a set of molecules.
**Approach:** Use FindMCS with ring-matching constraints and a timeout to find the maximum common substructure as a SMARTS pattern.
```python
from rdkit.Chem import rdFMCS
def find_mcs(molecules, timeout=60):
'''Find maximum common substructure.'''
mcs = rdFMCS.FindMCS(
molecules,
timeout=timeout,
matchValences=False,
ringMatchesRingOnly=True
)
return mcs.smartsString, mcs.numAtoms, mcs.numBonds
# Get MCS as molecule for visualization
mcs_smarts, n_atoms, n_bonds = find_mcs(molecules)
mcs_mol = Chem.MolFromSmarts(mcs_smarts)
```
## Related Skills
- molecular-descriptors - Generate fingerprints for similarity
- substructure-search - Pattern-based searching
- molecular-io - Load molecules for searchingRelated Skills
bio-multi-omics-similarity-network
Similarity Network Fusion (SNF) for patient stratification using multi-omics data. Integrates multiple data types into a unified patient similarity network. Use when performing patient stratification or integrating multi-omics data into unified similarity networks.
zinc-database
Access ZINC (230M+ purchasable compounds). Search by ZINC ID/SMILES, similarity searches, 3D-ready structures for docking, analog discovery, for virtual screening and drug discovery.
zarr-python
Chunked N-D arrays for cloud storage. Compressed arrays, parallel I/O, S3/GCS integration, NumPy/Dask/Xarray compatible, for large-scale scientific computing pipelines.
xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
writing-skills
Use when creating new skills, editing existing skills, or verifying skills work before deployment
writing-plans
Use when you have a spec or requirements for a multi-step task, before touching code
wikipedia-search
Search and fetch structured content from Wikipedia using the MediaWiki API for reliable, encyclopedic information
wellally-tech
Integrate digital health data sources (Apple Health, Fitbit, Oura Ring) and connect to WellAlly.tech knowledge base. Import external health device data, standardize to local format, and recommend relevant WellAlly.tech knowledge base articles based on health data. Support generic CSV/JSON import, provide intelligent article recommendations, and help users better manage personal health data.
weightloss-analyzer
分析减肥数据、计算代谢率、追踪能量缺口、管理减肥阶段
<!--
# COPYRIGHT NOTICE
verification-before-completion
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
vcf-annotator
Annotate VCF variants with VEP, ClinVar, gnomAD frequencies, and ancestry-aware context. Generates prioritised variant reports.