Packages the output of parcellate() into a boldR_export object
suitable for ingestion by syncR::sync(). The export includes the ROI
timeseries matrix, functional connectivity matrix (if computed), ROI
metrics, and participant metadata.
Arguments
- parcellated
A
boldR_parcellatedobject fromparcellate().- fc
A
boldR_fcobject fromcompute_fc(), orNULL(default).- roi_metrics
A tibble from
compute_roi_metrics(), orNULL(default). IfNULL, metrics are computed automatically.- participant_id
Character or
NULL. Override the subject label for use insyncR. IfNULL, taken from theboldR_boldobject.
Examples
if (FALSE) { # \dontrun{
parcel <- parcellate(bold, atlas)
fc <- compute_fc(parcel)
exp <- export_bold(parcel, fc = fc)
# Pass to syncR
syncR::sync(..., bold = exp)
} # }