Skip to main content

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

OptionDescription
-p, --project <file>Path to the .mna project file
-n, --dry-runValidate the graph without executing it
--list-opsList all registered operators and exit
--helpPrint help
--versionPrint 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