mne_inverse_pipeline
Overview
mne_inverse_pipeline executes an MNA graph-based pipeline for inverse source estimation. It reads a .mna project file describing a pipeline of processing nodes (load → filter → covariance → forward → inverse), validates the directed acyclic graph (DAG), and executes it in topological order.
Usage
mne_inverse_pipeline [options]
Options
| Option | Description |
|---|---|
-p, --project <file> | Path to the .mna project file |
-n, --dry-run | Validate the graph without executing it |
--list-ops | List all registered operators and exit |
--help | Print help |
--version | Print version |
Example
# Execute an inverse pipeline
mne_inverse_pipeline --project analysis.mna
# Validate without executing
mne_inverse_pipeline --project analysis.mna --dry-run
# List available operators
mne_inverse_pipeline --list-ops
See Also
- mne_show_mna — Display MNA project file contents
- mne_compute_cmne — Compute CMNE source estimates
- MNA Format — MNA project file format specification