dcmri.write_dmr#

dcmri.write_dmr(path: str, rois: dict, pars=None, nest=False)[source]#

Write region-of-interest (ROI) data to disk in .dmr format.

Parameters:
  • path (str) – path to .dmr file. If the extension .dmr is not included, it is added automatically.

  • rois (dict) – ROI data as a dictionary with one item per ROI. Each ROI is a dictionary on itself which has a required key ‘signal’ containing the signal data. Other keys are optional but when included their values must have the same length as signal.

  • pars (dict, optional) – Dictionary with additional parameters such as sequence parameters or subject characteristics. Defaults to None.

  • nest ((bool) – If True, a nested dictionary is returned. Defaults to False.

Raises:

ValueError – if the data are not correctly formatted.