@brainpilot/skills 0.0.6 → 0.0.8
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,177 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
import argparse
|
|
3
|
+
import json
|
|
4
|
+
import subprocess
|
|
5
|
+
import sys
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
|
|
8
|
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
|
9
|
+
if str(SCRIPT_DIR) not in sys.path:
|
|
10
|
+
sys.path.insert(0, str(SCRIPT_DIR))
|
|
11
|
+
|
|
12
|
+
from common import load_config # noqa: E402
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
SKILL_DIR = Path(__file__).resolve().parents[1]
|
|
16
|
+
SCRIPTS_DIR = SKILL_DIR / "scripts"
|
|
17
|
+
DEFAULT_CONFIG = SKILL_DIR / "assets" / "config.template.yaml"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def coerce_float(value, default):
|
|
21
|
+
if value in (None, ""):
|
|
22
|
+
return default
|
|
23
|
+
try:
|
|
24
|
+
return float(value)
|
|
25
|
+
except (TypeError, ValueError):
|
|
26
|
+
return default
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def run_command(command, cwd):
|
|
30
|
+
subprocess.run(command, cwd=str(cwd), check=True)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def join_values(values, limit=None):
|
|
34
|
+
if not values:
|
|
35
|
+
return "Unknown"
|
|
36
|
+
selected = values[:limit] if limit else values
|
|
37
|
+
return ", ".join(selected)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def render_candidate_titles(payload):
|
|
41
|
+
lines = [
|
|
42
|
+
"# Candidate Titles Passed to Agent",
|
|
43
|
+
"",
|
|
44
|
+
f"- Generated At: {payload.get('generated_at', '')}",
|
|
45
|
+
f"- Candidate Count: {payload.get('count', 0)}",
|
|
46
|
+
"",
|
|
47
|
+
]
|
|
48
|
+
for index, item in enumerate(payload.get("items", []), start=1):
|
|
49
|
+
source = item.get("source_label") or item.get("source", "unknown")
|
|
50
|
+
published = item.get("published", "")[:10] or "unknown"
|
|
51
|
+
lines.append(f"{index}. [{source}] {item.get('title', '').strip() or '(untitled)'} ({published})")
|
|
52
|
+
return "\n".join(lines).rstrip() + "\n"
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def render_candidate_pool(payload):
|
|
56
|
+
lines = [
|
|
57
|
+
"# Neuroethology Candidate Pool",
|
|
58
|
+
"",
|
|
59
|
+
f"- Generated At: {payload.get('generated_at', '')}",
|
|
60
|
+
f"- Candidate Count: {payload.get('count', 0)}",
|
|
61
|
+
"",
|
|
62
|
+
]
|
|
63
|
+
for index, item in enumerate(payload.get("items", []), start=1):
|
|
64
|
+
lines.extend(
|
|
65
|
+
[
|
|
66
|
+
f"## {index}. {item.get('title', '').strip() or '(untitled)'}",
|
|
67
|
+
"",
|
|
68
|
+
f"- Source: {item.get('source_label') or item.get('source', 'unknown')}",
|
|
69
|
+
f"- Authors: {join_values(item.get('authors', []), limit=10)}",
|
|
70
|
+
f"- Published: {item.get('published', '')[:10] or 'Unknown'}",
|
|
71
|
+
f"- Journal: {item.get('journal') or 'Unknown'}",
|
|
72
|
+
f"- Link: {item.get('url') or 'N/A'}",
|
|
73
|
+
f"- PDF Link: {item.get('pdf_url') or 'N/A'}",
|
|
74
|
+
f"- Weighted Score: {item.get('weighted_score', 'Unknown')}",
|
|
75
|
+
"",
|
|
76
|
+
"### Original Abstract",
|
|
77
|
+
"",
|
|
78
|
+
item.get("summary", "").strip() or "No abstract available",
|
|
79
|
+
"",
|
|
80
|
+
]
|
|
81
|
+
)
|
|
82
|
+
return "\n".join(lines).rstrip() + "\n"
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
def main():
|
|
86
|
+
parser = argparse.ArgumentParser(description="Run the full neuroethology Top 5 literature workflow.")
|
|
87
|
+
parser.add_argument("--query-file", default="", help="Config file path")
|
|
88
|
+
parser.add_argument("--output-dir", required=True, help="Directory for all generated files")
|
|
89
|
+
parser.add_argument("--days", type=int, default=7, help="Recency window in days")
|
|
90
|
+
parser.add_argument("--selected-indexes", default="", help="Comma-separated candidate indexes chosen by the agent")
|
|
91
|
+
args = parser.parse_args()
|
|
92
|
+
|
|
93
|
+
config_path = Path(args.query_file).expanduser().resolve() if args.query_file else DEFAULT_CONFIG
|
|
94
|
+
config = load_config(str(config_path))
|
|
95
|
+
|
|
96
|
+
output_dir = Path(args.output_dir).expanduser().resolve()
|
|
97
|
+
output_dir.mkdir(parents=True, exist_ok=True)
|
|
98
|
+
|
|
99
|
+
arxiv_output = output_dir / "arxiv.json"
|
|
100
|
+
pubmed_output = output_dir / "pubmed.json"
|
|
101
|
+
merged_output = output_dir / "merged.json"
|
|
102
|
+
candidate_titles_output = output_dir / "candidate_titles.md"
|
|
103
|
+
candidate_pool_output = output_dir / "candidate_pool.md"
|
|
104
|
+
agent_packet_json_output = output_dir / "top5_agent_packet.json"
|
|
105
|
+
agent_packet_md_output = output_dir / "top5_agent_packet.md"
|
|
106
|
+
|
|
107
|
+
run_command(
|
|
108
|
+
[
|
|
109
|
+
sys.executable,
|
|
110
|
+
str(SCRIPTS_DIR / "search_arxiv.py"),
|
|
111
|
+
"--query-file",
|
|
112
|
+
str(config_path),
|
|
113
|
+
"--days",
|
|
114
|
+
str(args.days),
|
|
115
|
+
"--output",
|
|
116
|
+
str(arxiv_output),
|
|
117
|
+
],
|
|
118
|
+
SKILL_DIR,
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
run_command(
|
|
122
|
+
[
|
|
123
|
+
sys.executable,
|
|
124
|
+
str(SCRIPTS_DIR / "search_pubmed.py"),
|
|
125
|
+
"--query-file",
|
|
126
|
+
str(config_path),
|
|
127
|
+
"--days",
|
|
128
|
+
str(args.days),
|
|
129
|
+
"--output",
|
|
130
|
+
str(pubmed_output),
|
|
131
|
+
],
|
|
132
|
+
SKILL_DIR,
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
run_command(
|
|
136
|
+
[
|
|
137
|
+
sys.executable,
|
|
138
|
+
str(SCRIPTS_DIR / "merge_results.py"),
|
|
139
|
+
str(arxiv_output),
|
|
140
|
+
str(pubmed_output),
|
|
141
|
+
"--pubmed-weight",
|
|
142
|
+
str(coerce_float(config.get("source_weight_pubmed"), 1.25)),
|
|
143
|
+
"--arxiv-weight",
|
|
144
|
+
str(coerce_float(config.get("source_weight_arxiv"), 1.0)),
|
|
145
|
+
"--output",
|
|
146
|
+
str(merged_output),
|
|
147
|
+
],
|
|
148
|
+
SKILL_DIR,
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
merged_payload = json.loads(merged_output.read_text(encoding="utf-8-sig"))
|
|
152
|
+
candidate_titles_output.write_text(render_candidate_titles(merged_payload), encoding="utf-8")
|
|
153
|
+
candidate_pool_output.write_text(render_candidate_pool(merged_payload), encoding="utf-8")
|
|
154
|
+
|
|
155
|
+
if args.selected_indexes:
|
|
156
|
+
run_command(
|
|
157
|
+
[
|
|
158
|
+
sys.executable,
|
|
159
|
+
str(SCRIPTS_DIR / "build_top5_digest.py"),
|
|
160
|
+
"--input",
|
|
161
|
+
str(merged_output),
|
|
162
|
+
"--paper-indexes",
|
|
163
|
+
args.selected_indexes,
|
|
164
|
+
"--agent-json-output",
|
|
165
|
+
str(agent_packet_json_output),
|
|
166
|
+
"--review-md-output",
|
|
167
|
+
str(agent_packet_md_output),
|
|
168
|
+
],
|
|
169
|
+
SKILL_DIR,
|
|
170
|
+
)
|
|
171
|
+
|
|
172
|
+
print(output_dir)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
if __name__ == "__main__":
|
|
176
|
+
main()
|
|
177
|
+
```
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
import argparse
|
|
3
|
+
import datetime as dt
|
|
4
|
+
import json
|
|
5
|
+
import sys
|
|
6
|
+
import urllib.parse
|
|
7
|
+
import urllib.request
|
|
8
|
+
import xml.etree.ElementTree as ET
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
|
12
|
+
if str(SCRIPT_DIR) not in sys.path:
|
|
13
|
+
sys.path.insert(0, str(SCRIPT_DIR))
|
|
14
|
+
|
|
15
|
+
from common import load_config, normalize # noqa: E402
|
|
16
|
+
|
|
17
|
+
ATOM_NS = {"atom": "http://www.w3.org/2005/Atom"}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def fetch_feed(query: str, start: int, max_results: int):
|
|
21
|
+
params = {
|
|
22
|
+
"search_query": query,
|
|
23
|
+
"start": str(start),
|
|
24
|
+
"max_results": str(max_results),
|
|
25
|
+
"sortBy": "submittedDate",
|
|
26
|
+
"sortOrder": "descending",
|
|
27
|
+
}
|
|
28
|
+
url = "http://export.arxiv.org/api/query?" + urllib.parse.urlencode(params)
|
|
29
|
+
with urllib.request.urlopen(url, timeout=30) as resp:
|
|
30
|
+
return resp.read()
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def text(node, expr, default=""):
|
|
34
|
+
found = node.find(expr, ATOM_NS)
|
|
35
|
+
return found.text.strip() if found is not None and found.text else default
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def arxiv_id_from_entry(entry):
|
|
39
|
+
raw_id = text(entry, "atom:id")
|
|
40
|
+
return raw_id.rsplit("/", 1)[-1] if raw_id else ""
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def entry_to_doc(entry):
|
|
44
|
+
title = text(entry, "atom:title")
|
|
45
|
+
summary = text(entry, "atom:summary")
|
|
46
|
+
published = text(entry, "atom:published")
|
|
47
|
+
updated = text(entry, "atom:updated")
|
|
48
|
+
entry_id = arxiv_id_from_entry(entry)
|
|
49
|
+
authors = [a.text.strip() for a in entry.findall("atom:author/atom:name", ATOM_NS) if a.text]
|
|
50
|
+
categories = [c.attrib.get("term", "") for c in entry.findall("atom:category", ATOM_NS)]
|
|
51
|
+
links = entry.findall("atom:link", ATOM_NS)
|
|
52
|
+
pdf_url = ""
|
|
53
|
+
primary_url = text(entry, "atom:id")
|
|
54
|
+
for link in links:
|
|
55
|
+
title_attr = link.attrib.get("title", "")
|
|
56
|
+
href = link.attrib.get("href", "")
|
|
57
|
+
if title_attr == "pdf":
|
|
58
|
+
pdf_url = href
|
|
59
|
+
break
|
|
60
|
+
combined = normalize(" ".join([title, summary, " ".join(categories)]))
|
|
61
|
+
return {
|
|
62
|
+
"id": entry_id,
|
|
63
|
+
"title": title,
|
|
64
|
+
"summary": summary,
|
|
65
|
+
"published": published,
|
|
66
|
+
"updated": updated,
|
|
67
|
+
"authors": authors,
|
|
68
|
+
"categories": categories,
|
|
69
|
+
"url": primary_url,
|
|
70
|
+
"pdf_url": pdf_url,
|
|
71
|
+
"search_blob": combined,
|
|
72
|
+
"source": "arxiv",
|
|
73
|
+
"source_label": "arXiv",
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def iso_to_dt(value: str):
|
|
78
|
+
return dt.datetime.fromisoformat(value.replace("Z", "+00:00"))
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
def score_doc(doc, include_keywords):
|
|
82
|
+
blob = doc["search_blob"]
|
|
83
|
+
return sum(1 for kw in include_keywords if kw.lower() in blob)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def category_bonus(doc):
|
|
87
|
+
categories = set(doc.get("categories", []))
|
|
88
|
+
bonus = 0
|
|
89
|
+
for cat in categories:
|
|
90
|
+
if cat.startswith("q-bio.NC"):
|
|
91
|
+
bonus += 3
|
|
92
|
+
elif cat.startswith("q-bio"):
|
|
93
|
+
bonus += 2
|
|
94
|
+
elif cat.startswith("nlin.AO") or cat.startswith("physics.bio-ph"):
|
|
95
|
+
bonus += 1
|
|
96
|
+
return bonus
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
def main():
|
|
100
|
+
parser = argparse.ArgumentParser(description="Fetch and filter recent arXiv papers.")
|
|
101
|
+
parser.add_argument("--query", help="arXiv search query")
|
|
102
|
+
parser.add_argument("--query-file", help="Simple YAML config file")
|
|
103
|
+
parser.add_argument("--days", type=int, default=3)
|
|
104
|
+
parser.add_argument("--max-results", type=int, default=15)
|
|
105
|
+
parser.add_argument("--output", help="Write JSON to this file")
|
|
106
|
+
args = parser.parse_args()
|
|
107
|
+
|
|
108
|
+
config = load_config(args.query_file)
|
|
109
|
+
query = args.query or config.get("query") or "all:neuroscience"
|
|
110
|
+
include_keywords = [s.lower() for s in config.get("include_keywords", [])]
|
|
111
|
+
exclude_keywords = [s.lower() for s in config.get("exclude_keywords", [])]
|
|
112
|
+
max_results = int(config.get("max_results", args.max_results))
|
|
113
|
+
days = args.days
|
|
114
|
+
|
|
115
|
+
feed = fetch_feed(query, start=0, max_results=max_results)
|
|
116
|
+
root = ET.fromstring(feed)
|
|
117
|
+
now = dt.datetime.now(dt.timezone.utc)
|
|
118
|
+
cutoff = now - dt.timedelta(days=days)
|
|
119
|
+
|
|
120
|
+
docs = []
|
|
121
|
+
seen = set()
|
|
122
|
+
for entry in root.findall("atom:entry", ATOM_NS):
|
|
123
|
+
doc = entry_to_doc(entry)
|
|
124
|
+
if not doc["id"] or doc["id"] in seen:
|
|
125
|
+
continue
|
|
126
|
+
try:
|
|
127
|
+
published_dt = iso_to_dt(doc["published"])
|
|
128
|
+
except Exception:
|
|
129
|
+
continue
|
|
130
|
+
if published_dt < cutoff:
|
|
131
|
+
continue
|
|
132
|
+
blob = doc["search_blob"]
|
|
133
|
+
if include_keywords and not any(kw in blob for kw in include_keywords):
|
|
134
|
+
continue
|
|
135
|
+
if exclude_keywords and any(kw in blob for kw in exclude_keywords):
|
|
136
|
+
continue
|
|
137
|
+
if "neural network" in blob and not any(term in blob for term in ["brain", "neuron", "neuronal", "cortex", "hippocampus", "spike", "synapse", "electrophysiology", "animal behavior", "behaviour", "zebrafish", "rodent", "mouse", "primate"]):
|
|
138
|
+
continue
|
|
139
|
+
doc["keyword_score"] = score_doc(doc, include_keywords)
|
|
140
|
+
doc["relevance_score"] = doc.get("keyword_score", 0) + category_bonus(doc)
|
|
141
|
+
docs.append(doc)
|
|
142
|
+
seen.add(doc["id"])
|
|
143
|
+
|
|
144
|
+
docs.sort(key=lambda d: (d.get("relevance_score", 0), d["published"]), reverse=True)
|
|
145
|
+
payload = {
|
|
146
|
+
"query": query,
|
|
147
|
+
"generated_at": now.isoformat(),
|
|
148
|
+
"days": days,
|
|
149
|
+
"count": len(docs),
|
|
150
|
+
"items": docs,
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
if args.output:
|
|
154
|
+
out_path = Path(args.output)
|
|
155
|
+
out_path.write_text(json.dumps(payload, ensure_ascii=False, indent=2), encoding="utf-8")
|
|
156
|
+
else:
|
|
157
|
+
json.dump(payload, sys.stdout, ensure_ascii=False, indent=2)
|
|
158
|
+
sys.stdout.write("\n")
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
if __name__ == "__main__":
|
|
162
|
+
main()
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
import argparse
|
|
3
|
+
import datetime as dt
|
|
4
|
+
import json
|
|
5
|
+
import sys
|
|
6
|
+
import time
|
|
7
|
+
import urllib.parse
|
|
8
|
+
import urllib.request
|
|
9
|
+
import xml.etree.ElementTree as ET
|
|
10
|
+
from pathlib import Path
|
|
11
|
+
|
|
12
|
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
|
13
|
+
if str(SCRIPT_DIR) not in sys.path:
|
|
14
|
+
sys.path.insert(0, str(SCRIPT_DIR))
|
|
15
|
+
|
|
16
|
+
from common import load_config, normalize # noqa: E402
|
|
17
|
+
|
|
18
|
+
BASE_URL = "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def http_get(url: str, params: dict):
|
|
22
|
+
full_url = url + "?" + urllib.parse.urlencode(params)
|
|
23
|
+
req = urllib.request.Request(full_url, headers={"User-Agent": "OpenClaw neuro-paper-monitor/1.0"})
|
|
24
|
+
with urllib.request.urlopen(req, timeout=30) as resp:
|
|
25
|
+
return resp.read()
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def search_pubmed(term: str, retmax: int, days: int):
|
|
29
|
+
payload = http_get(
|
|
30
|
+
BASE_URL + "esearch.fcgi",
|
|
31
|
+
{
|
|
32
|
+
"db": "pubmed",
|
|
33
|
+
"term": term,
|
|
34
|
+
"retmax": str(retmax),
|
|
35
|
+
"retmode": "json",
|
|
36
|
+
"sort": "pub date",
|
|
37
|
+
"datetype": "pdat",
|
|
38
|
+
"reldate": str(days),
|
|
39
|
+
},
|
|
40
|
+
)
|
|
41
|
+
data = json.loads(payload.decode("utf-8"))
|
|
42
|
+
return data.get("esearchresult", {}).get("idlist", [])
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def chunked(seq, size):
|
|
46
|
+
for i in range(0, len(seq), size):
|
|
47
|
+
yield seq[i : i + size]
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def text_join(node, path_expr):
|
|
51
|
+
found = node.findall(path_expr)
|
|
52
|
+
values = []
|
|
53
|
+
for item in found:
|
|
54
|
+
txt = "".join(item.itertext()).strip()
|
|
55
|
+
if txt:
|
|
56
|
+
values.append(txt)
|
|
57
|
+
return " ".join(values).strip()
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
def parse_pub_date(article):
|
|
61
|
+
pub_date = article.find(".//PubDate")
|
|
62
|
+
if pub_date is None:
|
|
63
|
+
return ""
|
|
64
|
+
year = text_join(pub_date, "Year") or text_join(pub_date, "MedlineDate")[:4]
|
|
65
|
+
month_raw = text_join(pub_date, "Month")
|
|
66
|
+
day = text_join(pub_date, "Day") or "01"
|
|
67
|
+
month_map = {
|
|
68
|
+
"Jan": "01", "Feb": "02", "Mar": "03", "Apr": "04", "May": "05", "Jun": "06",
|
|
69
|
+
"Jul": "07", "Aug": "08", "Sep": "09", "Oct": "10", "Nov": "11", "Dec": "12",
|
|
70
|
+
}
|
|
71
|
+
month = month_map.get(month_raw[:3], month_raw.zfill(2) if month_raw.isdigit() else "01")
|
|
72
|
+
if not year:
|
|
73
|
+
return ""
|
|
74
|
+
return f"{year}-{month}-{day.zfill(2)}"
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def fetch_details(pmids):
|
|
78
|
+
docs = []
|
|
79
|
+
for batch in chunked(pmids, 100):
|
|
80
|
+
payload = http_get(
|
|
81
|
+
BASE_URL + "efetch.fcgi",
|
|
82
|
+
{
|
|
83
|
+
"db": "pubmed",
|
|
84
|
+
"id": ",".join(batch),
|
|
85
|
+
"retmode": "xml",
|
|
86
|
+
},
|
|
87
|
+
)
|
|
88
|
+
root = ET.fromstring(payload)
|
|
89
|
+
for article in root.findall(".//PubmedArticle"):
|
|
90
|
+
pmid = text_join(article, ".//PMID")
|
|
91
|
+
title = text_join(article, ".//ArticleTitle")
|
|
92
|
+
abstract = text_join(article, ".//Abstract/AbstractText")
|
|
93
|
+
journal = text_join(article, ".//Journal/Title")
|
|
94
|
+
published = parse_pub_date(article)
|
|
95
|
+
doi = ""
|
|
96
|
+
for el in article.findall(".//ArticleId"):
|
|
97
|
+
if el.attrib.get("IdType") == "doi" and (el.text or "").strip():
|
|
98
|
+
doi = el.text.strip()
|
|
99
|
+
break
|
|
100
|
+
authors = []
|
|
101
|
+
for author in article.findall(".//Author"):
|
|
102
|
+
last = text_join(author, "LastName")
|
|
103
|
+
fore = text_join(author, "ForeName")
|
|
104
|
+
collective = text_join(author, "CollectiveName")
|
|
105
|
+
name = collective or " ".join(part for part in [fore, last] if part).strip()
|
|
106
|
+
if name:
|
|
107
|
+
authors.append(name)
|
|
108
|
+
mesh_terms = [text_join(mh, ".") for mh in article.findall(".//MeshHeading/DescriptorName")]
|
|
109
|
+
keywords = [text_join(kw, ".") for kw in article.findall(".//Keyword")]
|
|
110
|
+
blob = normalize(" ".join([title, abstract, journal, " ".join(mesh_terms), " ".join(keywords)]))
|
|
111
|
+
docs.append(
|
|
112
|
+
{
|
|
113
|
+
"id": pmid,
|
|
114
|
+
"pmid": pmid,
|
|
115
|
+
"doi": doi,
|
|
116
|
+
"title": title,
|
|
117
|
+
"summary": abstract,
|
|
118
|
+
"published": published,
|
|
119
|
+
"updated": published,
|
|
120
|
+
"authors": authors,
|
|
121
|
+
"journal": journal,
|
|
122
|
+
"mesh_terms": mesh_terms,
|
|
123
|
+
"keywords": keywords,
|
|
124
|
+
"url": f"https://pubmed.ncbi.nlm.nih.gov/{pmid}/" if pmid else "",
|
|
125
|
+
"pdf_url": "",
|
|
126
|
+
"search_blob": blob,
|
|
127
|
+
"source": "pubmed",
|
|
128
|
+
"source_label": "PubMed",
|
|
129
|
+
}
|
|
130
|
+
)
|
|
131
|
+
time.sleep(0.34)
|
|
132
|
+
return docs
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
def score_doc(doc, include_keywords):
|
|
136
|
+
blob = doc.get("search_blob", "")
|
|
137
|
+
return sum(1 for kw in include_keywords if kw.lower() in blob)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
def main():
|
|
141
|
+
parser = argparse.ArgumentParser(description="Fetch and filter recent PubMed papers.")
|
|
142
|
+
parser.add_argument("--query", help="PubMed query")
|
|
143
|
+
parser.add_argument("--query-file", help="Simple YAML config file")
|
|
144
|
+
parser.add_argument("--days", type=int, default=3)
|
|
145
|
+
parser.add_argument("--max-results", type=int, default=15)
|
|
146
|
+
parser.add_argument("--output", help="Write JSON to this file")
|
|
147
|
+
args = parser.parse_args()
|
|
148
|
+
|
|
149
|
+
config = load_config(args.query_file)
|
|
150
|
+
default_query = '(("Neurosciences"[mh] OR neuroscience[tiab] OR neuroethology[tiab]) AND ("Behavior, Animal"[mh] OR "animal behavior"[tiab] OR behaviour[tiab] OR behavior[tiab] OR electrophysiology[tiab] OR "calcium imaging"[tiab] OR hippocampus[tiab] OR cortex[tiab] OR zebrafish[tiab] OR rodent[tiab] OR mouse[tiab] OR primate[tiab]))'
|
|
151
|
+
query = args.query or config.get("pubmed_query") or default_query
|
|
152
|
+
include_keywords = [s.lower() for s in config.get("include_keywords", [])]
|
|
153
|
+
exclude_keywords = [s.lower() for s in config.get("exclude_keywords", [])]
|
|
154
|
+
max_results = int(config.get("pubmed_max_results", config.get("max_results", args.max_results)))
|
|
155
|
+
days = args.days
|
|
156
|
+
|
|
157
|
+
pmids = search_pubmed(query, retmax=max_results, days=days)
|
|
158
|
+
docs = fetch_details(pmids)
|
|
159
|
+
|
|
160
|
+
now = dt.datetime.now(dt.timezone.utc)
|
|
161
|
+
cutoff = now - dt.timedelta(days=days)
|
|
162
|
+
filtered = []
|
|
163
|
+
seen = set()
|
|
164
|
+
for doc in docs:
|
|
165
|
+
if not doc.get("id") or doc["id"] in seen:
|
|
166
|
+
continue
|
|
167
|
+
try:
|
|
168
|
+
published_dt = dt.datetime.fromisoformat(doc["published"] + "T00:00:00+00:00")
|
|
169
|
+
except Exception:
|
|
170
|
+
continue
|
|
171
|
+
if published_dt < cutoff:
|
|
172
|
+
continue
|
|
173
|
+
blob = doc["search_blob"]
|
|
174
|
+
if include_keywords and not any(kw in blob for kw in include_keywords):
|
|
175
|
+
continue
|
|
176
|
+
if exclude_keywords and any(kw in blob for kw in exclude_keywords):
|
|
177
|
+
continue
|
|
178
|
+
doc["keyword_score"] = score_doc(doc, include_keywords)
|
|
179
|
+
doc["relevance_score"] = doc["keyword_score"] + (2 if doc.get("mesh_terms") else 0)
|
|
180
|
+
filtered.append(doc)
|
|
181
|
+
seen.add(doc["id"])
|
|
182
|
+
|
|
183
|
+
filtered.sort(key=lambda d: (d.get("relevance_score", 0), d.get("published", "")), reverse=True)
|
|
184
|
+
payload = {
|
|
185
|
+
"query": query,
|
|
186
|
+
"generated_at": now.isoformat(),
|
|
187
|
+
"days": days,
|
|
188
|
+
"count": len(filtered),
|
|
189
|
+
"source": "pubmed",
|
|
190
|
+
"items": filtered,
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
if args.output:
|
|
194
|
+
out_path = Path(args.output)
|
|
195
|
+
out_path.write_text(json.dumps(payload, ensure_ascii=False, indent=2), encoding="utf-8")
|
|
196
|
+
else:
|
|
197
|
+
json.dump(payload, sys.stdout, ensure_ascii=False, indent=2)
|
|
198
|
+
sys.stdout.write("\n")
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
if __name__ == "__main__":
|
|
202
|
+
main()
|