Prerequisites
uv: Read the uv skill and follow its Setup instructions to ensure
uv is installed and on PATH.
User Notification: If LICENSE_NOTIFICATION.txt does not already exist in
this skill directory then (1) prominently notify the user to check the terms
at https://www.ebi.ac.uk/jdispatcher/sss/ncbiblast and
https://colabfold.com, then (2) create the file recording the notification
text and timestamp.
.env file: Make sure the .env file exists in your home directory.
Create one if it does not exist.
USER_EMAIL (optional but recommended): Recommended by the EBI for
BLAST job tracking, but the skill works without it. If the variable is
missing from .env, do NOT ask the user to paste it into the chat (this
would leak the value into the agent's context). Instead, give the user this
command — substituting ENV_FILE with the resolved literal path to the
.env file:
printf "Enter contact email: " && read email && echo "USER_EMAIL=$email" >> "ENV_FILE" && echo "Saved."
The scripts load credentials automatically via dotenv. NEVER read,
print, or inspect the .env file or its variables (e.g. no cat, grep,
echo, printenv, or os.environ.get on keys). Credentials must stay out
of the agent's context.
Goal
Take a user-provided amino acid sequence (or a path to a .fasta file), search
for sequence homologues using the fastest available method, generate a
Markdown-formatted table of the top hits, interpret key alignment metrics,
summarize the inferred protein functions, and save results locally for future
programmatic analysis.
Core Rules
- Strict Validation: For BLAST, only use database codes listed in the
table below.
- No Hallucinations: If a script throws an error or returns no hits,
inform the user clearly. Do NOT invent sequence homologues.
- Do Not Parse Output Files: Do not parse the JSON, a3m, or any other raw
output files. Rely on the generated
.md file for your summary. The JSON
and other outputs are for subsequent tool use only.
- Always State the Method: Every report must clearly state whether the
search used the quick MMseqs2 (ColabFold API) or the slower EBI BLAST
method.
- Notification: If this skill is used, ensure this is mentioned in the
output. Explicitly state that the corresponding program (MMSEQS2 or EBI
BLAST) and Sequence Databases were used.
Search Method Selection
Choose the search method based on the user's request:
If the user says "quick search" or "fast search", no specific method
requested / general homologue search, of if you are unsure: Run MMseqs2 (fast,
default) using mmseqs2_search.py
If MMseqs2 fails (exit code 2: RATELIMIT or API error) or User explicitly
requests "BLAST" or a specific BLAST database (e.g. uniprotkb_swissprot,
pdb, uniprotkb_human): Run BLAST using uniprot_blast.py
Instructions
Identify the query from the user. It can be a raw sequence string (e.g.,
"MKVLY...") or a path to a local file (e.g., "./data/sequence.fasta").
Determine the search method using the list above.
Path A: MMseqs2 Search (Default)
Generate File Names: Generate descriptive output file names based on the
input (e.g., proteinA_mmseqs2.json and proteinA_mmseqs2.md).
Execute the MMseqs2 script:
uv run scripts/mmseqs2_search.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json>
uv run scripts/mmseqs2_search.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json> --include-mgnify
The script will query the ColabFold MMseqs2 API and poll for completion.
This is typically fast (under 2 minutes).
If the script exits with code 2 (API failure, rate limit), automatically
fall back to BLAST (Path B below). Inform the user: "MMseqs2 search failed,
falling back to BLAST."
Read the Results: Open and read the generated .md file.
Path B: BLAST Search (Explicit or Fallback)
Database Selection & Validation: Determine the most appropriate
database(s) based on the user's prompt.
- Consult the Available BLAST Databases table below.
- If the user specifies a taxonomic group (e.g., "Find homologues in
microbes"), select the corresponding
Database Code (e.g.,
uniprotkb_bacteria).
- If the user explicitly requests curated hits, use
uniprotkb_swissprot.
- If no specific database is requested, do not specify
--databases.
- Validation: Ensure the database code exactly matches an entry in the
table. If the user requests a database not on the list, do not
proceed and provide the allowed list.
Generate File Names: (e.g., proteinA_ebi_blast.json and
proteinA_ebi_blast.md).
This API requires the user email address to be set in the USER_EMAIL
environment variable for inclusion in request header.
Execute the BLAST script:
uv run scripts/uniprot_blast.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json>
uv run scripts/uniprot_blast.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json> --databases <db1,db2>
The script will query the EBI BLAST API and poll the server. Note: This
can take up to 15 minutes; wait patiently.
Read the Results: Open and read the generated .md file.
Common Steps (Both Methods)
- Interpret the Metrics: Summarize the top 3 to 5 sequence homologues.
Assess match quality using:
- Q-Cov (Query Coverage): High percentages mean the match covers most
of the query sequence.
- E-value: Lower E-values (e.g.,
1e-50) indicate extreme statistical
significance.
- Seq Identity: Provides evolutionary context (highly conserved vs.
distant homologue).
- Perform Functional Analysis:
- If the results table includes protein descriptions, analyze them
directly: report specific protein names/functions of the top homologues
and summarize the variety of functions, domains, or protein families
found.
- If the results contain only UniProt accession IDs without descriptions
(common with MMseqs2), look up the protein names and functions for the
top 3–5 hits using the uniprot-database skill or other appropriate
methods before summarizing.
- Inform the user of both newly created files (
.json and .md) and their
locations.
Available BLAST Databases
uniprotkb – UniProt Knowledgebase (The UniProt Knowledgebase includes
UniProtKB/Swiss-Prot and UniProtKB/TrEMBL): The UniProt Knowledgebase
(UniProtKB) is the central access point for extensive curated protein
information, including function, classification, and cross-references.
Search UniProtKB to retrieve "everything that is known" about a particular
sequence
uniprotkb_swissprot – UniProtKB/Swiss-Prot (The manually annotated section
of UniProtKB): The manually curated subsection of the UniProt Knowledgebase
uniprotkb_swissprotsv – UniProtKB/Swiss-Prot isoforms (The manually
annotated isoforms of UniProtKB/Swiss-Prot): The isoform sequences for the
manually curated subsection of the UniProt Knowledgebase
uniprotkb_reference_proteomes – UniProtKB Reference Proteomes: Taxonomic
subset of the UniProtKB Reference Proteomes
uniprotkb_trembl – UniProtKB/TrEMBL (The automatically annotated section
of UniProtKB): Subsection of the UniProt Knowledgebase derived from ENA
Sequence (formerly EMBL-Bank) coding sequence translations with annotation
produced by an automated process
uniprotkb_refprotswissprot – UniProtKB Reference Proteomes plus
Swiss-Prot: UniProtKB Reference Proteomes plus Swiss-Prot
uniprotkb_archaea – UniProtKB Archaea: Taxonomic subset of the UniProt
Knowledgebase for archaea
uniprotkb_arthropoda – UniProtKB Arthropoda: Taxonomic subset of the
UniProt Knowledgebase for arthropoda
uniprotkb_bacteria – UniProtKB Bacteria: Taxonomic subset of the UniProt
Knowledgebase for bacteria
uniprotkb_complete_microbial_proteomes – UniProtKB Complete Microbial
Proteomes: Taxonomic subset of the UniProt Knowledgebase for complete
microbial proteomes
uniprotkb_eukaryota – UniProtKB Eukaryota: Taxonomic subset of the UniProt
Knowledgebase for eukaryota
uniprotkb_fungi – UniProtKB Fungi: Taxonomic subset of the UniProt
Knowledgebase for fungi
uniprotkb_human – UniProtKB Human: Taxonomic subset of the UniProt
Knowledgebase for human
uniprotkb_mammals – UniProtKB Mammals: Taxonomic subset of the UniProt
Knowledgebase for mammals
uniprotkb_nematoda – UniProtKB Nematoda: Taxonomic subset of the UniProt
Knowledgebase for nematoda
uniprotkb_rodents – UniProtKB Rodents: Taxonomic subset of the UniProt
Knowledgebase for rodents
uniprotkb_vertebrates – UniProtKB Vertebrates: Taxonomic subset of the
UniProt Knowledgebase for vertebrates
uniprotkb_viridiplantae – UniProtKB Viridiplantae: Taxonomic subset of the
UniProt Knowledgebase for viridiplantae
uniprotkb_viruses – UniProtKB Viruses: Taxonomic subset of the UniProt
Knowledgebase for viruses
uniprotkb_enzyme – UniProtKB Enzyme: Taxonomic subset of the UniProt
Knowledgebase for enzymes
uniprotkb_covid19 – UniProtKB COVID-19: Taxonomic subset of the UniProt
Knowledgebase for COVID-19
uniref100 – UniProt Clusters 100% (UniRef100): The UniProt Reference
Clusters (UniRef) containing sequences which are 100% identical.
uniref90 – UniProt Clusters 90% (UniRef90): The UniProt Reference Clusters
(UniRef) containing sequences which are 90% identical.
uniref50 – UniProt Clusters 50% (UniRef50): The UniProt Reference Clusters
(UniRef) containing sequences which are 50% identical.
pdb – Protein Structure Sequences (PDBe protein structure sequences):
Protein sequences from structures described in the Brookhaven Protein Data
Bank (PDB)
1---2name: protein-sequence-similarity-search3description: Searches for homologous protein sequences using MMseqs2 (fast, default) or BLAST (comprehensive, fallback). Trigger this whenever the user provides a protein sequence or FASTA file and asks to find homologues, sequence matches, or wants to infer protein function based on sequence similarity, but not when the user wants to infer protein function based on structural similarity.4---56## Prerequisites781. **`uv`**: Read the `uv` skill and follow its Setup instructions to ensure9 `uv` is installed and on PATH.102. **User Notification**: If LICENSE_NOTIFICATION.txt does not already exist in11 this skill directory then (1) prominently notify the user to check the terms12 at https://www.ebi.ac.uk/jdispatcher/sss/ncbiblast and13 https://colabfold.com, then (2) create the file recording the notification14 text and timestamp.153. **`.env` file**: Make sure the `.env` file exists in your home directory.16 Create one if it does not exist.174. **`USER_EMAIL`** (optional but recommended): Recommended by the EBI for18 BLAST job tracking, but the skill works without it. If the variable is19 missing from `.env`, do NOT ask the user to paste it into the chat (this20 would leak the value into the agent's context). Instead, give the user this21 command — **substituting `ENV_FILE` with the resolved literal path to the22 `.env` file**:2324 ```bash25 printf "Enter contact email: " && read email && echo "USER_EMAIL=$email" >> "ENV_FILE" && echo "Saved."26 ```2728 The scripts load credentials automatically via `dotenv`. **NEVER** read,29 print, or inspect the `.env` file or its variables (e.g. no `cat`, `grep`,30 `echo`, `printenv`, or `os.environ.get` on keys). Credentials must stay out31 of the agent's context.3233## Goal3435Take a user-provided amino acid sequence (or a path to a `.fasta` file), search36for sequence homologues using the fastest available method, generate a37Markdown-formatted table of the top hits, interpret key alignment metrics,38summarize the inferred protein functions, and save results locally for future39programmatic analysis.4041## Core Rules4243- **Strict Validation**: For BLAST, only use database codes listed in the44 table below.45- **No Hallucinations**: If a script throws an error or returns no hits,46 inform the user clearly. Do NOT invent sequence homologues.47- **Do Not Parse Output Files**: Do not parse the JSON, a3m, or any other raw48 output files. Rely on the generated `.md` file for your summary. The JSON49 and other outputs are for subsequent tool use only.50- **Always State the Method**: Every report must clearly state whether the51 search used the quick MMseqs2 (ColabFold API) or the slower EBI BLAST52 method.53- **Notification**: If this skill is used, ensure this is mentioned in the54 output. Explicitly state that the corresponding program (MMSEQS2 or EBI55 BLAST) and Sequence Databases were used.5657## Search Method Selection5859Choose the search method based on the user's request:6061If the **user says "quick search" or "fast search"**, **no specific method62requested / general homologue search**, of if you are unsure: Run MMseqs2 (fast,63default) using `mmseqs2_search.py`6465If **MMseqs2 fails (exit code 2: RATELIMIT or API error)** or **User explicitly66requests "BLAST"** or **a specific BLAST database** (e.g. `uniprotkb_swissprot`,67`pdb`, `uniprotkb_human`): Run BLAST using `uniprot_blast.py`6869## Instructions70711. Identify the query from the user. It can be a raw sequence string (e.g.,72 "MKVLY...") or a path to a local file (e.g., "./data/sequence.fasta").73742. **Determine the search method** using the list above.7576### Path A: MMseqs2 Search (Default)77781. **Generate File Names:** Generate descriptive output file names based on the79 input (e.g., `proteinA_mmseqs2.json` and `proteinA_mmseqs2.md`).802. Execute the MMseqs2 script:8182 * **Default:**8384 ```85 uv run scripts/mmseqs2_search.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json>86 ```8788 * **With mgnify:**8990 ```91 uv run scripts/mmseqs2_search.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json> --include-mgnify92 ```93943. The script will query the ColabFold MMseqs2 API and poll for completion.95 This is typically fast (under 2 minutes).96974. **If the script exits with code 2** (API failure, rate limit), automatically98 fall back to BLAST (Path B below). Inform the user: "MMseqs2 search failed,99 falling back to BLAST."1001015. **Read the Results:** Open and read the generated `.md` file.102103### Path B: BLAST Search (Explicit or Fallback)1041051. **Database Selection & Validation:** Determine the most appropriate106 database(s) based on the user's prompt.107 * Consult the **Available BLAST Databases** table below.108 * If the user specifies a taxonomic group (e.g., "Find homologues in109 microbes"), select the corresponding `Database Code` (e.g.,110 `uniprotkb_bacteria`).111 * If the user explicitly requests curated hits, use `uniprotkb_swissprot`.112 * If no specific database is requested, do not specify `--databases`.113 * **Validation:** Ensure the database code exactly matches an entry in the114 table. If the user requests a database not on the list, **do not115 proceed** and provide the allowed list.1162. **Generate File Names:** (e.g., `proteinA_ebi_blast.json` and117 `proteinA_ebi_blast.md`).1183. This API requires the user email address to be set in the USER_EMAIL119 environment variable for inclusion in request header.1204. Execute the BLAST script:121122 * **Default (uniprotkb):**123124 ```125 uv run scripts/uniprot_blast.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json>126 ```127128 * **Custom database:**129130 ```131 uv run scripts/uniprot_blast.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json> --databases <db1,db2>132 ```1331345. The script will query the EBI BLAST API and poll the server. **Note:** This135 can take up to 15 minutes; wait patiently.1361376. **Read the Results:** Open and read the generated `.md` file.138139### Common Steps (Both Methods)1401411. **Interpret the Metrics:** Summarize the top 3 to 5 sequence homologues.142 Assess match quality using:143 * **Q-Cov (Query Coverage):** High percentages mean the match covers most144 of the query sequence.145 * **E-value:** Lower E-values (e.g., `1e-50`) indicate extreme statistical146 significance.147 * **Seq Identity:** Provides evolutionary context (highly conserved vs.148 distant homologue).1492. **Perform Functional Analysis:**150 * If the results table includes protein descriptions, analyze them151 directly: report specific protein names/functions of the top homologues152 and summarize the variety of functions, domains, or protein families153 found.154 * If the results contain only UniProt accession IDs without descriptions155 (common with MMseqs2), look up the protein names and functions for the156 top 3–5 hits using the **uniprot-database** skill or other appropriate157 methods before summarizing.1583. Inform the user of both newly created files (`.json` and `.md`) and their159 locations.160161## Available BLAST Databases162163* `uniprotkb` – UniProt Knowledgebase (The UniProt Knowledgebase includes164 UniProtKB/Swiss-Prot and UniProtKB/TrEMBL): The UniProt Knowledgebase165 (UniProtKB) is the central access point for extensive curated protein166 information, including function, classification, and cross-references.167 Search UniProtKB to retrieve "everything that is known" about a particular168 sequence169* `uniprotkb_swissprot` – UniProtKB/Swiss-Prot (The manually annotated section170 of UniProtKB): The manually curated subsection of the UniProt Knowledgebase171* `uniprotkb_swissprotsv` – UniProtKB/Swiss-Prot isoforms (The manually172 annotated isoforms of UniProtKB/Swiss-Prot): The isoform sequences for the173 manually curated subsection of the UniProt Knowledgebase174* `uniprotkb_reference_proteomes` – UniProtKB Reference Proteomes: Taxonomic175 subset of the UniProtKB Reference Proteomes176* `uniprotkb_trembl` – UniProtKB/TrEMBL (The automatically annotated section177 of UniProtKB): Subsection of the UniProt Knowledgebase derived from ENA178 Sequence (formerly EMBL-Bank) coding sequence translations with annotation179 produced by an automated process180* `uniprotkb_refprotswissprot` – UniProtKB Reference Proteomes plus181 Swiss-Prot: UniProtKB Reference Proteomes plus Swiss-Prot182* `uniprotkb_archaea` – UniProtKB Archaea: Taxonomic subset of the UniProt183 Knowledgebase for archaea184* `uniprotkb_arthropoda` – UniProtKB Arthropoda: Taxonomic subset of the185 UniProt Knowledgebase for arthropoda186* `uniprotkb_bacteria` – UniProtKB Bacteria: Taxonomic subset of the UniProt187 Knowledgebase for bacteria188* `uniprotkb_complete_microbial_proteomes` – UniProtKB Complete Microbial189 Proteomes: Taxonomic subset of the UniProt Knowledgebase for complete190 microbial proteomes191* `uniprotkb_eukaryota` – UniProtKB Eukaryota: Taxonomic subset of the UniProt192 Knowledgebase for eukaryota193* `uniprotkb_fungi` – UniProtKB Fungi: Taxonomic subset of the UniProt194 Knowledgebase for fungi195* `uniprotkb_human` – UniProtKB Human: Taxonomic subset of the UniProt196 Knowledgebase for human197* `uniprotkb_mammals` – UniProtKB Mammals: Taxonomic subset of the UniProt198 Knowledgebase for mammals199* `uniprotkb_nematoda` – UniProtKB Nematoda: Taxonomic subset of the UniProt200 Knowledgebase for nematoda201* `uniprotkb_rodents` – UniProtKB Rodents: Taxonomic subset of the UniProt202 Knowledgebase for rodents203* `uniprotkb_vertebrates` – UniProtKB Vertebrates: Taxonomic subset of the204 UniProt Knowledgebase for vertebrates205* `uniprotkb_viridiplantae` – UniProtKB Viridiplantae: Taxonomic subset of the206 UniProt Knowledgebase for viridiplantae207* `uniprotkb_viruses` – UniProtKB Viruses: Taxonomic subset of the UniProt208 Knowledgebase for viruses209* `uniprotkb_enzyme` – UniProtKB Enzyme: Taxonomic subset of the UniProt210 Knowledgebase for enzymes211* `uniprotkb_covid19` – UniProtKB COVID-19: Taxonomic subset of the UniProt212 Knowledgebase for COVID-19213* `uniref100` – UniProt Clusters 100% (UniRef100): The UniProt Reference214 Clusters (UniRef) containing sequences which are 100% identical.215* `uniref90` – UniProt Clusters 90% (UniRef90): The UniProt Reference Clusters216 (UniRef) containing sequences which are 90% identical.217* `uniref50` – UniProt Clusters 50% (UniRef50): The UniProt Reference Clusters218 (UniRef) containing sequences which are 50% identical.219* `pdb` – Protein Structure Sequences (PDBe protein structure sequences):220 Protein sequences from structures described in the Brookhaven Protein Data221 Bank (PDB)