一键导入
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 页面并帮你完成安装。
| 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
基于 SOC 职业分类
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.