원클릭으로
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.