@brainpilot/skills 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/skills/01_Meta-Skills/academic-research-hub/SKILL.md +108 -0
- package/skills/01_Meta-Skills/academic-research-hub/scripts/requirements.txt +17 -0
- package/skills/01_Meta-Skills/academic-research-hub/scripts/research.py +781 -0
- package/skills/01_Meta-Skills/beautiful-log/SKILL.md +64 -0
- package/skills/01_Meta-Skills/beautiful-log/scripts/beautiful_log.py +274 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/SKILL.md +130 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/assets/config.template.yaml +54 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/assets/top5_digest_template.md +5 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/scripts/build_top5_digest.py +300 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/scripts/common.py +137 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/scripts/merge_results.py +106 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/scripts/run_pipeline.py +177 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/scripts/search_arxiv.py +162 -0
- package/skills/01_Meta-Skills/ethoclaw-daily-paper/scripts/search_pubmed.py +202 -0
- package/skills/01_Meta-Skills/ethoclaw-normalize-tabular/SKILL.md +173 -0
- package/skills/01_Meta-Skills/ethoclaw-normalize-tabular/scripts/normalize_data.py +874 -0
- package/skills/01_Meta-Skills/ethoclaw-pdf-research/SKILL.md +134 -0
- package/skills/01_Meta-Skills/ethoclaw-pdf-research/references/confirmation-prompts.md +31 -0
- package/skills/01_Meta-Skills/ethoclaw-pdf-research/references/output-patterns.md +45 -0
- package/skills/01_Meta-Skills/ethoclaw-pdf-research/scripts/build_markdown_deliverables.py +41 -0
- package/skills/01_Meta-Skills/ethoclaw-pdf-research/scripts/build_research_log.py +84 -0
- package/skills/01_Meta-Skills/ethoclaw-pdf-research/scripts/build_summary_md.py +63 -0
- package/skills/01_Meta-Skills/ethoclaw-pdf-research/scripts/extract_pdf_bundle.py +140 -0
- package/skills/01_Meta-Skills/experiment-controller/SKILL.md +140 -0
- package/skills/01_Meta-Skills/knowledge-graph-builder/SKILL.md +366 -0
- package/skills/01_Meta-Skills/knowledge-graph-builder/scripts/entity_resolution.py +120 -0
- package/skills/01_Meta-Skills/knowledge-graph-builder/scripts/extraction_prompt_template.txt +19 -0
- package/skills/01_Meta-Skills/knowledge-graph-builder/scripts/graph_query.py +106 -0
- package/skills/01_Meta-Skills/knowledge-graph-builder/scripts/hypothesis_cli_reference.py +42 -0
- package/skills/01_Meta-Skills/knowledge-graph-builder/scripts/new_data_source_template.py +116 -0
- package/skills/01_Meta-Skills/knowledge-graph-builder/scripts/requirements.txt +15 -0
- package/skills/01_Meta-Skills/method-design/SKILL.md +61 -0
- package/skills/01_Meta-Skills/multi-search-engine/SKILL.md +119 -0
- package/skills/01_Meta-Skills/research-idea/SKILL.md +65 -0
- package/skills/05_EEG_ERP/eeg-skill/SKILL.md +197 -0
- package/skills/05_EEG_ERP/meg-skill/SKILL.md +188 -0
- package/skills/05_EEG_ERP/meg-skill/scripts/time_frequency.py +223 -0
- package/skills/05_EEG_ERP/mne-eeg-tool/SKILL.md +165 -0
- package/skills/05_EEG_ERP/mne-eeg-tool/scripts/eeg_pipeline_reference.py +231 -0
- package/skills/05_EEG_ERP/seed-iv-skill/SKILL.md +184 -0
- package/skills/05_EEG_ERP/seed-iv-skill/scripts/classify_seed_iv.py +154 -0
- package/skills/05_EEG_ERP/seed-iv-skill/scripts/extract_seed_iv_features.py +190 -0
- package/skills/05_EEG_ERP/seed-iv-skill/scripts/validate_seed_iv.py +102 -0
- package/skills/05_EEG_ERP/seed-vig-skill/SKILL.md +182 -0
- package/skills/05_EEG_ERP/seed-vig-skill/scripts/classify_seed_vig.py +165 -0
- package/skills/05_EEG_ERP/seed-vig-skill/scripts/extract_seed_vig_features.py +185 -0
- package/skills/05_EEG_ERP/seed-vig-skill/scripts/validate_seed_vig.py +88 -0
- package/skills/06_fMRI_Neuroimaging/abcd-skill/SKILL.md +308 -0
- package/skills/06_fMRI_Neuroimaging/abcd-skill/scripts/abcd_qc_summary.py +449 -0
- package/skills/06_fMRI_Neuroimaging/abcd-skill/scripts/extract_abcd_phenotype.py +292 -0
- package/skills/06_fMRI_Neuroimaging/abcd-skill/scripts/reorganize_abcd.py +387 -0
- package/skills/06_fMRI_Neuroimaging/abide-skill/SKILL.md +302 -0
- package/skills/06_fMRI_Neuroimaging/abide-skill/scripts/abide_qc_summary.py +317 -0
- package/skills/06_fMRI_Neuroimaging/abide-skill/scripts/extract_abide_phenotype.py +267 -0
- package/skills/06_fMRI_Neuroimaging/abide-skill/scripts/reorganize_abide.py +387 -0
- package/skills/06_fMRI_Neuroimaging/adhd200-skill/SKILL.md +244 -0
- package/skills/06_fMRI_Neuroimaging/adhd200-skill/scripts/adhd200_qc_summary.py +98 -0
- package/skills/06_fMRI_Neuroimaging/adhd200-skill/scripts/extract_adhd200_phenotype.py +134 -0
- package/skills/06_fMRI_Neuroimaging/adhd200-skill/scripts/reorganize_adhd200.py +206 -0
- package/skills/06_fMRI_Neuroimaging/adni-skill/SKILL.md +358 -0
- package/skills/06_fMRI_Neuroimaging/adni-skill/scripts/generate_adni_task_files.py +1305 -0
- package/skills/06_fMRI_Neuroimaging/adni-skill/scripts/generate_vqa_from_tasks.py +766 -0
- package/skills/06_fMRI_Neuroimaging/adni-skill/scripts/reorganize_adni.py +491 -0
- package/skills/06_fMRI_Neuroimaging/aibl-skill/SKILL.md +295 -0
- package/skills/06_fMRI_Neuroimaging/aibl-skill/scripts/aibl_qc_summary.py +260 -0
- package/skills/06_fMRI_Neuroimaging/aibl-skill/scripts/extract_aibl_phenotype.py +365 -0
- package/skills/06_fMRI_Neuroimaging/aibl-skill/scripts/reorganize_aibl.py +394 -0
- package/skills/06_fMRI_Neuroimaging/aomic-skill/SKILL.md +292 -0
- package/skills/06_fMRI_Neuroimaging/aomic-skill/scripts/aomic_qc_summary.py +258 -0
- package/skills/06_fMRI_Neuroimaging/aomic-skill/scripts/extract_aomic_phenotype.py +284 -0
- package/skills/06_fMRI_Neuroimaging/aomic-skill/scripts/reorganize_aomic.py +322 -0
- package/skills/06_fMRI_Neuroimaging/asl-skill/SKILL.md +168 -0
- package/skills/06_fMRI_Neuroimaging/asl-skill/scripts/compute_cbf.py +224 -0
- package/skills/06_fMRI_Neuroimaging/bids-organizer/SKILL.md +241 -0
- package/skills/06_fMRI_Neuroimaging/bold5000-skill/SKILL.md +186 -0
- package/skills/06_fMRI_Neuroimaging/bold5000-skill/scripts/bold5000_qc_summary.py +96 -0
- package/skills/06_fMRI_Neuroimaging/bold5000-skill/scripts/extract_bold5000_stimulus.py +125 -0
- package/skills/06_fMRI_Neuroimaging/bold5000-skill/scripts/reorganize_bold5000.py +102 -0
- package/skills/06_fMRI_Neuroimaging/camcan-skill/SKILL.md +213 -0
- package/skills/06_fMRI_Neuroimaging/camcan-skill/scripts/camcan_qc_summary.py +131 -0
- package/skills/06_fMRI_Neuroimaging/camcan-skill/scripts/extract_camcan_phenotype.py +145 -0
- package/skills/06_fMRI_Neuroimaging/camcan-skill/scripts/validate_camcan.py +141 -0
- package/skills/06_fMRI_Neuroimaging/cobre-skill/SKILL.md +201 -0
- package/skills/06_fMRI_Neuroimaging/cobre-skill/scripts/cobre_qc_summary.py +95 -0
- package/skills/06_fMRI_Neuroimaging/cobre-skill/scripts/extract_cobre_phenotype.py +104 -0
- package/skills/06_fMRI_Neuroimaging/cobre-skill/scripts/reorganize_cobre.py +140 -0
- package/skills/06_fMRI_Neuroimaging/conn-tool/SKILL.md +180 -0
- package/skills/06_fMRI_Neuroimaging/dcm2nii/SKILL.md +189 -0
- package/skills/06_fMRI_Neuroimaging/dmt-har-med-skill/SKILL.md +183 -0
- package/skills/06_fMRI_Neuroimaging/dmt-har-med-skill/scripts/dmt_har_med_qc_summary.py +96 -0
- package/skills/06_fMRI_Neuroimaging/dmt-har-med-skill/scripts/extract_dmt_har_med_phenotype.py +121 -0
- package/skills/06_fMRI_Neuroimaging/dmt-har-med-skill/scripts/reorganize_dmt_har_med.py +125 -0
- package/skills/06_fMRI_Neuroimaging/dwi-skill/SKILL.md +359 -0
- package/skills/06_fMRI_Neuroimaging/fmri-skill/SKILL.md +371 -0
- package/skills/06_fMRI_Neuroimaging/fmriprep-tool/SKILL.md +228 -0
- package/skills/06_fMRI_Neuroimaging/freesurfer-tool/SKILL.md +286 -0
- package/skills/06_fMRI_Neuroimaging/freesurfer-tool/scripts/freesurfer_processor.py +145 -0
- package/skills/06_fMRI_Neuroimaging/fsl-tool/SKILL.md +208 -0
- package/skills/06_fMRI_Neuroimaging/hbn-skill/SKILL.md +271 -0
- package/skills/06_fMRI_Neuroimaging/hbn-skill/scripts/extract_hbn_phenotype.py +107 -0
- package/skills/06_fMRI_Neuroimaging/hbn-skill/scripts/hbn_qc_summary.py +96 -0
- package/skills/06_fMRI_Neuroimaging/hbn-skill/scripts/reorganize_hbn.py +150 -0
- package/skills/06_fMRI_Neuroimaging/hcpa-skill/SKILL.md +210 -0
- package/skills/06_fMRI_Neuroimaging/hcpa-skill/scripts/extract_hcpa_phenotype.py +146 -0
- package/skills/06_fMRI_Neuroimaging/hcpa-skill/scripts/hcpa_qc_summary.py +120 -0
- package/skills/06_fMRI_Neuroimaging/hcpa-skill/scripts/reorganize_hcpa.py +155 -0
- package/skills/06_fMRI_Neuroimaging/hcpd-skill/SKILL.md +210 -0
- package/skills/06_fMRI_Neuroimaging/hcpd-skill/scripts/extract_hcpd_phenotype.py +148 -0
- package/skills/06_fMRI_Neuroimaging/hcpd-skill/scripts/hcpd_qc_summary.py +125 -0
- package/skills/06_fMRI_Neuroimaging/hcpd-skill/scripts/reorganize_hcpd.py +146 -0
- package/skills/06_fMRI_Neuroimaging/hcpep-skill/SKILL.md +215 -0
- package/skills/06_fMRI_Neuroimaging/hcpep-skill/scripts/extract_hcpep_phenotype.py +157 -0
- package/skills/06_fMRI_Neuroimaging/hcpep-skill/scripts/hcpep_qc_summary.py +143 -0
- package/skills/06_fMRI_Neuroimaging/hcpep-skill/scripts/reorganize_hcpep.py +146 -0
- package/skills/06_fMRI_Neuroimaging/hcppipeline-tool/SKILL.md +217 -0
- package/skills/06_fMRI_Neuroimaging/hcpya-skill/SKILL.md +214 -0
- package/skills/06_fMRI_Neuroimaging/hcpya-skill/scripts/extract_hcpya_phenotype.py +190 -0
- package/skills/06_fMRI_Neuroimaging/hcpya-skill/scripts/hcpya_qc_summary.py +152 -0
- package/skills/06_fMRI_Neuroimaging/hcpya-skill/scripts/reorganize_hcpya.py +203 -0
- package/skills/06_fMRI_Neuroimaging/ixi-skill/SKILL.md +198 -0
- package/skills/06_fMRI_Neuroimaging/ixi-skill/scripts/ixi_qc_summary.py +137 -0
- package/skills/06_fMRI_Neuroimaging/ixi-skill/scripts/reorganize_ixi.py +190 -0
- package/skills/06_fMRI_Neuroimaging/mnd-skill/SKILL.md +191 -0
- package/skills/06_fMRI_Neuroimaging/mnd-skill/scripts/extract_mnd_phenotype.py +143 -0
- package/skills/06_fMRI_Neuroimaging/mnd-skill/scripts/mnd_qc_summary.py +120 -0
- package/skills/06_fMRI_Neuroimaging/mnd-skill/scripts/validate_mnd.py +107 -0
- package/skills/06_fMRI_Neuroimaging/mschallenge-skill/SKILL.md +203 -0
- package/skills/06_fMRI_Neuroimaging/mschallenge-skill/scripts/analyze_lesions.py +119 -0
- package/skills/06_fMRI_Neuroimaging/mschallenge-skill/scripts/longitudinal_lesion.py +148 -0
- package/skills/06_fMRI_Neuroimaging/mschallenge-skill/scripts/mschallenge_qc_summary.py +132 -0
- package/skills/06_fMRI_Neuroimaging/mschallenge-skill/scripts/validate_mschallenge.py +116 -0
- package/skills/06_fMRI_Neuroimaging/nibabel-skill/SKILL.md +184 -0
- package/skills/06_fMRI_Neuroimaging/nibabel-skill/scripts/atlas_coordinate_reference.py +61 -0
- package/skills/06_fMRI_Neuroimaging/nibabel-skill/scripts/freesurfer_io_reference.py +34 -0
- package/skills/06_fMRI_Neuroimaging/nibabel-skill/scripts/nifti_inspection_reference.py +35 -0
- package/skills/06_fMRI_Neuroimaging/nifd-skill/SKILL.md +205 -0
- package/skills/06_fMRI_Neuroimaging/nifd-skill/scripts/extract_nifd_phenotype.py +132 -0
- package/skills/06_fMRI_Neuroimaging/nifd-skill/scripts/nifd_qc_summary.py +111 -0
- package/skills/06_fMRI_Neuroimaging/nifd-skill/scripts/validate_nifd.py +111 -0
- package/skills/06_fMRI_Neuroimaging/nii2dcm/SKILL.md +143 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/SKILL.md +266 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/connectome_reference.py +65 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/denoise_timeseries_reference.py +58 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/hierarchical_parcellation_reference.py +53 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/kmeans_parcellation_reference.py +53 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/preprocess_bold_reference.py +76 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/rest_dictlearning_reference.py +56 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/rest_ica_reference.py +59 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/second_level_glm_reference.py +58 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/spacenet_classifier_reference.py +59 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/svm_classifier_reference.py +60 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/task_glm_reference.py +63 -0
- package/skills/06_fMRI_Neuroimaging/nilearn-tool/scripts/zalff_summary_reference.py +109 -0
- package/skills/06_fMRI_Neuroimaging/nsd-skill/SKILL.md +210 -0
- package/skills/06_fMRI_Neuroimaging/nsd-skill/scripts/extract_nsd_stimulus.py +171 -0
- package/skills/06_fMRI_Neuroimaging/nsd-skill/scripts/nsd_qc_summary.py +142 -0
- package/skills/06_fMRI_Neuroimaging/nsd-skill/scripts/validate_nsd.py +142 -0
- package/skills/06_fMRI_Neuroimaging/oasis-skill/SKILL.md +205 -0
- package/skills/06_fMRI_Neuroimaging/oasis-skill/scripts/extract_oasis_phenotype.py +126 -0
- package/skills/06_fMRI_Neuroimaging/oasis-skill/scripts/oasis_qc_summary.py +115 -0
- package/skills/06_fMRI_Neuroimaging/oasis-skill/scripts/validate_oasis.py +119 -0
- package/skills/06_fMRI_Neuroimaging/pet-skill/SKILL.md +173 -0
- package/skills/06_fMRI_Neuroimaging/pet-skill/scripts/compute_suvr.py +202 -0
- package/skills/06_fMRI_Neuroimaging/pnc-skill/SKILL.md +206 -0
- package/skills/06_fMRI_Neuroimaging/pnc-skill/scripts/extract_pnc_phenotype.py +136 -0
- package/skills/06_fMRI_Neuroimaging/pnc-skill/scripts/pnc_qc_summary.py +116 -0
- package/skills/06_fMRI_Neuroimaging/pnc-skill/scripts/validate_pnc.py +120 -0
- package/skills/06_fMRI_Neuroimaging/ppmi-skill/SKILL.md +209 -0
- package/skills/06_fMRI_Neuroimaging/ppmi-skill/scripts/extract_ppmi_phenotype.py +138 -0
- package/skills/06_fMRI_Neuroimaging/ppmi-skill/scripts/ppmi_qc_summary.py +111 -0
- package/skills/06_fMRI_Neuroimaging/ppmi-skill/scripts/validate_ppmi.py +117 -0
- package/skills/06_fMRI_Neuroimaging/qsiprep-tool/SKILL.md +320 -0
- package/skills/06_fMRI_Neuroimaging/rest-mneta-mdd-skill/SKILL.md +215 -0
- package/skills/06_fMRI_Neuroimaging/rest-mneta-mdd-skill/scripts/extract_rest_mdd_phenotype.py +132 -0
- package/skills/06_fMRI_Neuroimaging/rest-mneta-mdd-skill/scripts/harmonize_sites.py +152 -0
- package/skills/06_fMRI_Neuroimaging/rest-mneta-mdd-skill/scripts/rest_mdd_qc_summary.py +124 -0
- package/skills/06_fMRI_Neuroimaging/rest-mneta-mdd-skill/scripts/validate_rest_mdd.py +103 -0
- package/skills/06_fMRI_Neuroimaging/smri-skill/SKILL.md +302 -0
- package/skills/06_fMRI_Neuroimaging/tcp-skill/SKILL.md +204 -0
- package/skills/06_fMRI_Neuroimaging/tcp-skill/scripts/extract_tcp_phenotype.py +139 -0
- package/skills/06_fMRI_Neuroimaging/tcp-skill/scripts/tcp_qc_summary.py +111 -0
- package/skills/06_fMRI_Neuroimaging/tcp-skill/scripts/validate_tcp.py +99 -0
- package/skills/06_fMRI_Neuroimaging/ucla-cnp-skill/SKILL.md +217 -0
- package/skills/06_fMRI_Neuroimaging/ucla-cnp-skill/scripts/extract_ucla_cnp_phenotype.py +145 -0
- package/skills/06_fMRI_Neuroimaging/ucla-cnp-skill/scripts/ucla_cnp_qc_summary.py +111 -0
- package/skills/06_fMRI_Neuroimaging/ucla-cnp-skill/scripts/validate_ucla_cnp.py +113 -0
- package/skills/06_fMRI_Neuroimaging/ukb-skill/SKILL.md +310 -0
- package/skills/06_fMRI_Neuroimaging/ukb-skill/scripts/build_ukb_survival.py +210 -0
- package/skills/06_fMRI_Neuroimaging/ukb-skill/scripts/extract_ukb_cases.py +308 -0
- package/skills/06_fMRI_Neuroimaging/ukb-skill/scripts/extract_ukb_phenotype.py +232 -0
- package/skills/06_fMRI_Neuroimaging/ukb-skill/scripts/ukb_qc_summary.py +158 -0
- package/skills/06_fMRI_Neuroimaging/wmh-segmentation/SKILL.md +133 -0
- package/skills/07_Computational_Modeling/detrending/SKILL.md +118 -0
- package/skills/07_Computational_Modeling/dictlearning/SKILL.md +122 -0
- package/skills/07_Computational_Modeling/filtering/SKILL.md +121 -0
- package/skills/07_Computational_Modeling/glm/SKILL.md +153 -0
- package/skills/07_Computational_Modeling/hierarchical/SKILL.md +121 -0
- package/skills/07_Computational_Modeling/ica/SKILL.md +122 -0
- package/skills/07_Computational_Modeling/kmeans/SKILL.md +119 -0
- package/skills/07_Computational_Modeling/run_models/SKILL.md +427 -0
- package/skills/07_Computational_Modeling/spacenet/SKILL.md +122 -0
- package/skills/07_Computational_Modeling/svm/SKILL.md +120 -0
- package/skills/08_Computational_Neuroscience/brain_gnn/SKILL.md +183 -0
- package/skills/08_Computational_Neuroscience/dipy-tool/SKILL.md +239 -0
- package/skills/08_Computational_Neuroscience/dipy-tool/scripts/dti_metrics_reference.py +70 -0
- package/skills/08_Computational_Neuroscience/dipy-tool/scripts/load_and_mask_reference.py +76 -0
- package/skills/08_Computational_Neuroscience/dipy-tool/scripts/roi_stats_reference.py +59 -0
- package/skills/08_Computational_Neuroscience/fm_app/SKILL.md +195 -0
- package/skills/08_Computational_Neuroscience/neurostorm/SKILL.md +151 -0
- package/skills/13_Visualization/brain-visualization/SKILL.md +191 -0
- package/skills/13_Visualization/brain-visualization/scripts/connectome_reference.py +108 -0
- package/skills/13_Visualization/brain-visualization/scripts/freesurfer_ply_reference.py +54 -0
- package/skills/13_Visualization/brain-visualization/scripts/zalff_summary_reference.py +116 -0
- package/skills/13_Visualization/ethoclaw-paper-figure-layout/SKILL.md +78 -0
- package/skills/13_Visualization/ethoclaw-paper-figure-layout/assets/naturecomm_figures.tex +74 -0
- package/skills/13_Visualization/ethoclaw-paper-figure-layout/scripts/layout_results_foldered.py +579 -0
- package/skills/14_Writing/overleaf-skill/SKILL.md +184 -0
- package/skills/14_Writing/overleaf-skill/scripts/install.sh +30 -0
- package/skills/14_Writing/paper-writing/SKILL.md +146 -0
- package/skills/14_Writing/paper-writing/scripts/data_statement_templates.py +164 -0
- package/skills/14_Writing/paper-writing/scripts/figure_templates.py +315 -0
- package/skills/14_Writing/paper-writing/scripts/nature_figure_style.py +214 -0
- package/skills/14_Writing/paper-writing/scripts/section_phrasebank.py +246 -0
- package/skills/16_Animal_Behavior/deeplabcut/SKILL.md +154 -0
- package/skills/16_Animal_Behavior/deeplabcut/references/3d-pose.md +89 -0
- package/skills/16_Animal_Behavior/deeplabcut/references/maDLC.md +123 -0
- package/skills/16_Animal_Behavior/deeplabcut/references/modelzoo.md +98 -0
- package/skills/16_Animal_Behavior/deeplabcut/references/standard-pipeline.md +165 -0
- package/skills/16_Animal_Behavior/deeplabcut/references/utilities.md +146 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/SKILL.md +274 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/report_template_en.html +112 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/report_template_en.md +21 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/cluster-section.md +5 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/heatmap-section.md +5 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/integrated-interpretation.md +3 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/overview.md +3 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/project-summary.md +3 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/radar-section.md +5 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/raw-trajectory.md +3 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/sample-check.md +3 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/single-subject-section.md +3 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/assets/section_templates/stats-section.md +5 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/experiment-types/epm.md +52 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/experiment-types/fst.md +37 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/experiment-types/nor.md +39 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/experiment-types/oft.md +43 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/experiment-types/tcst.md +45 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/experiment-types/tst.md +36 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/input-types.md +59 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/interpretation-guardrails.md +45 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/metadata-schema.md +57 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/report-sections.md +86 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/references/section-selection-rules.md +169 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/scripts/build_report_manifest.py +27 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/scripts/render_report.py +34 -0
- package/skills/16_Animal_Behavior/ethoclaw-analysis-report/scripts/report_utils.py +1121 -0
- package/skills/16_Animal_Behavior/ethoclaw-animal-grounding/SKILL.md +390 -0
- package/skills/16_Animal_Behavior/ethoclaw-animal-grounding/reference_code.py +98 -0
- package/skills/16_Animal_Behavior/ethoclaw-animal-pose-estimation/SKILL.md +336 -0
- package/skills/16_Animal_Behavior/ethoclaw-kinematic-parameter-generator/README.md +21 -0
- package/skills/16_Animal_Behavior/ethoclaw-kinematic-parameter-generator/SKILL.md +41 -0
- package/skills/16_Animal_Behavior/ethoclaw-kinematic-parameter-generator/batch_kinematic_generator.py +663 -0
- package/skills/16_Animal_Behavior/ethoclaw-kinematic-parameter-generator/config.json +19 -0
- package/skills/16_Animal_Behavior/ethoclaw-kinematic-parameter-generator/generate_kinematic_parameter.py +401 -0
- package/skills/16_Animal_Behavior/ethoclaw-kinematic-parameter-generator/kinematic_generator.py +265 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-clustermap-generate/SKILL.md +72 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-clustermap-generate/references/config.example.toml +56 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-clustermap-generate/scripts/cluster_all_params.py +232 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-clustermap-generate/scripts/cluster_all_params_from_config.py +236 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-radar-generate/SKILL.md +68 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-radar-generate/references/notes.md +5 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-radar-generate/scripts/plot_h5_radar.py +513 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-violin-stats-generate/SKILL.md +52 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-violin-stats-generate/config.toml +81 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-violin-stats-generate/references/stats-rule.md +18 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-violin-stats-generate/scripts/h5_inspect.py +79 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-violin-stats-generate/scripts/h5_violin_batch.py +624 -0
- package/skills/16_Animal_Behavior/ethoclaw-multiparameter-violin-stats-generate/scripts/h5_violin_stats.py +438 -0
- package/skills/16_Animal_Behavior/ethoclaw-trajectory-velocity-heatmap-generate/SKILL.md +280 -0
- package/skills/16_Animal_Behavior/ethoclaw-trajectory-velocity-heatmap-generate/core_scripts/heatmap_trajectory.py +790 -0
- package/skills/16_Animal_Behavior/ethoclaw-trajectory-velocity-heatmap-generate/core_scripts/heatmap_velocity.py +855 -0
- package/skills/16_Animal_Behavior/ethoclaw-trajectory-velocity-heatmap-generate/reference_data/reference_2d.csv +101 -0
- package/skills/16_Animal_Behavior/ethoclaw-trajectory-velocity-heatmap-generate/reference_data/reference_2d.h5 +0 -0
- package/skills/16_Animal_Behavior/ethoclaw-trajectory-velocity-heatmap-generate/reference_data/reference_data_readme.md +126 -0
|
@@ -0,0 +1,438 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Read an HDF5 (.h5) file, compute group-difference statistics, and output violin plots.
|
|
3
|
+
|
|
4
|
+
This script is intended to be used by the OpenClaw skill `h5-multiparameter-violin-stats`.
|
|
5
|
+
|
|
6
|
+
Key behavior (per user spec):
|
|
7
|
+
- 2 groups: use t-test OR Mann–Whitney U
|
|
8
|
+
- >=3 groups: use one-way ANOVA OR Kruskal–Wallis; if overall significant, do pairwise
|
|
9
|
+
|
|
10
|
+
CLI usage (typical):
|
|
11
|
+
python h5_violin_stats.py \
|
|
12
|
+
--h5 data.h5 \
|
|
13
|
+
--dataset /path/to/values \
|
|
14
|
+
--group /path/to/group_labels \
|
|
15
|
+
--method auto \
|
|
16
|
+
--out outputs/violin.png
|
|
17
|
+
|
|
18
|
+
Expected inputs:
|
|
19
|
+
- dataset: numeric 1D array-like (N,)
|
|
20
|
+
- group: labels array-like (N,), str/int
|
|
21
|
+
|
|
22
|
+
If your H5 layout differs (e.g., multiple datasets per sample), adapt mapping or add a loader.
|
|
23
|
+
|
|
24
|
+
Dependencies:
|
|
25
|
+
h5py numpy pandas scipy matplotlib seaborn
|
|
26
|
+
Config:
|
|
27
|
+
Uses TOML (Python 3.11+ builtin tomllib). Default config is ../config.toml (relative to this script).
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
from __future__ import annotations
|
|
31
|
+
|
|
32
|
+
import argparse
|
|
33
|
+
import math
|
|
34
|
+
import os
|
|
35
|
+
import sys
|
|
36
|
+
from dataclasses import dataclass
|
|
37
|
+
from typing import Iterable, Literal, Sequence
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def _load_toml(path: str) -> dict:
|
|
41
|
+
"""Load TOML config. Python 3.11+: tomllib builtin."""
|
|
42
|
+
try:
|
|
43
|
+
import tomllib # py3.11+
|
|
44
|
+
except Exception as e:
|
|
45
|
+
_die(f"tomllib not available (need Python 3.11+). Details: {e}")
|
|
46
|
+
|
|
47
|
+
with open(path, "rb") as f:
|
|
48
|
+
return tomllib.load(f)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def _default_config_path() -> str:
|
|
52
|
+
# ../config.toml relative to this script file
|
|
53
|
+
here = os.path.dirname(os.path.abspath(__file__))
|
|
54
|
+
return os.path.join(os.path.dirname(here), "config.toml")
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
def _deep_get(d: dict, keys: list[str], default=None):
|
|
58
|
+
cur = d
|
|
59
|
+
for k in keys:
|
|
60
|
+
if not isinstance(cur, dict) or k not in cur:
|
|
61
|
+
return default
|
|
62
|
+
cur = cur[k]
|
|
63
|
+
return cur
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
Method = Literal["auto", "ttest", "mannwhitney", "anova", "kruskal"]
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
def _die(msg: str, code: int = 2) -> "NoReturn":
|
|
70
|
+
print(f"ERROR: {msg}", file=sys.stderr)
|
|
71
|
+
raise SystemExit(code)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def _require_deps() -> None:
|
|
75
|
+
missing = []
|
|
76
|
+
for mod in ["h5py", "numpy", "pandas", "scipy", "matplotlib", "seaborn"]:
|
|
77
|
+
try:
|
|
78
|
+
__import__(mod)
|
|
79
|
+
except Exception:
|
|
80
|
+
missing.append(mod)
|
|
81
|
+
if missing:
|
|
82
|
+
_die(
|
|
83
|
+
"missing dependencies: "
|
|
84
|
+
+ ", ".join(missing)
|
|
85
|
+
+ "\nInstall (Ubuntu/Debian example): apt install python3-pip python3-venv && pip install "
|
|
86
|
+
+ " ".join(missing)
|
|
87
|
+
)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
def _as_1d(seq) -> "list":
|
|
91
|
+
# keep as python list to avoid depending on numpy early
|
|
92
|
+
try:
|
|
93
|
+
return list(seq)
|
|
94
|
+
except Exception:
|
|
95
|
+
return [seq]
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def _holm_bonferroni(p_values: Sequence[float]) -> list[float]:
|
|
99
|
+
"""Holm–Bonferroni adjusted p-values (strong FWER control)."""
|
|
100
|
+
m = len(p_values)
|
|
101
|
+
order = sorted(range(m), key=lambda i: p_values[i])
|
|
102
|
+
adj = [0.0] * m
|
|
103
|
+
prev = 0.0
|
|
104
|
+
for k, i in enumerate(order):
|
|
105
|
+
raw = p_values[i]
|
|
106
|
+
val = (m - k) * raw
|
|
107
|
+
val = max(val, prev) # enforce monotonicity
|
|
108
|
+
prev = val
|
|
109
|
+
adj[i] = min(val, 1.0)
|
|
110
|
+
return adj
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
@dataclass
|
|
114
|
+
class TestResult:
|
|
115
|
+
test: str
|
|
116
|
+
p_value: float
|
|
117
|
+
statistic: float | None = None
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
def _choose_method(n_groups: int, method: Method, cfg: dict) -> str:
|
|
121
|
+
if method != "auto":
|
|
122
|
+
return method
|
|
123
|
+
|
|
124
|
+
m2 = _deep_get(cfg, ["stats", "default_2_groups"], "ttest")
|
|
125
|
+
m3 = _deep_get(cfg, ["stats", "default_3plus_groups"], "anova")
|
|
126
|
+
if n_groups == 2:
|
|
127
|
+
return str(m2)
|
|
128
|
+
return str(m3)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def _run_overall_test(groups: list[str], values: list[float], method: str) -> TestResult:
|
|
132
|
+
import numpy as np
|
|
133
|
+
from scipy import stats
|
|
134
|
+
|
|
135
|
+
# build per-group arrays
|
|
136
|
+
uniq = sorted(set(groups))
|
|
137
|
+
arrays = [np.asarray([v for g, v in zip(groups, values) if g == u], dtype=float) for u in uniq]
|
|
138
|
+
|
|
139
|
+
if len(uniq) == 2:
|
|
140
|
+
a, b = arrays
|
|
141
|
+
if method == "ttest":
|
|
142
|
+
stat, p = stats.ttest_ind(a, b, equal_var=False, nan_policy="omit")
|
|
143
|
+
return TestResult("Welch t-test", float(p), None if stat is None else float(stat))
|
|
144
|
+
if method == "mannwhitney":
|
|
145
|
+
stat, p = stats.mannwhitneyu(a, b, alternative="two-sided")
|
|
146
|
+
return TestResult("Mann–Whitney U", float(p), float(stat))
|
|
147
|
+
_die(f"method '{method}' incompatible with 2 groups")
|
|
148
|
+
|
|
149
|
+
# >=3
|
|
150
|
+
if method == "anova":
|
|
151
|
+
stat, p = stats.f_oneway(*arrays)
|
|
152
|
+
return TestResult("One-way ANOVA", float(p), float(stat))
|
|
153
|
+
if method == "kruskal":
|
|
154
|
+
stat, p = stats.kruskal(*arrays)
|
|
155
|
+
return TestResult("Kruskal–Wallis", float(p), float(stat))
|
|
156
|
+
|
|
157
|
+
_die(f"method '{method}' incompatible with {len(uniq)} groups")
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
def _run_pairwise(groups: list[str], values: list[float], base_method: str, correction: str = "holm") -> list[dict]:
|
|
161
|
+
"""Pairwise comparisons among groups.
|
|
162
|
+
|
|
163
|
+
For parametric overall: use Welch t-test for pairs.
|
|
164
|
+
For nonparametric overall: use Mann–Whitney U for pairs.
|
|
165
|
+
|
|
166
|
+
Returns list of dicts: {a,b,test,p,stat}
|
|
167
|
+
"""
|
|
168
|
+
import numpy as np
|
|
169
|
+
from scipy import stats
|
|
170
|
+
|
|
171
|
+
uniq = sorted(set(groups))
|
|
172
|
+
by = {
|
|
173
|
+
u: np.asarray([v for g, v in zip(groups, values) if g == u], dtype=float)
|
|
174
|
+
for u in uniq
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
rows = []
|
|
178
|
+
pvals = []
|
|
179
|
+
for i in range(len(uniq)):
|
|
180
|
+
for j in range(i + 1, len(uniq)):
|
|
181
|
+
a_name, b_name = uniq[i], uniq[j]
|
|
182
|
+
a, b = by[a_name], by[b_name]
|
|
183
|
+
if base_method in {"anova", "ttest"}:
|
|
184
|
+
stat, p = stats.ttest_ind(a, b, equal_var=False, nan_policy="omit")
|
|
185
|
+
test = "Welch t-test (pairwise)"
|
|
186
|
+
statv = None if stat is None else float(stat)
|
|
187
|
+
else:
|
|
188
|
+
stat, p = stats.mannwhitneyu(a, b, alternative="two-sided")
|
|
189
|
+
test = "Mann–Whitney U (pairwise)"
|
|
190
|
+
statv = float(stat)
|
|
191
|
+
pvals.append(float(p))
|
|
192
|
+
rows.append({"a": a_name, "b": b_name, "test": test, "p": float(p), "stat": statv})
|
|
193
|
+
|
|
194
|
+
corr = (correction or "holm").lower()
|
|
195
|
+
if corr == "holm":
|
|
196
|
+
adj = _holm_bonferroni(pvals)
|
|
197
|
+
for row, ap in zip(rows, adj):
|
|
198
|
+
row["p_adj"] = float(ap)
|
|
199
|
+
row["p_adj_method"] = "holm"
|
|
200
|
+
elif corr == "bonferroni":
|
|
201
|
+
m = len(pvals)
|
|
202
|
+
for row in rows:
|
|
203
|
+
row["p_adj"] = min(float(row["p"]) * m, 1.0)
|
|
204
|
+
row["p_adj_method"] = "bonferroni"
|
|
205
|
+
else:
|
|
206
|
+
_die(f"unsupported pairwise_correction: {correction}")
|
|
207
|
+
|
|
208
|
+
return rows
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
def _read_h5_1d(h5_path: str, dataset_path: str, group_path: str) -> tuple[list[float], list[str]]:
|
|
212
|
+
import h5py
|
|
213
|
+
import numpy as np
|
|
214
|
+
|
|
215
|
+
with h5py.File(h5_path, "r") as h5:
|
|
216
|
+
if dataset_path not in h5:
|
|
217
|
+
_die(f"dataset path not found in h5: {dataset_path}")
|
|
218
|
+
if group_path not in h5:
|
|
219
|
+
_die(f"group path not found in h5: {group_path}")
|
|
220
|
+
|
|
221
|
+
x = h5[dataset_path][...]
|
|
222
|
+
g = h5[group_path][...]
|
|
223
|
+
|
|
224
|
+
x = np.asarray(x).reshape(-1)
|
|
225
|
+
g = np.asarray(g).reshape(-1)
|
|
226
|
+
|
|
227
|
+
if x.shape[0] != g.shape[0]:
|
|
228
|
+
_die(f"length mismatch: values N={x.shape[0]} vs groups N={g.shape[0]}")
|
|
229
|
+
|
|
230
|
+
# decode bytes labels
|
|
231
|
+
groups: list[str] = []
|
|
232
|
+
for item in g.tolist():
|
|
233
|
+
if isinstance(item, (bytes, bytearray)):
|
|
234
|
+
groups.append(item.decode("utf-8", errors="replace"))
|
|
235
|
+
else:
|
|
236
|
+
groups.append(str(item))
|
|
237
|
+
|
|
238
|
+
# numeric values
|
|
239
|
+
values = [float(v) if v is not None and not (isinstance(v, float) and math.isnan(v)) else float("nan") for v in x.tolist()]
|
|
240
|
+
|
|
241
|
+
return values, groups
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
def _make_violin(values: list[float], groups: list[str], out_path: str, title: str | None, cfg: dict) -> None:
|
|
245
|
+
import numpy as np
|
|
246
|
+
import pandas as pd
|
|
247
|
+
import matplotlib
|
|
248
|
+
|
|
249
|
+
matplotlib.use("Agg")
|
|
250
|
+
import matplotlib.pyplot as plt
|
|
251
|
+
import seaborn as sns
|
|
252
|
+
|
|
253
|
+
# theme
|
|
254
|
+
style = _deep_get(cfg, ["plot", "style"], "whitegrid")
|
|
255
|
+
context = _deep_get(cfg, ["plot", "context"], "notebook")
|
|
256
|
+
sns.set_theme(style=style, context=context)
|
|
257
|
+
|
|
258
|
+
palette = _deep_get(cfg, ["plot", "palette"], "Set2")
|
|
259
|
+
|
|
260
|
+
df = pd.DataFrame({"value": values, "group": groups})
|
|
261
|
+
|
|
262
|
+
fig_w = float(_deep_get(cfg, ["plot", "fig_width"], 10))
|
|
263
|
+
fig_h = float(_deep_get(cfg, ["plot", "fig_height"], 5))
|
|
264
|
+
cut = float(_deep_get(cfg, ["plot", "cut"], 0))
|
|
265
|
+
|
|
266
|
+
summary = str(_deep_get(cfg, ["plot", "summary"], "box")).lower()
|
|
267
|
+
|
|
268
|
+
inner = None
|
|
269
|
+
if summary in {"box", "quartile"}:
|
|
270
|
+
inner = "box" if summary == "box" else "quartile"
|
|
271
|
+
|
|
272
|
+
plt.figure(figsize=(fig_w, fig_h))
|
|
273
|
+
ax = sns.violinplot(data=df, x="group", y="value", inner=inner, cut=cut, palette=palette)
|
|
274
|
+
|
|
275
|
+
# overlay points
|
|
276
|
+
if bool(_deep_get(cfg, ["plot", "show_points"], True)):
|
|
277
|
+
sns.stripplot(
|
|
278
|
+
data=df,
|
|
279
|
+
x="group",
|
|
280
|
+
y="value",
|
|
281
|
+
color=_deep_get(cfg, ["plot", "point_color"], "black"),
|
|
282
|
+
size=float(_deep_get(cfg, ["plot", "point_size"], 3)),
|
|
283
|
+
alpha=float(_deep_get(cfg, ["plot", "point_alpha"], 0.4)),
|
|
284
|
+
jitter=float(_deep_get(cfg, ["plot", "point_jitter"], 0.2)),
|
|
285
|
+
)
|
|
286
|
+
|
|
287
|
+
# custom summary overlays
|
|
288
|
+
if summary in {"mean_sem", "median_iqr"}:
|
|
289
|
+
uniq = list(df["group"].unique())
|
|
290
|
+
xs = np.arange(len(uniq))
|
|
291
|
+
col = _deep_get(cfg, ["plot", "summary_color"], "black")
|
|
292
|
+
cap = float(_deep_get(cfg, ["plot", "summary_capsize"], 4))
|
|
293
|
+
lw = float(_deep_get(cfg, ["plot", "summary_linewidth"], 1.5))
|
|
294
|
+
|
|
295
|
+
centers = []
|
|
296
|
+
lows = []
|
|
297
|
+
highs = []
|
|
298
|
+
for u in uniq:
|
|
299
|
+
arr = df.loc[df["group"] == u, "value"].dropna().to_numpy(dtype=float)
|
|
300
|
+
if arr.size == 0:
|
|
301
|
+
centers.append(np.nan)
|
|
302
|
+
lows.append(np.nan)
|
|
303
|
+
highs.append(np.nan)
|
|
304
|
+
continue
|
|
305
|
+
if summary == "mean_sem":
|
|
306
|
+
center = float(np.mean(arr))
|
|
307
|
+
sem = float(np.std(arr, ddof=1) / math.sqrt(arr.size)) if arr.size > 1 else 0.0
|
|
308
|
+
centers.append(center)
|
|
309
|
+
lows.append(center - sem)
|
|
310
|
+
highs.append(center + sem)
|
|
311
|
+
else:
|
|
312
|
+
q1 = float(np.percentile(arr, 25))
|
|
313
|
+
q2 = float(np.percentile(arr, 50))
|
|
314
|
+
q3 = float(np.percentile(arr, 75))
|
|
315
|
+
centers.append(q2)
|
|
316
|
+
lows.append(q1)
|
|
317
|
+
highs.append(q3)
|
|
318
|
+
|
|
319
|
+
yerr = np.vstack([np.asarray(centers) - np.asarray(lows), np.asarray(highs) - np.asarray(centers)])
|
|
320
|
+
ax.errorbar(xs, centers, yerr=yerr, fmt="o", color=col, capsize=cap, lw=lw, ms=4, zorder=10)
|
|
321
|
+
|
|
322
|
+
ax.set_xlabel("Group")
|
|
323
|
+
ax.set_ylabel("Value")
|
|
324
|
+
if title:
|
|
325
|
+
ax.set_title(title)
|
|
326
|
+
|
|
327
|
+
plt.tight_layout()
|
|
328
|
+
os.makedirs(os.path.dirname(out_path) or ".", exist_ok=True)
|
|
329
|
+
dpi = int(_deep_get(cfg, ["dump", "png_dpi"], 200))
|
|
330
|
+
save_pdf = bool(_deep_get(cfg, ["dump", "save_pdf"], False))
|
|
331
|
+
|
|
332
|
+
# Always save PNG
|
|
333
|
+
png_path = out_path
|
|
334
|
+
root, ext = os.path.splitext(png_path)
|
|
335
|
+
if ext.lower() != ".png":
|
|
336
|
+
png_path = root + ".png"
|
|
337
|
+
plt.savefig(png_path, dpi=dpi)
|
|
338
|
+
|
|
339
|
+
# Optionally save PDF alongside
|
|
340
|
+
if save_pdf:
|
|
341
|
+
pdf_path = os.path.splitext(png_path)[0] + ".pdf"
|
|
342
|
+
plt.savefig(pdf_path)
|
|
343
|
+
|
|
344
|
+
plt.close()
|
|
345
|
+
|
|
346
|
+
def build_parser() -> argparse.ArgumentParser:
|
|
347
|
+
p = argparse.ArgumentParser()
|
|
348
|
+
p.add_argument(
|
|
349
|
+
"--config",
|
|
350
|
+
default="",
|
|
351
|
+
help="Path to config.toml (default: ../config.toml relative to this script)",
|
|
352
|
+
)
|
|
353
|
+
p.add_argument("--h5", required=True, help="Path to .h5/.hdf5 file")
|
|
354
|
+
p.add_argument("--dataset", required=True, help="H5 path to numeric 1D dataset")
|
|
355
|
+
p.add_argument("--group", required=True, help="H5 path to group labels (same length)")
|
|
356
|
+
p.add_argument(
|
|
357
|
+
"--method",
|
|
358
|
+
default="auto",
|
|
359
|
+
choices=["auto", "ttest", "mannwhitney", "anova", "kruskal"],
|
|
360
|
+
help="Stat method selector. auto: ttest for 2 groups, anova for >=3",
|
|
361
|
+
)
|
|
362
|
+
p.add_argument("--alpha", type=float, default=0.05, help="Significance level")
|
|
363
|
+
p.add_argument("--out", default="outputs/violin.png", help="Output image path")
|
|
364
|
+
p.add_argument("--out-json", default="", help="Optional output json path")
|
|
365
|
+
p.add_argument("--title", default="", help="Plot title")
|
|
366
|
+
p.add_argument("--no-pairwise", action="store_true", help="Skip pairwise comparisons")
|
|
367
|
+
return p
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
def main(argv: Sequence[str]) -> int:
|
|
371
|
+
_require_deps()
|
|
372
|
+
|
|
373
|
+
args = build_parser().parse_args(argv)
|
|
374
|
+
|
|
375
|
+
cfg_path = args.config.strip() or _default_config_path()
|
|
376
|
+
if not os.path.exists(cfg_path):
|
|
377
|
+
_die(f"config file not found: {cfg_path}")
|
|
378
|
+
cfg = _load_toml(cfg_path)
|
|
379
|
+
|
|
380
|
+
# allow config to set defaults
|
|
381
|
+
alpha = float(_deep_get(cfg, ["stats", "alpha"], args.alpha))
|
|
382
|
+
args.alpha = alpha
|
|
383
|
+
|
|
384
|
+
values, groups = _read_h5_1d(args.h5, args.dataset, args.group)
|
|
385
|
+
uniq = sorted(set(groups))
|
|
386
|
+
method = _choose_method(len(uniq), args.method, cfg)
|
|
387
|
+
|
|
388
|
+
overall = _run_overall_test(groups, values, method)
|
|
389
|
+
|
|
390
|
+
pairwise = []
|
|
391
|
+
pairwise_only_if_sig = bool(_deep_get(cfg, ["stats", "pairwise_only_if_overall_sig"], True))
|
|
392
|
+
correction = str(_deep_get(cfg, ["stats", "pairwise_correction"], "holm"))
|
|
393
|
+
|
|
394
|
+
if (not args.no_pairwise) and len(uniq) >= 3:
|
|
395
|
+
if (not pairwise_only_if_sig) or (overall.p_value <= args.alpha):
|
|
396
|
+
pairwise = _run_pairwise(groups, values, method, correction=correction)
|
|
397
|
+
elif (not args.no_pairwise) and len(uniq) == 2:
|
|
398
|
+
pairwise = []
|
|
399
|
+
|
|
400
|
+
title = args.title.strip() or f"{overall.test}: p={overall.p_value:.3g}"
|
|
401
|
+
_make_violin(values, groups, args.out, title=title, cfg=cfg)
|
|
402
|
+
|
|
403
|
+
result = {
|
|
404
|
+
"n": len(values),
|
|
405
|
+
"groups": uniq,
|
|
406
|
+
"config": cfg_path,
|
|
407
|
+
"method_selected": method,
|
|
408
|
+
"overall": {"test": overall.test, "p": overall.p_value, "stat": overall.statistic},
|
|
409
|
+
"pairwise": pairwise,
|
|
410
|
+
"alpha": args.alpha,
|
|
411
|
+
"plot": args.out,
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
if args.out_json:
|
|
415
|
+
import json
|
|
416
|
+
|
|
417
|
+
os.makedirs(os.path.dirname(args.out_json) or ".", exist_ok=True)
|
|
418
|
+
with open(args.out_json, "w", encoding="utf-8") as f:
|
|
419
|
+
json.dump(result, f, ensure_ascii=False, indent=2)
|
|
420
|
+
|
|
421
|
+
# Always print a concise summary for chat-based usage
|
|
422
|
+
print(f"Overall: {overall.test} p={overall.p_value:.6g}")
|
|
423
|
+
if len(uniq) >= 3 and pairwise:
|
|
424
|
+
adj_method = pairwise[0].get("p_adj_method", "adj")
|
|
425
|
+
print(f"Pairwise ({adj_method}-adjusted p):")
|
|
426
|
+
for row in pairwise:
|
|
427
|
+
print(
|
|
428
|
+
f" {row['a']} vs {row['b']}: p={row['p']:.4g} p_adj={row['p_adj']:.4g}"
|
|
429
|
+
)
|
|
430
|
+
print(f"Saved plot: {args.out}")
|
|
431
|
+
if args.out_json:
|
|
432
|
+
print(f"Saved json: {args.out_json}")
|
|
433
|
+
|
|
434
|
+
return 0
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
if __name__ == "__main__":
|
|
438
|
+
raise SystemExit(main(sys.argv[1:]))
|