Step 3: MEG Bids Importer
Follow the instructions in the readme for the usage here.
Make sure, you have set up Plus-Sync
Here's an extended version of the instructions:
- 
Initialize You can create a new configuration file ( meg_bids_importer.toml) by issueing:meg_bids_importer initYou will be prompted to provide the ANC project slug and the name of the plus_syncremote. For example, if your study acronym isns_lipreading, you are part of the Auditory Neuroscience Lab, and you followed the instructions in Step 2, you would enter the following:anc_project_slug = "bids-datasets/auditory/ns_lipreading" plus_sync_remote = "sinuhe"After the initializing a new configuration file at meg_bids_importer.tomlis done, open it to add missing pieces.
- 
A GitLab Project Access Token needs to be created and then stored in a separate file, referenced at anc_token_filein themeg_bids_importer.toml.Enter the name of the token fileanc_token_file = ".gitlab_token".gitlab_tokento the .toml file and create it. Get the gitlab token. Therefore on your project on the ANC go to >>settings>>access_tokens.Currently, you do not have permission to get this gitlab token at the ANC. This workflow will be updated. 
- 
Add a task ❯ meg_bids_importer task --helpUsage: meg_bids_importer task [OPTIONS] COMMAND [ARGS]... Manage Tasks. ╭─ Options ─────────────────────────────────────────────────────────────────────────────╮ │ --help Show this message and exit. │ ╰───────────────────────────────────────────────────────────────────────────────────────╯ ╭─ Commands ────────────────────────────────────────────────────────────────────────────╮ │ add Add a new task to the configuration. │ │ add-callback-event-config Add a callback event configuration to a task. │ │ add-simple-event-config Add a simple event configuration to a task. │ ╰───────────────────────────────────────────────────────────────────────────────────────╯With task, new tasks can be added to the configuration file, and the function to create the event files from the data can be added.For the resting state issue: ❯ meg_bids_importer task add restingFor the other tasks, you need to write a python function with the raw filename as an input, that returns three elements: - Events, that can be extracted with the obob_mne functionread_events_from_analogue(np.ndarray)
- Event Metadata, that will be saved as the events.tsv(pd.DataFrame)
- Description of the columns in the event metadata as keys (dict).
 In this case, if the task is called vis and the function is saved in utils/bids_importer.py, I can add the task and the function with this command: ❯ meg_bids_importer task add-callback-event-config vis utils.bids_importer.extract_vis_eventsmeg_bids_importer.toml this will then look like this: [[tasks]] name = "rest" regex = "rest|resting|restingstate" [[tasks]] name = "vis" regex = "visual" [tasks.events] callback_function = "utils.bids_importer.extract_vis_events"
- Events, that can be extracted with the obob_mne function
- 
Upload your data! First list the subjects in sinuhe: meg_bids_importer list-subjects sinuheSelect a subject and upload it with: meg_bids_importer upload 19891224hbau