bioinformatics — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited bioinformatics (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Part of Agent Skills™ by googleadsagent.ai™
Bioinformatics provides computational biology workflows for sequence analysis, protein structure prediction, single-cell RNA-seq with Scanpy, gene regulatory network inference, and pathway enrichment analysis. The agent generates reproducible analysis pipelines using BioPython, Scanpy, and standard bioinformatics tools, following community best practices for each analysis type.
Modern biology generates data faster than biologists can analyze it. A single-cell RNA-seq experiment produces expression profiles for tens of thousands of cells, each with thousands of genes measured. This skill encodes the standard analysis pipelines that transform raw sequencing data into biological insights: quality control, normalization, dimensionality reduction, clustering, differential expression, and pathway enrichment.
The skill extends beyond transcriptomics to genomics (variant calling, annotation), proteomics (sequence analysis, domain prediction), and systems biology (gene regulatory networks, protein-protein interactions). Each pipeline is parameterized, documented, and reproducible—the same inputs always produce the same outputs.
graph TD
A[Raw Sequencing Data] --> B[Quality Control]
B --> C[Alignment / Quantification]
C --> D{Analysis Type}
D -->|Single-Cell| E[Scanpy Pipeline]
D -->|Bulk RNA-seq| F[DESeq2 / edgeR]
D -->|Genomics| G[Variant Calling]
E --> H[Normalize → PCA → UMAP → Cluster]
H --> I[Differential Expression]
I --> J[Pathway Enrichment]
F --> I
G --> K[Annotation + Impact Prediction]
J --> L[Biological Interpretation]
K --> LThe pipeline branches based on data type. Single-cell data follows the Scanpy standard workflow; bulk RNA-seq uses DESeq2 or edgeR; genomic data goes through variant calling and annotation. All paths converge on biological interpretation.
import scanpy as sc
import numpy as np
def scrna_pipeline(adata_path: str, min_genes: int = 200, min_cells: int = 3) -> sc.AnnData:
adata = sc.read_h5ad(adata_path)
sc.pp.filter_cells(adata, min_genes=min_genes)
sc.pp.filter_genes(adata, min_cells=min_cells)
adata.var["mt"] = adata.var_names.str.startswith("MT-")
sc.pp.calculate_qc_metrics(adata, qc_vars=["mt"], inplace=True)
adata = adata[adata.obs.pct_counts_mt < 20, :].copy()
sc.pp.normalize_total(adata, target_sum=1e4)
sc.pp.log1p(adata)
sc.pp.highly_variable_genes(adata, n_top_genes=2000, flavor="seurat_v3")
adata.raw = adata
adata = adata[:, adata.var.highly_variable].copy()
sc.pp.scale(adata, max_value=10)
sc.tl.pca(adata, n_comps=50)
sc.pp.neighbors(adata, n_pcs=30)
sc.tl.umap(adata)
sc.tl.leiden(adata, resolution=0.5)
sc.tl.rank_genes_groups(adata, groupby="leiden", method="wilcoxon")
return adata
def pathway_enrichment(gene_list: list[str], organism: str = "hsapiens") -> pd.DataFrame:
from gprofiler import GProfiler
gp = GProfiler(return_dataframe=True)
results = gp.profile(
organism=organism,
query=gene_list,
sources=["GO:BP", "GO:MF", "KEGG", "REAC"],
)
return results[results["significant"]].sort_values("p_value")from Bio import SeqIO, Align
def sequence_analysis(fasta_path: str) -> dict:
records = list(SeqIO.parse(fasta_path, "fasta"))
aligner = Align.PairwiseAligner()
aligner.mode = "global"
stats = {
"num_sequences": len(records),
"lengths": [len(r.seq) for r in records],
"gc_content": [float(r.seq.count("G") + r.seq.count("C")) / len(r.seq) for r in records],
}
return stats| Platform | Support | Notes |
|---|---|---|
| Cursor | Full | Python + Jupyter support |
| VS Code | Full | Jupyter + Scanpy integration |
| Windsurf | Full | Scientific Python |
| Claude Code | Full | Pipeline script generation |
| Cline | Full | Bioinformatics workflows |
| aider | Partial | Code-level support |
bioinformatics scanpy single-cell rna-seq biopython gene-expression pathway-enrichment sequence-analysis
© 2026 googleadsagent.ai™ | Agent Skills™ | MIT License
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.