원클릭으로
cell-segmentation
Run cell segmentation on fluorescence microscopy images using Cellpose. Generates masks and extracts per-cell measurements.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run cell segmentation on fluorescence microscopy images using Cellpose. Generates masks and extracts per-cell measurements.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | cell-segmentation |
| description | Run cell segmentation on fluorescence microscopy images using Cellpose. Generates masks and extracts per-cell measurements. |
This skill runs cell segmentation on fluorescence microscopy images using Cellpose. Use this when you have images of cells (phase contrast, DAPI, or membrane stain) and need to generate segmentation masks and extract per-cell measurements.
cyto3 for whole-cell, nuclei for nuclear-only)None for auto-detection)Stop and ask if: no .tif files found, images have unexpected dimensions, channel assignment is unclear.
{original_name}_mask.tif in output directory{output_dir}/segmentation_qc.csvFor each cell in each image, measure:
Save to {output_dir}/cell_measurements.csv with columns: image_id, cell_id, area_px, centroid_x, centroid_y, mean_intensity_ch1, ...
Report:
| Issue | What to do |
|---|---|
| Image can't be read | Skip, log the error, continue with remaining images |
| Cellpose GPU not available | Fall back to CPU, warn about slower processing |
| Zero cells in an image | Log as QC flag, include in report |
| Out of memory | Reduce batch size, process images one at a time |
These are in the same directory as this skill — read them if needed:
default_params.json — default Cellpose parameters for common imaging setups (confocal, widefield, etc.)channel_conventions.md — lab-standard channel ordering and naming by stain panelfrom cellpose import models
import numpy as np
from skimage import io, measure
import pandas as pd
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.
Parse messy lab Excel files (merged cells, multi-row headers, metadata in margins) into clean, standardized CSV format.