スキル一覧に戻る

interpret-chromatogram

pjt222
更新日 2 days ago
6 閲覧
17
2
17
GitHubで表示
デザインdesign

について

このClaudeスキルは、開発者向けにGCまたはHPLCクロマトグラムを解析し、システム適性試験、ピーク同定、積分処理を行います。主要なクロマトグラフィ特性値を計算し、ピーク品質を評価することで、信頼性の高い定量結果を保証します。パイプライン内でのクロマトグラフデータの自動レビューと分析にご利用ください。

クイックインストール

Claude Code

推奨
メイン
npx skills add pjt222/agent-almanac -a claude-code
プラグインコマンド代替
/plugin add https://github.com/pjt222/agent-almanac
Git クローン代替
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/interpret-chromatogram

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

Interpret Chromatogram

Systematic read of GC and HPLC chromatograms. Cover system suitability, peak ID, integration, chromatographic figures, peak quality. For confident qual and quant results.

When Use

  • Reviewing chromatographic data before reporting
  • Verify system suitability test passes before sample sequence
  • Identify unknown peaks. Confirm known analytes by retention time or spectra
  • Troubleshoot unexpected peaks, baseline anomalies, integration artifacts
  • Training analysts on chromatogram interpretation

Inputs

Required

  • Chromatogram data: Digital or printed. Time axis + detector response axis
  • Reference standard data: Retention times and responses of known analytes under same method
  • Method parameters: Column, mobile phase/carrier gas, temperature/gradient, detector settings

Optional

  • Spectral data: UV-Vis spectra (DAD), mass spectra (MS), other spectra for peak confirmation
  • Previous chromatograms: Historical data from same method for trend compare
  • System suitability criteria: Acceptance limits from method or regulatory standard
  • Sample prep details: Dilution factors, extraction recovery, internal standard conc

Steps

Step 1: Verify System Suitability

Confirm chromatographic system performs within spec before interpreting sample data.

ParameterTypical SpecificationCalculation
Retention time RSD<= 1.0%RSD of tR over n >= 5 injections
Peak area RSD<= 2.0% (assay), <= 5.0% (impurity)RSD of area over n >= 5 injections
Tailing factor (T)0.8-2.0 (USP), ideally 0.9-1.2T = W0.05 / (2 * f) where W0.05 = width at 5% height, f = front half-width
Resolution (Rs)>= 1.5 (baseline), >= 2.0 (regulated)Rs = 2(tR2 - tR1) / (w1 + w2)
Theoretical plates (N)Per column spec (e.g., >= 2000)N = 16(tR / w)^2 or N = 5.54(tR / w0.5)^2
Capacity factor (k')2.0-10.0 for primary analytek' = (tR - t0) / t0
  1. Locate system suitability injections (usually 5-6 replicates of reference standard at start of sequence)
  2. Calculate each parameter from table
  3. Compare calculated values vs method's acceptance criteria
  4. Any parameter fails? System not suitable. Do not proceed until issue fixed
  5. Document all system suitability results in batch record

Got: All system suitability parameters within spec. System fit for purpose.

If fail: Retention time RSD fails? Check temperature stability, mobile phase prep errors, column degradation. Tailing factor fails? Inspect inlet liner (GC) or column frit (HPLC). Resolution fails? Check column with dedicated test mix, replace if needed.

Step 2: Identify Peaks

  1. Compare each peak's retention time (tR) vs reference standard chromatogram
    • Acceptable match: within +/- 2% of reference tR (or +/- 0.1 min for short runs)
  2. Ambiguous IDs? Use co-injection (spiking): add reference standard to sample, re-inject. Target peak should grow without broadening or shouldering
  3. DAD-equipped HPLC: compare UV-Vis spectrum of each peak vs spectral library
    • Spectral match index >= 990 (out of 1000) for positive ID
    • Check spectral purity across peak (front, apex, tail spectra should overlay)
  4. MS-equipped: confirm molecular ion (m/z) and key fragment ions vs reference spectra
  5. Flag any peak not identifiable. Report as "unknown" with retention time and relative response

Got: All target analytes identified by retention time, with spectral confirmation where available. Unknown peaks flagged with retention time and area.

If fail: Retention times shifted uniformly? Systematic change happened (column aging, temperature drift, mobile phase error). Re-inject reference standard to establish current retention times before re-evaluating.

Step 3: Integrate Peaks

  1. Select integration mode:
    • Automatic integration with data system defaults as starting point
    • Manual adjust only when automatic demonstrably misplaces baseline or peak boundaries
  2. Set integration parameters:
    • Baseline detection sensitivity (slope sensitivity / threshold)
    • Minimum peak area or height to reject noise
    • Peak width parameter matching narrowest expected peak
  3. Verify baseline placement:
    • Baseline connects start and end of each peak at true chromatographic baseline
    • Overlapping peaks: use valley-to-valley or perpendicular drop per method spec
    • Gradient methods: baseline may rise — use tangent skim or exponential skim for peaks on rising baseline
  4. Check for integration errors:
    • Split peaks integrated as two when they should be one
    • Shoulder peaks merged into main peak when should be separate
    • Noise spikes integrated as peaks
    • Baseline drawn through peak (negative peak clipping)
  5. Record final integration parameters and any manual adjustments with justification in audit trail

Got: All target peaks integrated with correct baseline. No artifacts. All manual adjustments documented with rationale.

If fail: Automatic integrator consistently mishandles particular peak shape? Create timed-events integration method with custom parameters for that retention window. Never manually adjust integration to get desired result — adjustments must be scientifically justified.

Step 4: Calculate Chromatographic Parameters

Calculate for all reported peaks:

  1. Resolution (Rs) between adjacent peaks:
    • Rs = 2(tR2 - tR1) / (w1 + w2)
    • Rs >= 1.5 = baseline separation. Rs >= 2.0 = margin for routine use
  2. Tailing factor (T) at 5% peak height:
    • T = W0.05 / (2f)
    • T = 1.0 = perfectly symmetric. T > 2.0 = significant tailing
  3. Theoretical plates (N):
    • N = 16(tR / w)^2 using baseline width, or N = 5.54(tR / w0.5)^2 using half-height width
    • Higher N = better column efficiency
  4. Capacity factor (k'):
    • k' = (tR - t0) / t0 where t0 = dead time (void volume / flow rate)
    • Ideal range: 2-10 for good separation with reasonable run time
  5. Selectivity factor (alpha) between critical pair:
    • alpha = k'2 / k'1
    • alpha > 1.05 needed for adequate separation
  6. Tabulate results for all analytes. Compare vs method specs

Got: All chromatographic parameters calculated, tabulated, compared to acceptance criteria. Critical pair resolution and plate count documented.

If fail: Calculated plates much below column spec? Column maybe degraded — test with fresh standard, compare to historical data. Parameters drift within sequence? Investigate instrument stability.

Step 5: Assess Peak Quality

  1. Symmetry: Peaks should be Gaussian or near-Gaussian. Significant fronting (T < 0.8) = column overload. Tailing (T > 1.5) = secondary interactions or dead volume
  2. Baseline separation: Quant work — critical pairs must be baseline-resolved. Valley between peaks not returning to baseline? Note percentage valley, assess impact on accuracy
  3. Peak width consistency: Peaks much broader than expected (vs standard) → on-column degradation, extra-column band broadening, or injection issues
  4. Spectral purity (DAD/MS): Purity index shows spectral inhomogeneity across peak? Co-eluting impurity likely present. Adjust method for better resolution
  5. Negative peaks or baseline disturbances: Negative peaks in UV = sample solvent absorbs more than mobile phase at detection wavelength — normal for solvent front, abnormal elsewhere
  6. Ghost peaks: Peaks in blank injection = carryover, contaminated mobile phase, or column bleed. Identify source before reporting sample results
  7. Summarize overall chromatographic quality. Note any limitations on reported results

Got: Peak quality assessed for all target analytes. Any anomalies (tailing, co-elution, ghost peaks) documented with potential impact on data quality.

If fail: Significant quality issues found (co-elution confirmed by spectral impurity, ghost peaks at analyte retention times)? Data may not be reportable. Flag results, investigate root cause, re-run after corrective action.

Checks

  • System suitability parameters calculated and within spec
  • All target analytes identified by retention time (+/- spectral confirmation)
  • Unknown peaks flagged with retention time and area
  • Integration done with correct baseline. Manual adjustments documented
  • Resolution, tailing, plates, capacity factor calculated for all peaks
  • Peak quality assessed — no unresolved co-elutions affecting quantitation
  • Ghost peaks and carryover evaluated via blank injection
  • Results tabulated and compared vs method acceptance criteria

Pitfalls

  • Accept automatic integration without review: Data systems misplace baselines, especially for shoulders, small peaks near large ones, gradient baselines. Every chromatogram needs visual review.
  • Confuse retention time shift with new peak: Uniform shifts (all peaks move together) = systematic change, not new compounds. Re-inject standard to recalibrate before making ID calls.
  • Report peaks below noise: Peaks with S/N below 3 (detection) or 10 (quantitation) should not be identified or quantitated. Calculate S/N explicitly for trace-level peaks.
  • Ignore solvent front: Void volume peak not an analyte. Ensure t0 correctly identified and excluded from analyte reporting.
  • Manual integration to hit target result: Adjusting integration to make result pass spec = data falsification. All integration changes must be scientifically justified, audit-trailed.
  • Neglect spectral purity checks: Clean-looking peak can hide co-eluting impurity. Always check peak purity when DAD or MS data available.

See Also

  • develop-gc-method — method dev for GC technique making chromatogram
  • develop-hplc-method — method dev for HPLC technique making chromatogram
  • troubleshoot-separation — diagnose problems found during chromatogram interpretation
  • validate-analytical-method — formal validation of method generating chromatographic data
  • interpret-mass-spectrum — detailed interpretation of MS data for GC-MS and LC-MS peak confirmation

GitHub リポジトリ

pjt222/agent-almanac
パス: i18n/caveman/skills/interpret-chromatogram
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

関連スキル

executing-plans

デザイン

executing-plansスキルは、完全な実装計画があり、それを管理されたバッチでレビューチェックポイントを設けながら実行する場合に使用します。このスキルは計画を読み込んで批判的にレビューした後、小さなバッチ(デフォルトは3タスク)でタスクを実行し、各バッチの間に進捗状況を報告してアーキテクトのレビューを受けます。これにより、品質管理チェックポイントが組み込まれた体系的な実装が保証されます。

スキルを見る

requesting-code-review

デザイン

このスキルは、コードレビュアーサブエージェントを起動し、処理を進める前に要件に対してコード変更を分析します。タスク完了後、主要な機能の実装後、またはmainブランチへのマージ前などに使用すべきです。このレビューは、現在の実装と元の計画を比較することで、問題を早期に発見するのに役立ちます。

スキルを見る

connect-mcp-server

デザイン

このスキルは、開発者がHTTP、stdio、またはSSEトランスポートを使用してMCPサーバーをClaude Codeに接続するための包括的なガイドを提供します。GitHub、Notion、カスタムAPIなどの外部サービスを統合するためのインストール、設定、認証、セキュリティについて解説しています。MCP統合のセットアップ、外部ツールの設定、またはClaudeのModel Context Protocolを扱う際にご利用ください。

スキルを見る

web-cli-teleport

デザイン

このスキルは、タスク分析に基づいて開発者がClaude Code WebとCLIインターフェースの選択を支援し、これらの環境間でのシームレスなセッションテレポーテーションを可能にします。Web、CLI、モバイル環境を切り替える際のセッション状態とコンテキストを管理することで、ワークフローを最適化します。様々な段階で異なるツールを必要とする複雑なプロジェクトにご活用ください。

スキルを見る