소스 정보
- 저장소
- stanfish06/skillquarium
- 최근 소스 활동
- 2026년 8월 30일 11:57
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/stanfish06/skillquarium --skill claw-ancestry-pca명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
build a repo-local skill and install a matching iterated coding-agent GitHub Actions workflow, prompt, memory file, and reference templates
interview the user to design an agentic control loop (sensor, controller, actuator under disturbances) tailored to their codebase, then build it as locally-runnable components plus a scheduled coding-agent workflow
narrow React component prop types to match live code paths
SOC 직업 분류 기준
SKILL.md 표시 중
| name | claw-ancestry-pca |
| description | Ancestry decomposition PCA against the Simons Genome Diversity Project |
| license | MIT |
| metadata | {"version":"0.1.0","author":"Manuel Corpas","tags":["population-genetics","PCA","ancestry","SGDP","global-diversity"],"inputs":[{"name":"vcf","type":"file","format":"[Truncated]","description":"VCF file with genotype data for your study cohort"},{"name":"pop-map","type":"file","format":"[Truncated]","description":"Tab-separated file mapping sample IDs to population labels"}],"outputs":[{"name":"figure","type":"file","format":"png","description":"Multi-panel PCA composite figure showing ancestry decomposition"},{"name":"report","type":"file","format":"markdown","description":"Ancestry analysis report with population assignments and statistics"}],"openclaw":{"category":"bioinformatics","emoji":"🧬","homepage":"https://github.com/ClawBio/ClawBio","os":["darwin","linux"],"min_python":"3.9","dependencies":["pandas","numpy","matplotlib","scikit-learn"],"requires":{"bins":"[Truncated]"},"always":false}} |
Compute a principal-component decomposition of your own cohort's genotypes from a VCF, coloured by population label, and write a report plus a 4-panel figure.
-1 missing)sklearn.decomposition.PCA on that matrixreport.md, result.json, and tables/ with PC coordinates and variance explainedRead these before interpreting the output.
sqrt(p(1-p)), so PCs are not on the standard population-genetics scale.chr1 or 1).The script imports clawbio.common (VCF parsing, checksums, report helpers) from three directory levels above itself, and reads its demo data from examples/. Both come from https://github.com/ClawBio/ClawBio — run this skill from inside a ClawBio checkout, or put clawbio/ and examples/ on that path. Without them the script fails at import.
python ancestry_pca.py \
--input your_cohort.vcf.gz \
--pop-map your_populations.csv \
--output ancestry_report
Omit --output for a text summary on stdout. --pop-map is a CSV/TSV with sample_id and population columns; unmapped samples are labelled UNKNOWN.
python ancestry_pca.py --demo --output demo_report
The demo runs on examples/demo_populations.vcf from the ClawBio checkout — 50 samples, 500 variants, 5 population labels.
Verbatim from --demo:
Parsing VCF...
50 samples, 500 variants
Populations: AFR (n=8), AMR (n=5), EAS (n=7), EUR (n=22), SAS (n=8)
Computing PCA (10 components)...
PC1: 7.6% PC2: 4.9%
Generating figures...
Generating report...
Done.
Report: demo_report/report.md
Figures: demo_report/figures
Written under the output directory:
report.md
result.json
figures/pca_composite.png
tables/pc_coordinates.csv
tables/variance_explained.csv
If you use this skill in a publication, please cite: