Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/bids-matlab
Submodule bids-matlab updated 67 files
+45 −18 +bids/+internal/get_meta_list.m
+16 −6 +bids/+internal/get_metadata.m
+2 −0 +bids/+internal/list_all_trial_types.m
+1 −1 +bids/+internal/return_file_index.m
+3 −1 +bids/+util/create_participants_tsv.m
+8 −3 +bids/+util/create_sessions_tsv.m
+10 −3 +bids/+util/download_ds.m
+4 −2 +bids/+util/jsondecode.m
+91 −0 +bids/+util/update_struct.m
+149 −8 +bids/File.m
+61 −29 +bids/Model.m
+218 −17 +bids/Schema.m
+2 −20 +bids/derivatives_json.m
+2 −1 +bids/diagnostic.m
+12 −17 +bids/layout.m
+6 −1 +bids/query.m
+5 −0 .github/workflows/run_examples.yml
+15 −2 .github/workflows/run_tests_matlab.yml
+17 −1 .github/workflows/run_tests_octave.yml
+4 −0 .github/workflows/update_schema.yml
+4 −0 .github/workflows/validate.yml
+1 −1 demos/notebooks/BIDS_Matlab_03_filenames_and_metadata.m
+1 −0 demos/spm/facerep/code/convert_facerep_ds.m
+ docs/source/images/timing.png
+1 −0 docs/source/index.rst
+21 −0 docs/source/performance.rst
+9 −0 run_tests.m
+77 −0 tests/test_bids_file.m
+58 −4 tests/test_bids_model.m
+96 −2 tests/test_bids_schema.m
+2 −17 tests/test_derivatives_json.m
+8 −10 tests/test_report.m
+65 −186 tests/tests_layout/layout_timing.m
+47 −0 tests/tests_layout/plot_timing.m
+2 −10 tests/tests_layout/test_layout.m
+90 −0 tests/tests_layout/test_layout_bugs.m
+25 −21 tests/tests_layout/test_layout_derivatives.m
+2 −0 tests/tests_layout/test_layout_schemaless.m
+79 −0 tests/tests_layout/timing.tsv
+32 −33 tests/tests_private/test_append_to_layout.m
+2 −2 tests/tests_private/test_list_all_trial_types.m
+2 −4 tests/tests_private/test_list_events.m
+1 −1 tests/tests_private/test_parse_filename.m
+2 −2 tests/tests_private/test_return_file_index.m
+48 −24 tests/tests_query/test_bids_query.m
+4 −2 tests/tests_query/test_bids_query_asl.m
+1 −0 tests/tests_query/test_bids_query_derivatives.m
+2 −1 tests/tests_query/test_bids_query_dwi.m
+4 −2 tests/tests_query/test_bids_query_eeg.m
+2 −1 tests/tests_query/test_bids_query_func.m
+4 −2 tests/tests_query/test_bids_query_ieeg.m
+2 −1 tests/tests_query/test_bids_query_matlab_octave.m
+4 −4 tests/tests_query/test_bids_query_meg.m
+4 −2 tests/tests_query/test_bids_query_microscopy.m
+2 −1 tests/tests_query/test_bids_query_motion.m
+2 −1 tests/tests_query/test_bids_query_nirs.m
+4 −2 tests/tests_query/test_bids_query_qmri.m
+2 −1 tests/tests_query/test_query_bug_453.m
+5 −1 tests/tests_slow/test_diagnostic.m
+8 −0 tests/tests_slow/test_download_ds.m
+10 −6 tests/tests_utils/test_create_data_dict.m
+1 −1 tests/tests_utils/test_create_participants_tsv.m
+2 −2 tests/tests_utils/test_create_readme.m
+2 −2 tests/tests_utils/test_create_sessions_tsv.m
+3 −3 tests/tests_utils/test_plot_events.m
+49 −0 tests/tests_utils/test_update_struct.m
+9 −0 tests/utils/run_slow_test_only.m