proteomics — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited proteomics (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.
Reference examples assume:
pyopenms 3.0+pandas 2.2+numpy 1.26+seaborn 0.13+Use this skill when the user needs:
results/protein_abundance.tsvqc/proteomics_qc_summary.tsvfigures/correlation_heatmap.pdffigures/missingness.pdfresults/differential_proteins.tsvimport pandas as pd
protein_df = pd.read_csv("protein_groups.tsv", sep="\t")
sample_cols = [c for c in protein_df.columns if c.startswith("LFQ intensity")]
matrix = protein_df[sample_cols].replace(0, pd.NA)
qc = pd.DataFrame({
"n_proteins": matrix.notna().sum(),
"missing_pct": matrix.isna().mean() * 100,
})
qc.to_csv("qc/proteomics_qc_summary.tsv", sep="\t")Inspect:
Keep the normalization approach explicit and do not collapse peptides into proteins without documenting the rule.
Use replicate-aware differential abundance with clear filtering and missingness policy.
Save both the cleaned abundance matrix and the differential results table.
results/
├── protein_abundance.tsv
└── differential_proteins.tsv
qc/
└── proteomics_qc_summary.tsv
figures/
├── correlation_heatmap.pdf
├── missingness.pdf
└── intensity_density.pdf> 30% should trigger caution> 0.90.8 deserves reviewpyopenms~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.