Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Maintainer FreedomIntelligence · Last updated April 1, 2026
Query UniProt for protein sequences, annotations, and cross-references.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-uniprot-access
Skill Snapshot
Source Doc
| Query | Description |
|---|---|
gene:TP53 | Gene name |
organism_id:9606 | Human (NCBI taxonomy) |
reviewed:true | Swiss-Prot only |
length:[100 TO 500] | Sequence length range |
go:0006915 | GO term (apoptosis) |
keyword:kinase | Keyword |
ec:2.7.1.1 | Enzyme classification |
database:pdb | Has PDB structure |
def search_all(query, format='tsv', fields=None):
'''Stream all results for large queries'''
url = 'https://rest.uniprot.org/uniprotkb/stream'
params = {'query': query, 'format': format}
if fields:
params['fields'] = ','.join(fields)
response = requests.get(url, params=params, stream=True)
return response.text
## Get all human proteins as TSV
all_human = search_all('organism_id:9606 AND reviewed:true',
fields=['accession', 'gene_names', 'protein_name'])
Related skills
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences fold correctly, (2) P…
AlphaFold DB is a public repository of AI-predicted 3D protein structures for over 200 million proteins, maintained by DeepMind and EMBL-EBI…
Antibody design: epitope mapping, CDR engineering, bispecific construction.