proteomics-structural

proteomics-structural is a skill for Claude Code, Codex from TianGzlab/OmicsClaw. It costs 88 tokens per session (1,489 once invoked), scanned A, original, Apache-2.0.

A tool for summarising cross-linking mass-spectrometry results, where chemical links reveal relationships between parts of proteins. It separates links within one protein from links between proteins and can check them against distance limits for common cross-linkers.

In plain words
What is it for?
Use it to filter and classify cross-links and produce structural-summary tables.
Why use it?
It helps assess whether detected links meet expected structural distance constraints after the data has already been searched.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/tiangzlab/omicsclaw/proteomics-structural
Any agent
npx skills add TianGzlab/OmicsClaw --skill proteomics-structural
Clone the repo
git clone --depth 1 https://github.com/TianGzlab/OmicsClaw

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for proteomics-structural

README.md
[![agentmods](https://agentmods.dev/badge/skills/tiangzlab/omicsclaw/proteomics-structural.svg)](https://agentmods.dev/skills/tiangzlab/omicsclaw/proteomics-structural)
Your own site
<a href="https://agentmods.dev/skills/tiangzlab/omicsclaw/proteomics-structural"><img src="https://agentmods.dev/badge/skills/tiangzlab/omicsclaw/proteomics-structural.svg" alt="Measured on agentmods" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,489 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00088 $0.01489
Opus 5 $0.00044 $0.00745
Sonnet 5 $0.00018 $0.00298
Haiku 4.5 $0.00009 $0.00149

Measured yesterday against content hash f5a3d131dfc8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

proteomics-structural scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (struct_proteomics.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/proteomics/proteomics-structural/SKILL.md · 106 lines

How it starts

The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.

proteomics-structural

When to use

The user has a cross-linking MS (XL-MS) results CSV (from XlinkX, pLink, xiSEARCH, etc.) and wants a summary: intra- vs inter-protein classification, optional FDR filtering, and distance-constraint validation against the per-crosslinker max distance (Rappsilber (2011) Cα-Cα bounds).

--crosslinker {DSS,BS3,EDC,DSSO,DSBU} (default DSS) sets the max-distance threshold (CROSSLINKER_CONSTRAINTS at struct_proteomics.py:43-49: DSS/BS3/DSSO/DSBU = 30 Å, EDC = 20 Å). --fdr (default 0.05) filters by the fdr column when present.

This skill does NOT run an XL-MS search engine — feed it the already-searched results.

Inputs & Outputs

Inputs

  • File types: .csv

Outputs

  • tables/crosslinks.csv
  • tables/inter_protein_crosslinks.csv
  • report.md
  • result.json

Flow

  1. Load CSV (--input <crosslinks.csv>) or generate a demo at output_dir/demo_crosslinks.csv (struct_proteomics.py:102).
  2. If fdr column present, filter to df[df["fdr"] <= --fdr] (struct_proteomics.py:126); otherwise pass-through (:130).
  3. Derive link_type from protein_a == protein_b comparison when both columns are present (struct_proteomics.py:134-141); otherwise count all rows as intra (:142-145).
  4. If distance_angstrom column present, compute satisfaction rate vs CROSSLINKER_CONSTRAINTS[--crosslinker] (struct_proteomics.py:147-167); add per-row constraint_satisfied boolean column.
  5. Write tables/crosslinks.csv (struct_proteomics.py:282) + tables/inter_protein_crosslinks.csv (only if non-empty, :287) + report.md + result.json (:290).

Gotchas

  • Required input columns are protein_a and protein_b (lowercase, with underscore-letter — NOT protein1 / protein2). struct_proteomics.py:134 checks {"protein_a", "protein_b"}.issubset(df_filtered.columns). Without both, ALL rows silently classify as intra-protein (:142-145) — n_inter = 0 even on a real inter-protein dataset. XlinkX exports use Protein A / Protein B; rename first.
  • --crosslinker drives the distance-constraint check, NOT just metadata. struct_proteomics.py:148 sets max_distance = CROSSLINKER_CONSTRAINTS.get(crosslinker.upper(), 30.0) — the active threshold for constraint_satisfied column + constraint_satisfaction_rate summary. Choices: DSS / BS3 / DSSO / DSBU = 30 Å, EDC = 20 Å (Rappsilber 2011 Cα-Cα bounds).
  • Distance check is OPT-IN by distance_angstrom column presence. Without that column, constraint_satisfaction_rate defaults to 100% (struct_proteomics.py:170) — the constraint feature is silently skipped, not failed. Pass distance_angstrom (Cα-Cα predicted distance from a 3D model) for a real check.
  • fdr filter is OPT-IN by column presence. struct_proteomics.py:126 only filters when fdr exists — without that column, EVERY input row is kept regardless of --fdr. Pre-add an fdr column (or a placeholder of zeros) if you need the filter to bite.
  • --input REQUIRED unless --demo. struct_proteomics.py:270 raises ValueError("--input required when not using --demo").
  • tables/inter_protein_crosslinks.csv only appears when there ARE inter-protein links. A purely-intra dataset writes only tables/crosslinks.csv. Downstream consumers should check file existence.

Read the full file on GitHub · 106 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 106 lines · 88 tokens per session scan A f5a3d131dfc8

Subscribe to this mod's changes

proteomics-structural is a skill published in the GitHub repository TianGzlab/OmicsClaw (160 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 88 tokens to every session and 1,489 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

pkpd-modeling

Pharmacokinetic and pharmacodynamic modelling and simulation - non-compartmental analysis, compartmental and population PK, PK/PD and exposure-response, TMDD, PBPK orientation, bioequivalence, allometric scaling and first-in-human dose, drug interaction prediction, and Bayesian therapeutic drug monitoring. Use when…

K-Dense-AI/scientific-agent-skills · 273 tokens

neuropixels-analysis

Analyze Neuropixels extracellular recordings end-to-end with SpikeInterface. Covers loading SpikeGLX/Open Ephys/NWB data, preprocessing, drift/motion correction, Kilosort4 (and CPU) spike sorting, quality metrics, and unit curation (threshold-based, model-based UnitRefine, and AI-assisted visual review). Use when…

K-Dense-AI/scientific-agent-skills · 98 tokens

onekgpd

Query the 1000 Genomes Project dataset (3,202 whole-genome-sequenced individuals, GRCh38) at the level of individual participants. Use when a question is about individuals or variants in the 1000 Genomes Project cohort: which individuals carry variants matching specific criteria in a gene or region, which individuals…

K-Dense-AI/scientific-agent-skills · 143 tokens

pydicom

Use pydicom to read, inspect, write, transform, and safely preflight local DICOM datasets and pixel data. Applies to DICOM metadata, transfer syntaxes, compression plugins, frames, private elements, JSON, and bounded de-identification review.

K-Dense-AI/scientific-agent-skills · 56 tokens

clinical-decision-support

Prepare and validate research-only clinical decision-support evaluation, evidence-profile, cohort, survival, biomarker/model, privacy, and governance artifacts. Use for aggregate or synthetic research documentation and traceability—not patient care or live clinical operation.

K-Dense-AI/scientific-agent-skills · 50 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens