用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cas-bigdatalab/piflow --skill bdbe-sexdetermine命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | bdbe_sexdetermine |
| description | 本skill是用于单细胞样本性别判定的专用技能,首先需要用户上传需要处理的单细胞样本数据,再判定未标注性别的样本,或纠正标注错误的性别信息,生成最后的修正文件。 |
| compatibility | ["python","requests"] |
| name_zh | 单细胞样本性别判定算子 |
| input_params | [{"name":"input_file","type":"string","required":true,"description":"输入单细胞样本数据文件路径(CSV格式)"},{"name":"species","type":"string","required":true,"description":"物种类型,如 mouse、human 等"},{"name":"output_dir","type":"string","required":false,"description":"输出目录,默认在上传文件所在目录"}] |
| output_params | [{"name":"output_dir","type":"csv_file","description":"性别判定结果CSV文件,包含每个样本的性别标签"}] |
| tag | 科学计算 |
| publisher | COMMUNITY |
本skill是用于单细胞样本性别判定的专用技能,首先需要用户上传需要处理的单细胞样本数据,再判定未标注性别的样本,或纠正标注错误的性别信息,生成最后的修正文件。
当用户希望"对单细胞样本进行性别判定"、”使用单细胞样本性别判定工具“等情况时触发。
| 参数名 | 类型 | 说明 | 示例值 | 是否必填 |
|---|---|---|---|---|
| input_file | string | 输入单细胞样本数据文件路径 | D:\hqr\workspace\Agent\source\mousedemo.csv | 是 |
| species | string | 物种类型 | mouse | 是 |
| output_dir | string | 输出目录,默认在上传文件所在目录 | D:\hqr\workspace\Agent\output | 否 |
python scripts/bdbe_sexdetermine.py --input_file "D:\hqr\workspace\Agent\source\mousedemo.csv" --species mouse
python scripts/bdbe_sexdetermine.py --input_file "D:\hqr\workspace\Agent\source\mousedemo.csv" --species mouse --output_dir "D:\hqr\workspace\Agent\output"
https://www.bdbe.cn/kun/api/upload (POST)https://www.bdbe.cn/kun/api/analysis?tool=SexDetermine&id={file_id}&species={species} (GET)https://www.bdbe.cn/kun/api/result?id={task_id} (GET)https://www.bdbe.cn/kun/api/result/download?link={link} (GET)