VBMEG 2.0-0-b-9 ReleaseNote

VBMEG2.0 ReleaseNote

VBMEG 2.0

This is VBMEG2.0, a major update to the VBMEG software, containing substantial functional enhancements over previous versions, as detailed in this document.

Main features of VBMEG 2.0

  • Connectome dynamics estimation

    We have proposed a method to estimate current source dynamics under a constraint of whole-brain structural connectivity, called connectome (Fukushima et al. 2015, NeuroImage). The Fukushima's variational Bayesian method as well as two-step connectome dynamics estimation methods are implemented. These methods are applicable to investigate event-related or evoked brain activities.

  • Visualization of estimated connectome dynamics as the dynamics movie

    We propose a method to visualize complicated connectome dynamics as the dynamics movie. This method allows for visualizing connectome dynamics and current source activities in an unified way.

  • MEG+EEG simultaneous current source imaging

    To take advantage of complementary nature of MEG and EEG, MEG and EEG simultaneous current source imaging in the framework of VBMEG is implemented.

Detailed changes from version 1.0

Brain model

  • From ver2.0, the MNI-aligned brain model is adopted to enhance group-level cortical source imaging analysis. Each vertex point in the new brain model is assigned with a fixed MNI coordinate of the standard brain (for example, vertex 1 = MNI coordinate [-69 -37 -2], vertex2 = [-67 -42 -2] and so on) while keeping cortical structure (normal direction) of each individual brain.
  • Change specification of head model output file parameter (head_parm.head_file)

    Only the specified head_parm.head_file is output, and no intermediate file is output.

  • Default MRI file format is changed from Analyze(.hdr/.img) to NIfTI (.nii).

    note : The MRI file used in VBMEG 2.0 is NIfTI format (.nii), the center coordinates are adjusted to the center of the image .This adjustment is done in the convert_dicom_nifti.m function which is DICOM format to NIfTI format. So NIfTI file used for analysis must always be created using this function ''.

  • Add a function to execute FreeSurfer from MATLAB (vb_freesurfer_run.m).
  • Change brain model import parameters
    1. spm_normalization_file for creating Broadmann and AAL area file became unnecessary.
    2. In order to remove corpus, specify FreeSurfer's label file (brain_parm.FS_left_label_file, .FS_right_label_file).
  • Change format of Cortical model file (.brain.mat)

    Added standard brain model to the Cortical model file(.brain.mat)

  • Cortical area file(.area.mat)

    The definition of 'Cortex' has been changed(VBMEG1.0: containing corpus, VBMEG2.0: No corpus) For this reason, the region where the current source is supposed is different between VBMEG 1.0 and 2.0.

fMRI data processing

  • Automatic fMRI import

    In VBMEG 1.0, it was necessary to operate SPM for each experiment condition and store it in the .spm.mat file, then import it one by one into the area/act file. This procedure was complicated and a cause of human errors. With VBMEG 2.0, it is now possible to automatically import all activity maps registered in the SPM result file (SPM.mat) into the area / act file. The imported activity map names become $conname_T (T value) and $conname_PS (Percent signal change). It is assumed that the SPM analysis is performed on the standard brain in default setting.

Current source imaging

  • bayes_parm.Ta0_act and Ta0 are replaced with bayes_parm.prior_weight. In this new parameter, the prior confidence relative to the number of samples is specified with a real value ranging from 0 to 1 (0 : least confindence) .
  • Added function vb_convert_current_unit.m for mutual conversion of the unit of time series data in the estimated current file(.curr.mat) (Amplitude [Am] <==> Density [Am / mm 2]).

Connectome dynamics

  • Fukushima's dynamics estimation
    • Add a function vb_job_vb_dynamics.m and related subfunctions.
    • Add a function vb_job_current_dynamics.m which creates estimated current file (.curr.mat) from dynamics estimation result of Fukushima's method.
  • Add Linear dynamics connectome estimation toolbox.
  • Add functions for creating movie of the dynamics estimation result.
  • Add diffusion MRI Processor toolbox in which structural connection strength and length matrices between brain regions are computed in cooperation with external tools (FreeSurfer, FSL, MRTrix).

Others

  • project_mgr(GUI) is modified to be able to put stored parameter into M-script from the "Export as M-file" menu(4)/button(6).
     Example exported M-script:
     function test_job_brain
     % original parameter(2017-02-09 11:48:40)
     
     % Project root directory
     proj_root = '/home/proj_root';
     
     % Parameter
     brain_parm.FS_left_file = '/home/FS_SUBJECT_DIR/Subject/bem/lh.smoothwm.asc';
     brain_parm.FS_right_file = '/home/FS_SUBJECT_DIR/Subject/bem/rh.smoothwm.asc';
     brain_parm.FS_left_infl_file = '/home/FS_SUBJECT_DIR/Subject/bem/lh.inflated.asc';
     brain_parm.FS_right_infl_file = '/home/FS_SUBJECT_DIR/Subject/bem/rh.inflated.asc';
     brain_parm.FS_left_curv_file = '/home/FS_SUBJECT_DIR/Subject/bem/lh.curv.asc';
     brain_parm.FS_right_curv_file = '/home/FS_SUBJECT_DIR/Subject/bem/rh.curv.asc';
     brain_parm.FS_left_sphere_file = '/home/FS_SUBJECT_DIR/Subject/bem/lh.sphere.reg.asc';
     brain_parm.FS_right_sphere_file = '/home/FS_SUBJECT_DIR/Subject/bem/rh.sphere.reg.asc';
     brain_parm.FS_sphere_key = 'sphere.reg';
     brain_parm.FS_left_label_file = '/home/FS_SUBJECT_DIR/Subject/label/lh.cortex.label';
     brain_parm.FS_right_label_file = '/home/FS_SUBJECT_DIR/Subject/label/rh.cortex.label';
     brain_parm.registration_mode = 'FS';
     brain_parm.analyze_file = '/home/subject/bolat/Four_quadrant_01/Subject/3D.hdr';
     brain_parm.brain_file = './Subject/3D.brain.mat';
     brain_parm.area_file = './Subject/3D.area.mat';
     brain_parm.act_file = './Subject/3D.act.mat';
     brain_parm.R_max = 0.018;
     brain_parm.Nvertex = 10000;
     brain_parm.reduce_ratio = 0.1;
     brain_parm.N_step = 50;
     brain_parm.display = 200;
     brain_parm.brain_space = 'mni';
     
     % Execute job function
     vb_job_brain(proj_root, brain_parm);