Folder location of pipeline files?

Hi there Brainstorm team,
Where can I find this pipeline file if you save a new pipeline to load it afterwards?
I am in the middle of switching to a different computer and realised that all my pipeline files have to be individually saved as ".mat" files and manually loaded. Therefore I would like to know where the original pipeline files are saved so that I can just copy and paste those.
Many thanks in advance!
image

When using the option [Save], Pipelines are not saved as independent files, rather they are stored in the file brainstorm.mat in your User folder as the field Pipelines.

For copying the Pipelines to your new system, you can:

  1. Get the stored Pipelines from the old system with this command:
    sPipelines = bst_get('Pipelines');

  2. Set the Pipelines on the new system with this command:
    bst_set('Pipelines', sPipelines);

This commands are available from version 15-Jul-2024.
Please note that the Step 2, will overwrite any Pipeline stored in the new system.