Prerequisites
uv: Read the uv skill and follow its Setup instructions to ensure
uv is installed and on PATH.
- User Notification: If
.licenses/protein_sequence_similarity_search_LICENSE.txt does not already
exist in the workspace root 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. You MUST use the
safe credentials protocol in the credentials skill to check for and
request this credential if this skill looks relevant to the user's request.
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. You MUST use the
safe credentials protocol in the credentials skill to check for and
request this credential if this skill looks relevant to the user's request.
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---5
6## Prerequisites
7
81. **`uv`**: Read the `uv` skill and follow its Setup instructions to ensure
9 `uv` is installed and on PATH.
102. **User Notification**: If
11 .licenses/protein_sequence_similarity_search_LICENSE.txt does not already
12 exist in the workspace root directory then (1) prominently notify the user
13 to check the terms at https://www.ebi.ac.uk/jdispatcher/sss/ncbiblast and
14 https://colabfold.com, then (2) create the file recording the notification
15 text and timestamp.
163. **`.env` file**: Make sure the `.env` file exists in your home directory.
17 Create one if it does not exist.
184. **`USER_EMAIL`** (optional but recommended): Recommended by the EBI for
19 BLAST job tracking, but the skill works without it. You **MUST** use the
20 safe credentials protocol in the `credentials` skill to check for and
21 request this credential if this skill looks relevant to the user's request.
22
23## Goal
24
25Take a user-provided amino acid sequence (or a path to a `.fasta` file), search
26for sequence homologues using the fastest available method, generate a
27Markdown-formatted table of the top hits, interpret key alignment metrics,
28summarize the inferred protein functions, and save results locally for future
29programmatic analysis.
30
31## Core Rules
32
33- **Strict Validation**: For BLAST, only use database codes listed in the
34 table below.
35- **No Hallucinations**: If a script throws an error or returns no hits,
36 inform the user clearly. Do NOT invent sequence homologues.
37- **Do Not Parse Output Files**: Do not parse the JSON, a3m, or any other raw
38 output files. Rely on the generated `.md` file for your summary. The JSON
39 and other outputs are for subsequent tool use only.
40- **Always State the Method**: Every report must clearly state whether the
41 search used the quick MMseqs2 (ColabFold API) or the slower EBI BLAST
42 method.
43- **Notification**: If this skill is used, ensure this is mentioned in the
44 output. Explicitly state that the corresponding program (MMSEQS2 or EBI
45 BLAST) and Sequence Databases were used.
46
47## Search Method Selection
48
49Choose the search method based on the user's request:
50
51If the **user says "quick search" or "fast search"**, **no specific method
52requested / general homologue search**, of if you are unsure: Run MMseqs2 (fast,
53default) using `mmseqs2_search.py`
54
55If **MMseqs2 fails (exit code 2: RATELIMIT or API error)** or **User explicitly
56requests "BLAST"** or **a specific BLAST database** (e.g. `uniprotkb_swissprot`,
57`pdb`, `uniprotkb_human`): Run BLAST using `uniprot_blast.py`
58
59## Instructions
60
611. Identify the query from the user. It can be a raw sequence string (e.g.,
62 "MKVLY...") or a path to a local file (e.g., "./data/sequence.fasta").
63
642. **Determine the search method** using the list above.
65
66### Path A: MMseqs2 Search (Default)
67
681. **Generate File Names:** Generate descriptive output file names based on the
69 input (e.g., `proteinA_mmseqs2.json` and `proteinA_mmseqs2.md`).
702. Execute the MMseqs2 script:
71
72 * **Default:**
73
74 ```
75 uv run scripts/mmseqs2_search.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json>
76 ```
77
78 * **With mgnify:**
79
80 ```
81 uv run scripts/mmseqs2_search.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json> --include-mgnify
82 ```
83
843. The script will query the ColabFold MMseqs2 API and poll for completion.
85 This is typically fast (under 2 minutes).
86
874. **If the script exits with code 2** (API failure, rate limit), automatically
88 fall back to BLAST (Path B below). Inform the user: "MMseqs2 search failed,
89 falling back to BLAST."
90
915. **Read the Results:** Open and read the generated `.md` file.
92
93### Path B: BLAST Search (Explicit or Fallback)
94
951. **Database Selection & Validation:** Determine the most appropriate
96 database(s) based on the user's prompt.
97 * Consult the **Available BLAST Databases** table below.
98 * If the user specifies a taxonomic group (e.g., "Find homologues in
99 microbes"), select the corresponding `Database Code` (e.g.,
100 `uniprotkb_bacteria`).
101 * If the user explicitly requests curated hits, use `uniprotkb_swissprot`.
102 * If no specific database is requested, do not specify `--databases`.
103 * **Validation:** Ensure the database code exactly matches an entry in the
104 table. If the user requests a database not on the list, **do not
105 proceed** and provide the allowed list.
1062. **Generate File Names:** (e.g., `proteinA_ebi_blast.json` and
107 `proteinA_ebi_blast.md`).
1083. This API requires the user email address to be set in the USER_EMAIL
109 environment variable for inclusion in request header. You **MUST** use the
110 safe credentials protocol in the `credentials` skill to check for and
111 request this credential if this skill looks relevant to the user's request.
1124. Execute the BLAST script:
113
114 * **Default (uniprotkb):**
115
116 ```
117 uv run scripts/uniprot_blast.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json>
118 ```
119
120 * **Custom database:**
121
122 ```
123 uv run scripts/uniprot_blast.py <SEQUENCE_OR_FILE> -o <generated-filename.md> -j <generated-filename.json> --databases <db1,db2>
124 ```
125
1265. The script will query the EBI BLAST API and poll the server. **Note:** This
127 can take up to 15 minutes; wait patiently.
128
1296. **Read the Results:** Open and read the generated `.md` file.
130
131### Common Steps (Both Methods)
132
1331. **Interpret the Metrics:** Summarize the top 3 to 5 sequence homologues.
134 Assess match quality using:
135 * **Q-Cov (Query Coverage):** High percentages mean the match covers most
136 of the query sequence.
137 * **E-value:** Lower E-values (e.g., `1e-50`) indicate extreme statistical
138 significance.
139 * **Seq Identity:** Provides evolutionary context (highly conserved vs.
140 distant homologue).
1412. **Perform Functional Analysis:**
142 * If the results table includes protein descriptions, analyze them
143 directly: report specific protein names/functions of the top homologues
144 and summarize the variety of functions, domains, or protein families
145 found.
146 * If the results contain only UniProt accession IDs without descriptions
147 (common with MMseqs2), look up the protein names and functions for the
148 top 3–5 hits using the **uniprot-database** skill or other appropriate
149 methods before summarizing.
1503. Inform the user of both newly created files (`.json` and `.md`) and their
151 locations.
152
153## Available BLAST Databases
154
155* `uniprotkb` – UniProt Knowledgebase (The UniProt Knowledgebase includes
156 UniProtKB/Swiss-Prot and UniProtKB/TrEMBL): The UniProt Knowledgebase
157 (UniProtKB) is the central access point for extensive curated protein
158 information, including function, classification, and cross-references.
159 Search UniProtKB to retrieve "everything that is known" about a particular
160 sequence
161* `uniprotkb_swissprot` – UniProtKB/Swiss-Prot (The manually annotated section
162 of UniProtKB): The manually curated subsection of the UniProt Knowledgebase
163* `uniprotkb_swissprotsv` – UniProtKB/Swiss-Prot isoforms (The manually
164 annotated isoforms of UniProtKB/Swiss-Prot): The isoform sequences for the
165 manually curated subsection of the UniProt Knowledgebase
166* `uniprotkb_reference_proteomes` – UniProtKB Reference Proteomes: Taxonomic
167 subset of the UniProtKB Reference Proteomes
168* `uniprotkb_trembl` – UniProtKB/TrEMBL (The automatically annotated section
169 of UniProtKB): Subsection of the UniProt Knowledgebase derived from ENA
170 Sequence (formerly EMBL-Bank) coding sequence translations with annotation
171 produced by an automated process
172* `uniprotkb_refprotswissprot` – UniProtKB Reference Proteomes plus
173 Swiss-Prot: UniProtKB Reference Proteomes plus Swiss-Prot
174* `uniprotkb_archaea` – UniProtKB Archaea: Taxonomic subset of the UniProt
175 Knowledgebase for archaea
176* `uniprotkb_arthropoda` – UniProtKB Arthropoda: Taxonomic subset of the
177 UniProt Knowledgebase for arthropoda
178* `uniprotkb_bacteria` – UniProtKB Bacteria: Taxonomic subset of the UniProt
179 Knowledgebase for bacteria
180* `uniprotkb_complete_microbial_proteomes` – UniProtKB Complete Microbial
181 Proteomes: Taxonomic subset of the UniProt Knowledgebase for complete
182 microbial proteomes
183* `uniprotkb_eukaryota` – UniProtKB Eukaryota: Taxonomic subset of the UniProt
184 Knowledgebase for eukaryota
185* `uniprotkb_fungi` – UniProtKB Fungi: Taxonomic subset of the UniProt
186 Knowledgebase for fungi
187* `uniprotkb_human` – UniProtKB Human: Taxonomic subset of the UniProt
188 Knowledgebase for human
189* `uniprotkb_mammals` – UniProtKB Mammals: Taxonomic subset of the UniProt
190 Knowledgebase for mammals
191* `uniprotkb_nematoda` – UniProtKB Nematoda: Taxonomic subset of the UniProt
192 Knowledgebase for nematoda
193* `uniprotkb_rodents` – UniProtKB Rodents: Taxonomic subset of the UniProt
194 Knowledgebase for rodents
195* `uniprotkb_vertebrates` – UniProtKB Vertebrates: Taxonomic subset of the
196 UniProt Knowledgebase for vertebrates
197* `uniprotkb_viridiplantae` – UniProtKB Viridiplantae: Taxonomic subset of the
198 UniProt Knowledgebase for viridiplantae
199* `uniprotkb_viruses` – UniProtKB Viruses: Taxonomic subset of the UniProt
200 Knowledgebase for viruses
201* `uniprotkb_enzyme` – UniProtKB Enzyme: Taxonomic subset of the UniProt
202 Knowledgebase for enzymes
203* `uniprotkb_covid19` – UniProtKB COVID-19: Taxonomic subset of the UniProt
204 Knowledgebase for COVID-19
205* `uniref100` – UniProt Clusters 100% (UniRef100): The UniProt Reference
206 Clusters (UniRef) containing sequences which are 100% identical.
207* `uniref90` – UniProt Clusters 90% (UniRef90): The UniProt Reference Clusters
208 (UniRef) containing sequences which are 90% identical.
209* `uniref50` – UniProt Clusters 50% (UniRef50): The UniProt Reference Clusters
210 (UniRef) containing sequences which are 50% identical.
211* `pdb` – Protein Structure Sequences (PDBe protein structure sequences):
212 Protein sequences from structures described in the Brookhaven Protein Data
213 Bank (PDB)