ワンクリックで
parse-lab-excel
Parse messy lab Excel files (merged cells, multi-row headers, metadata in margins) into clean, standardized CSV format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Parse messy lab Excel files (merged cells, multi-row headers, metadata in margins) into clean, standardized CSV format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | parse-lab-excel |
| description | Parse messy lab Excel files (merged cells, multi-row headers, metadata in margins) into clean, standardized CSV format. |
Lab instruments and collaborators often provide data in messy Excel files with merged cells, multiple header rows, metadata in random locations, and inconsistent formatting. This skill standardizes the parsing of these files into clean CSV format.
header=None)Stop and ask if: the structure is ambiguous or there are multiple possible interpretations.
_metadata.json fileheader row and skiprows| Issue | What to do |
|---|---|
| File is .xls (old format) | Use engine='xlrd' |
| Password-protected | Stop, ask user |
| Multiple data tables on one sheet | Stop, ask user which table to extract |
| Encoding issues | Try UTF-8, then Latin-1, then report |
These are in the same directory as this skill — read them if needed:
column_name_mappings.json — standard column renames for common instrument outputs (e.g., "Absorbance @ 260nm" → "abs_260")expected_output.csv — example of what a correctly parsed CSV should look likeimport pandas as pd
import openpyxl
import json
Run a bulk RNA-seq differential expression analysis using pydeseq2. Use when you have a raw count matrix and want to identify DE genes between two conditions.
Run cell segmentation on fluorescence microscopy images using Cellpose. Generates masks and extracts per-cell measurements.