Curated AI prompts for life sciences: genomics, proteomics, CRISPR, cell biology, and literature synthesis. Analogous to awesome-ai-for-science and awesome-genomic-skills.
Go to file
promptadmin f6edd53e92 Add scientific paper deep summarisation prompt 2026-06-10 17:26:29 +00:00
cell-biology Add flow cytometry interpretation prompt 2026-06-10 17:26:28 +00:00
genomics Add CRISPR off-target risk assessment prompt 2026-06-10 17:26:24 +00:00
literature Add scientific paper deep summarisation prompt 2026-06-10 17:26:29 +00:00
proteomics Add protein structure functional interpretation prompt 2026-06-10 17:26:26 +00:00
README.md Add README with resource attribution 2026-06-10 17:26:18 +00:00

README.md

Life Science AI Prompts

Where the prompts live, thrive, and reach the world.

Curated, versioned AI prompts for life sciences research. Covers genomics, proteomics, CRISPR, cell biology, and literature synthesis.

Analogous Resources Ingested

Repository Focus Stars
awesome-ai-for-science AI tools across sciences ★★★
Awesome-LLM-Agents-Scientific-Discovery LLM agents in biomedical research ★★★
awesome-genomic-skills Genomic LLM agent skills ★★★
awesome-computational-biology Computational biology resources ★★★
Awesome-LLM-Scientific-Discovery LLMs for science ★★★

Folder Structure

genomics/     — variant calling, RNA-seq, CRISPR
proteomics/   — structure, mass spectrometry, interactions
cell-biology/ — flow cytometry, microscopy, assays
literature/   — paper summarisation, methods extraction

How to Use

import requests, base64

GITEA_URL = "https://promptnotes.ai"
TOKEN = "your-token"

def read_prompt(owner, repo, path):
    url = f"{GITEA_URL}/api/v1/repos/{owner}/{repo}/contents/{path}"
    r = requests.get(url, headers={"Authorization": f"token {TOKEN}"})
    return base64.b64decode(r.json()["content"]).decode()

prompt = read_prompt("promptadmin", "life-science-ai-prompts",
                     "genomics/variant-interpretation/snp-clinical-significance.md")