Skills Agentes

Bids

Para trabajar con datasets Brain Imaging Data Structure (BIDS): organizar datos de neurociencia y biomedicina, consultar layouts, validar cumplimiento, convertir DICOM a BIDS, escribir sidecars o crear derivados.

Estrellas
34.8k

en todo el repo

Actividad
58

0–100, la ruta de este skill

Actualizado
el mes pasado

último commit aquí

Commits
3

últimos 90 días

Contexto
3.8k tok

87 tok en reposo

Paquete
8 archivos

894 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add K-Dense-AI/scientific-agent-skills --skill bids --agent claude-code

Se instala solo en este repositorio.

Este skill makes network requests.

Qué hace

  • Organiza datos crudos de neurociencia (imagen, electrofisiología, conductuales) en estructuras de directorios conformes a BIDS
  • Consulta datasets BIDS existentes por sujeto, sesión, tarea, run o modalidad con PyBIDS
  • Valida un dataset frente a la especificación BIDS con bids-validator antes de compartirlo o enviarlo
  • Convierte datos DICOM del escáner a BIDS con HeuDiConv, dcm2bids o BIDScoin
  • Escribe sidecars de metadatos JSON y crea derivados BIDS-compliant (datos preprocesados o resultados de análisis)

Úsalo cuando

  • Organizar datos crudos de neurociencia en una estructura de directorios conforme a BIDS
  • Consultar un dataset BIDS existente por sujeto, sesión, tarea o modalidad
  • Validar un dataset contra la especificación BIDS o convertir DICOM a BIDS
  • Escribir metadatos sidecar o crear derivados BIDS-compliant

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Organiza estos datos DICOM en una estructura BIDS con HeuDiConv
    • Valida este dataset BIDS antes de subirlo a OpenNeuro
    • Consulta este dataset BIDS por sujeto y tarea con PyBIDS
    • Escribe el dataset_description.json para este dataset

    SKILL.md

    En inglés

    Brain Imaging Data Structure (BIDS)

    Overview

    The Brain Imaging Data Structure (BIDS) is a community standard for organizing and describing neuroscience and biomedical research datasets. It defines a consistent file naming convention, directory hierarchy, and metadata schema so that datasets are immediately understandable by humans and software tools alike. BIDS is governed by the BIDS Specification (currently v1.11.x) and is maintained by the community via the BIDS-Standard GitHub organization.

    While BIDS originated for MRI, it has grown well beyond neuroimaging. The specification now covers 11 modalities spanning imaging, electrophysiology, and behavioral data:

    • Imaging: MRI (structural, functional, diffusion, fieldmaps, perfusion/ASL), PET, microscopy
    • Electrophysiology: EEG, MEG, iEEG (intracranial EEG), EMG
    • Other: NIRS (near-infrared spectroscopy), motion capture, behavioral data (without imaging), MR spectroscopy

    Active BEPs are extending BIDS further — notably BEP032 (microelectrode electrophysiology) will add support for extracellular recordings including Neuropixels probes, bringing BIDS to a prevalent methodology in animal neuroscience research (see also the neuropixels-analysis skill).

    Adoption is required or strongly encouraged by major data repositories (OpenNeuro, DANDI), leading journals (NeuroImage, Human Brain Mapping, Scientific Data), and funding agencies (NIH, ERC).

    The Python ecosystem for BIDS centers on PyBIDS (pybids) for querying and indexing BIDS datasets, and the bids-validator (Deno-based, available as PyPI package bids-validator-deno or via Deno directly) for compliance checking. Conversion from DICOM is typically done with HeuDiConv, dcm2bids, or BIDScoin.

    When to Use This Skill

    Apply this skill when:

    • Organizing raw neuroscience data (imaging, electrophysiology, behavioral) into BIDS-compliant directory structures
    • Querying an existing BIDS dataset to find specific files by subject, session, task, run, or modality
    • Validating a dataset against the BIDS specification before sharing or submission
    • Converting DICOM data from scanners into BIDS format
    • Writing or editing JSON sidecar metadata files
    • Creating BIDS-compliant derivatives (preprocessed data, analysis outputs)
    • Setting up a dataset_description.json for a new dataset
    • Working with BIDS entities (subject, session, task, acquisition, run, etc.)
    • Configuring .bidsignore to exclude files from validation
    • Preparing data for upload to OpenNeuro, DANDI, or other BIDS-aware repositories

    Installation

    # Core BIDS querying library
    uv pip install pybids
    
    # BIDS validator (Deno-based, installed via PyPI wrapper)
    uv pip install bids-validator-deno
    # Alternative: install directly via Deno
    # deno install -g -A npm:bids-validator
    
    # DICOM-to-BIDS converters (install as needed)
    uv pip install heudiconv       # HeuDiConv - heuristic-based DICOM conversion
    uv pip install dcm2bids        # dcm2bids - config-file-based conversion
    # BIDScoin: uv pip install bidscoin
    
    # Useful companions
    uv pip install nibabel          # NIfTI/other neuroimaging file I/O
    uv pip install pydicom          # DICOM file reading (used by converters)
    

    Core Workflows

    Twelve workflow areas, each with worked code, are documented in references/core_workflows.md:

    1. BIDS directory structure — the required layout and where each modality belongs.
    2. dataset_description.json — the required fields and how to generate it.
    3. Querying with PyBIDSBIDSLayout, entity filters, sidecar metadata with automatic inheritance, and building paths from entities.
    4. Validationbids-validator via the PyPI wrapper (recommended), via Deno directly, the legacy Node validator, and using .bidsignore to exclude files.
    5. Entities and file naming — the entity order and naming grammar.
    6. DICOM to BIDS conversion — HeuDiConv (including the turnkey ReproIn path and the reconnaissance → heuristic → convert sequence) and dcm2bids (config-file based).
    7. Metadata sidecars — required and recommended JSON fields per modality.
    8. Events files — task fMRI event timing and column conventions.
    9. Participants fileparticipants.tsv and its data dictionary.
    10. Derivatives — the derivatives layout and its dataset_description.json.
    11. Advanced PyBIDS — index caching, including derivatives, confound regressors, and DataFrame output.
    12. BIDS-Apps — the standard invocation pattern, and fMRIPrep, MRIQC, and QSIPrep.

    Validate early and often: PyBIDS validates structure when it indexes a dataset, so an indexing failure usually means a naming or metadata problem rather than a code bug.

    Reference Materials

    This skill includes detailed reference documentation:

    • bids_schema.json: Machine-readable BIDS schema (from https://bids-specification.readthedocs.io/en/stable/schema.json). This is the authoritative source for entity definitions, ordering rules, filename templates, allowed suffixes per datatype, and metadata field requirements. BEP-specific schemas are at https://github.com/bids-standard/bids-schema/tree/main/BEPs.
    • beps.yml: Current list of all BIDS Extension Proposals with titles, leads, status, and links (from bids-website)
    • bids_specification.md: Human-readable summary of the entity table, datatype reference, directory structure rules, template spaces, and specification changelog
    • metadata_fields.md: Required and recommended JSON sidecar fields for every BIDS modality (anat, func, dwi, fmap, eeg, meg, pet, etc.)
    • conversion_tools.md: Detailed workflows for HeuDiConv, dcm2bids, and BIDScoin including heuristic/config examples and troubleshooting

    Update schema and BEPs with: python scripts/update_schema.py

    Common Issues and Solutions

    1. Validator reports "Not a BIDS dataset"

    Cause: Missing dataset_description.json at the root. Fix: Create the file with at minimum {"Name": "...", "BIDSVersion": "1.10.0"}.

    2. Inconsistent subjects warning

    Cause: Not all subjects have the same set of files (some missing sessions, runs, etc.). Fix: This is a warning, not an error. Use --ignoreSubjectConsistency if intentional. Document missing data in participants.tsv or a scans.tsv.

    3. Missing SliceTiming

    Cause: dcm2niix couldn't extract slice timing from DICOM headers. Fix: Determine slice order from the scan protocol and add manually to the JSON sidecar. Common patterns: ascending, descending, interleaved (odd-first or even-first).

    4. Phase encoding direction confusion

    Cause: Axis labels (i/j/k vs x/y/z vs LR/AP/SI) are confusing. Fix: In BIDS, use NIfTI image axes: i=first axis, j=second, k=third. - means negative direction. For standard axial acquisitions: j is typically anterior-posterior. Verify with the acquisition protocol.

    5. PyBIDS is slow on large datasets

    Cause: Full filesystem indexing on every BIDSLayout() call. Fix: Use database_path to cache the index to an SQLite file:

    layout = BIDSLayout("/data", database_path="/data/.pybids_cache.db")
    

    6. Derivatives not found by PyBIDS

    Cause: Derivatives directory missing its own dataset_description.json. Fix: Every derivatives directory must have dataset_description.json with "DatasetType": "derivative".

    7. Events file timing is off

    Cause: onset times are relative to the wrong reference (e.g., trigger time vs first volume). Fix: Onsets must be in seconds relative to the first volume of that run's acquisition. Account for dummy scans if they were discarded.

    8. TSV files fail validation

    Cause: Encoding or delimiter issues (spaces instead of tabs, BOM characters, Windows line endings). Fix: Ensure tab-separated values with UTF-8 encoding and Unix line endings (\n). Use n/a (not NA, NaN, or empty) for missing values.

    Best Practices

    1. Validate early and often - Run the BIDS validator after every conversion or modification. Fix errors before they compound.

    2. Use metadata inheritance - Place shared metadata (e.g., TaskName, scanner parameters) in top-level sidecar files rather than duplicating in every subject's directory.

    3. Keep sourcedata - Store the original DICOM (or other raw) data under sourcedata/ so conversions are reproducible. Add sourcedata/ to .bidsignore.

    4. Use consistent naming from the start - Define your BIDS naming scheme before data collection. Use the ReproIn naming convention for scan protocols to enable automatic conversion.

    5. Document your dataset - Write a thorough README describing the study design, acquisition parameters, known issues, and any deviations from BIDS.

    6. Use scans.tsv for run-level metadata - Record per-run acquisition times and quality notes:

      filename    acq_time    quality
      func/sub-01_task-rest_bold.nii.gz    2025-01-15T10:30:00    good
      
    7. Version your dataset - Use CHANGES to document dataset modifications. Consider DataLad for full version control of large datasets.

    8. Deface anatomical images - Remove facial features from T1w/T2w images before sharing (e.g., using pydeface, mri_deface, or afni_refacer). Store defaced versions as the primary data or use _defacemask files.

    9. Use BIDS URIs for provenance - In derivatives, reference source files using BIDS URIs: bids::sub-01/anat/sub-01_T1w.nii.gz.

    10. Prefer community tools - Use established BIDS-Apps (fMRIPrep, MRIQC, QSIPrep) rather than custom pipelines when possible. They handle BIDS I/O correctly and produce BIDS-compliant derivatives.

    11. Study bids-examples - The bids-examples repository is the canonical collection of prototypical BIDS datasets covering different modalities and use cases (MRI, fMRI, DWI, EEG, MEG, iEEG, PET, ASL, genetics, derivatives, and more). Use it as a reference when structuring your own dataset, as test data for BIDS tools, or to understand how a specific modality should be organized. Each example passes the BIDS validator.

    BIDS Extension Proposals (BEPs)

    BEPs are community-driven proposals to extend BIDS to new modalities, derivatives, or metadata. The full list with status, leads, and links is in references/beps.yml (fetched from the bids-website). BEP-specific schema previews are rendered at https://github.com/bids-standard/bids-schema/tree/main/BEPs.

    Current BEPs (as of schema update):

    BEP Title Content Status
    004 Susceptibility Weighted Imaging raw Seeking new leader
    011 Structural preprocessing derivatives derivative Has PR (#518)
    012 Functional preprocessing derivatives derivative Has PR (#519), schema implemented
    014 Affine transforms and nonlinear field warps derivative X5 format development
    016 Diffusion weighted imaging derivatives derivative Has PR (#2211)
    017 Generic BIDS connectivity data schema derivative In development
    021 Common Electrophysiological Derivatives derivative In development
    023 PET Preprocessing derivatives derivative In development
    024 Computed Tomography scan raw Seeking contributors
    026 Microelectrode Recordings raw Seeking new leader
    028 Provenance metadata Has PR (#2099)
    032 Microelectrode electrophysiology raw Has PR (#2307), preview available — covers Neuropixels and other extracellular probes; relates to neuropixels-analysis skill
    033 Advanced Diffusion Weighted Imaging raw Seeking contributors
    034 Computational modeling derivative Has PR (#967)
    035 Mega-analyses with non-compliant derivatives derivative In development
    036 Phenotypic Data Guidelines raw Community review
    037 Non-Invasive Brain Stimulation raw In development
    039 Dimensionality reduction-based networks raw In development
    040 Functional Ultrasound raw In development
    041 Statistical Model Derivatives derivative Collecting feedback
    043 BIDS Term Mapping metadata Collecting feedback
    044 Stimuli raw Has PR (#2022), community review
    045 Peripheral Physiological Recordings raw Has PR (#2267)
    046 Diffusion Tractography derivative In development
    047 Audio/video recordings for behavioral experiments raw Has PR (#2231)

    Related standards:

    • BIDS-Stats Models: JSON specification for defining GLM-based neuroimaging analyses
    • BIDS-Derivatives (BEP003): Standard for preprocessed/analysis outputs (partially merged into spec)

    Related Tools Ecosystem

    Tool Purpose
    fMRIPrep fMRI preprocessing (produces BIDS derivatives)
    MRIQC MRI quality control (produces BIDS derivatives)
    QSIPrep Diffusion MRI preprocessing
    TemplateFlow Neuroimaging templates and atlases with BIDS-like naming
    Fitlins BIDS Stats Models implementation
    DataLad Version control for large datasets, integrates with BIDS
    OpenNeuro Free BIDS dataset repository
    DANDI Neurophysiology data archive (uses BIDS for some modalities)
    HeuDiConv DICOM-to-BIDS with heuristic Python files
    dcm2bids DICOM-to-BIDS with JSON config
    BIDScoin DICOM-to-BIDS with GUI and YAML config
    nwb2bids Convert NWB (Neurodata Without Borders) files to BIDS
    CuBIDS BIDS dataset curation and harmonization
    bids2table Efficient tabular indexing of BIDS datasets
    bids-examples Canonical collection of prototypical BIDS datasets for all modalities

    Documentation

    Reproducido de K-Dense-AI/scientific-agent-skills bajo licencia https://creativecommons.org/licenses/by/4.0/. Leer esta página en markdown.

    Archivos

    8 archivos en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Instala pybids y bids-validator-deno (o el validador Deno) por separado; los conversores DICOM a BIDS (HeuDiConv, dcm2bids, BIDScoin) se instalan según se necesiten.

    Detalles

    Creador
    K-Dense-AI
    Categoría
    Investigación
    Licencia
    https://creativecommons.org/licenses/by/4.0/
    Recursos incluidos
    scripts en python + referencias
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de K-Dense-AI/scientific-agent-skills

    Este repo incluye 163 skills. Si instalas uno, normalmente ya tienes los demás.

    Gestión integral de citas académicas: busca en OpenAlex, PubMed y Google Scholar, extrae metadatos precisos, valida citas y genera entradas BibTeX correctamente formateadas.

    Costo de contexto al activarse
    3.7k tok
    Tamaño del paquete
    21 archivos
    Última actualización
    hace 28 días
    investigacion

    Realiza revisiones bibliográficas sistemáticas y completas usando varias bases académicas (PubMed, arXiv, bioRxiv, Semantic Scholar). Genera markdown y PDF con citas verificadas en varios estilos (APA, Nature, Vancouver).

    Costo de contexto al activarse
    3.2k tok
    Tamaño del paquete
    12 archivos
    Última actualización
    hace 15 días
    investigacion

    Crea decks de diapositivas y presentaciones para charlas de investigación: PowerPoint, presentaciones de conferencia, seminarios, defensas de tesis. Da estructura, plantillas, guía de tiempos y validación visual.

    Costo de contexto al activarse
    5.1k tok
    Tamaño del paquete
    24 archivos
    Última actualización
    hace 15 días
    documentos

    Crea infografías profesionales con Nano Banana Pro AI y refinamiento iterativo inteligente. Usa Gemini 3.6 Flash para revisar la calidad e integra investigación con Perplexity Sonar. Soporta 10 tipos, 8 estilos y paletas para daltonismo.

    Costo de contexto al activarse
    2.7k tok
    Tamaño del paquete
    8 archivos
    Última actualización
    hace 15 días
    diseno ui

    Crea pósteres de investigación profesionales en LaTeX con beamerposter, tikzposter o baposter, para conferencias y comunicación científica: layout, colores, columnas múltiples e integración de figuras.

    Costo de contexto al activarse
    3.9k tok
    Tamaño del paquete
    17 archivos
    Última actualización
    hace 15 días
    documentos

    Crea diagramas científicos de calidad de publicación con la IA Nano Banana 2 y refinamiento iterativo inteligente. Gemini 3.6 Flash revisa la calidad y solo regenera si está por debajo del umbral de tu tipo de documento.

    Costo de contexto al activarse
    4.1k tok
    Tamaño del paquete
    6 archivos
    Última actualización
    hace 15 días
    diseno ui

    Skills relacionados

    Astropy

    34.8k

    Librería Python central para astronomía y astrofísica: unidades/cantidades, coordenadas, E/S de FITS, tablas, sistemas de tiempo, WCS y cosmología, para implementar o depurar código con Astropy.

    Costo de contexto al activarse
    3.6k tok
    Tamaño del paquete
    8 archivos
    Última actualización
    el mes pasado
    investigacion

    Integración con el SDK de Python de Benchling y su API REST para entidades del registro, inventario, entradas del cuaderno electrónico (ELN), workflows, Benchling Apps y consultas al Data Warehouse.

    Costo de contexto al activarse
    1.9k tok
    Tamaño del paquete
    6 archivos
    Última actualización
    el mes pasado
    investigacion

    Busca papers científicos y obtiene datos experimentales estructurados extraídos de estudios a texto completo vía el servidor MCP de BGPT: más de 25 campos por paper (métodos, resultados, muestras, calidad, conclusiones).

    Costo de contexto al activarse
    713 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    el mes pasado
    investigacion