field_selector
tit.analyzer.field_selector ¶
Field selection utilities for automatic field file determination.
Resolves the correct field file path and SimNIBS field name for a given subject, simulation, and analysis space (mesh or voxel).
Public API¶
select_field_file Resolve the field path and SimNIBS field name for a subject/simulation.
See Also¶
tit.analyzer.analyzer : Analyzer class that consumes the resolved paths.
select_field_file ¶
select_field_file(subject_id: str, simulation: str, space: str, tissue_type: str = 'GM', field: str | None = None) -> tuple[Path, str]
Return the field file path and SimNIBS field name.
Detects whether the simulation is TI (2-pair) or mTI (4-pair) by checking for the existence of the mTI mesh directory.
Parameters¶
subject_id : str
Subject identifier (without sub- prefix).
simulation : str
Simulation (montage) folder name.
space : str
"mesh" or "voxel".
tissue_type : str, optional
"GM", "WM", or "both" (voxel only). Default "GM".
field : str or None, optional
Field name from constants.FIELD_REGISTRY (e.g. "hf_peak").
Default None resolves TI_max (TI) or TI_Max (mTI).
"TI_max"/"TI_Max" are treated as aliases for the same
quantity; the on-disk spelling is always chosen by the detected
simulation type, regardless of which alias is passed.
Returns¶
field_path : pathlib.Path
Resolved absolute path to the field file.
field_name : str
SimNIBS field name (e.g. "TI_max", "mTI_max").
Raises¶
FileNotFoundError
If the expected field file does not exist.
ValueError
If space is not "mesh"/"voxel", or field is unknown.
See Also¶
Analyzer : Consumes the resolved path to load and analyze fields.