BIDSHandler
A class to handle the creation of a BIDS-compliant dataset.
This class provides methods for creating and managing BIDS datasets and their modality agnostic files plus modality specific files.
Examples:
Source code in psychopy_bids/bids/bidshandler.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 | |
acq
property
writable
¶
A label to distinguish a different set of parameters used for acquiring the same modality.
data_type
property
writable
¶
A functional group of different types of data.
dataset
property
writable
¶
A set of neuroimaging and behavioral data acquired for a purpose of a particular study.
events
property
¶
Get the list of events.
session
property
writable
¶
A logical grouping of neuroimaging and behavioral data consistent across subjects.
subject
property
writable
¶
A participant identifier of the form sub-
task
property
writable
¶
A set of structured activities performed by the participant.
__init__(dataset, subject=None, task=None, session=None, data_type='beh', acq=None, runs=True)
¶
Initialize a BIDSHandler object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset
|
str
|
A set of neuroimaging and behavioral data acquired for a purpose of a particular study. |
required |
subject
|
str
|
A person or animal participating in the study. |
None
|
task
|
str
|
A set of structured activities performed by the participant. |
None
|
session
|
str
|
A logical grouping of neuroimaging and behavioral data consistent across subjects. |
None
|
data_type
|
str
|
A functional group of different types of data. |
'beh'
|
acq
|
str
|
Custom label to distinguish different conditions present during multiple runs of the same task. |
None
|
runs
|
bool
|
If True, run will be added to filename. |
True
|
Source code in psychopy_bids/bids/bidshandler.py
_addJsonSidecar(event_filepath, event_type, sidecar_path, generate_hed_metadata)
¶
Create or update the JSON sidecar file for the events file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event_filepath
|
Path
|
The path to the written event TSV file. |
required |
event_type
|
str
|
Indicates whether this is a 'beh' or 'events' file for the sidecar naming. |
required |
sidecar_path
|
Union[bool, str]
|
If a string, uses the provided path to update the sidecar file. |
required |
generate_hed_metadata
|
bool
|
If True, automatically generates HED metadata based on the event file. |
required |
Source code in psychopy_bids/bids/bidshandler.py
732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 | |
_addStimuliFolder(event_filepath)
¶
Copies files referenced in the 'stim_file' column of the event TSV into a 'stimuli' directory under the dataset root, preserving folder structure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event_filepath
|
str or Path
|
Path to the TSV event file from which to extract 'stim_file' references. |
required |
Source code in psychopy_bids/bids/bidshandler.py
_copyItem(src, dst_dir, force)
staticmethod
¶
Copy file or directory to destination, with overwrite protection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
src
|
Path
|
Source file or directory to copy |
required |
dst_dir
|
Path
|
Destination directory to copy into |
required |
force
|
bool
|
If True, overwrite existing files |
required |
Source code in psychopy_bids/bids/bidshandler.py
_createChangeLogEntry(new_version, changes, changelog_dest)
staticmethod
¶
Create a new changelog entry with version, date and changes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
new_version
|
str
|
Version number for the new entry |
required |
changes
|
list
|
List of changes to include |
required |
changelog_dest
|
Path
|
Path to the changelog file |
required |
Returns:
| Type | Description |
|---|---|
str
|
Formatted changelog entry |
Source code in psychopy_bids/bids/bidshandler.py
_determineCodePath(path)
staticmethod
¶
Determine code and psyexp paths from input path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Union[str, None]
|
Input path to analyze |
required |
Returns:
| Type | Description |
|---|---|
tuple
|
Tuple of (code_path, psyexp_path) |
Source code in psychopy_bids/bids/bidshandler.py
_downloadLicense(identifier, license_dest)
staticmethod
¶
Download a license file from SPDX.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
identifier
|
str
|
SPDX license identifier |
required |
license_dest
|
Path
|
Destination path for license file |
required |
Source code in psychopy_bids/bids/bidshandler.py
_generateEventFilePath(event_type)
¶
Generate the file path for the event file based on its type and the current dataset, subject, session, and data_type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event_type
|
str
|
The suffix to use in the filename (e.g., 'beh' or 'events'). |
required |
Returns:
| Type | Description |
|---|---|
Path
|
The full path (including filename) to the event file to be created. |
Source code in psychopy_bids/bids/bidshandler.py
_getLatestBidsVersion()
staticmethod
¶
Fetch the latest BIDS specification version from GitHub.
Returns:
| Type | Description |
|---|---|
str
|
Version string or fallback version |
Source code in psychopy_bids/bids/bidshandler.py
_getLatestHedVersion()
staticmethod
¶
Fetch the latest HED schema version from GitHub.
Returns:
| Type | Description |
|---|---|
str
|
Version string or fallback version |
Source code in psychopy_bids/bids/bidshandler.py
_getPackageVersion(package_name)
staticmethod
¶
Get the version of a Python package.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
package_name
|
str
|
Name of the package |
required |
Returns:
| Type | Description |
|---|---|
str
|
Version string or "unknown" |
Source code in psychopy_bids/bids/bidshandler.py
_incrementVersion(changelog_dest, version)
staticmethod
¶
Increment the version number based on the specified version part.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
changelog_dest
|
Path
|
Path to the changelog file |
required |
version
|
str
|
Version part to increment ("MAJOR", "MINOR", or "PATCH") |
required |
Returns:
| Type | Description |
|---|---|
str
|
The new version number |
Source code in psychopy_bids/bids/bidshandler.py
_loadDatasetDescriptionTemplate(file_path)
staticmethod
¶
Load the dataset description JSON template.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
Union[str, Path, None]
|
Path to custom template file, if None uses default |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Template data as dictionary |
Source code in psychopy_bids/bids/bidshandler.py
_loadSidecarTemplate(template_path)
staticmethod
¶
Load the sidecar template from a specified file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_path
|
Path
|
Path to the template file. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Loaded sidecar template as a dictionary. |
Source code in psychopy_bids/bids/bidshandler.py
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 | |
_parseLogEntry(event, regex)
staticmethod
¶
Parse a single log entry.
Source code in psychopy_bids/bids/bidshandler.py
_updateBidsIgnore(bidsignore_path, entry)
staticmethod
¶
Update the .bidsignore file by adding a new entry if it doesn't exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bidsignore_path
|
Path
|
Path to the .bidsignore file |
required |
entry
|
str
|
Entry to add to the ignore file |
required |
Source code in psychopy_bids/bids/bidshandler.py
_updateParticipantsFile(participant_info)
¶
Update or create the participants.tsv file with the given participant information.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
participant_info
|
dict
|
Dictionary containing participant metadata (e.g., {'age': 25, 'sex': 'M'}).
The key 'participant_id' will be updated with |
required |
Source code in psychopy_bids/bids/bidshandler.py
_writeSingleEventFile(events, event_type, execute_sidecar, generate_hed_metadata, add_stimuli)
¶
Write a single type of events to the dataset (behavioral or task).
Optionally creates a JSON sidecar file and copies stimuli if requested.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
events
|
list
|
List of event dictionaries (BIDSBehEvent or BIDSTaskEvent instances, as dicts). |
required |
event_type
|
str
|
The suffix in the event filename (e.g., 'beh' or 'events'). |
required |
execute_sidecar
|
Union[bool, str]
|
If True, calls |
required |
generate_hed_metadata
|
bool
|
If True, automatically generates HED metadata based on the event file. Only applies if execute_sidecar is not False. |
required |
add_stimuli
|
bool
|
If True, calls |
required |
Returns:
| Type | Description |
|---|---|
list
|
The same list of events that were written, for reference (used to update |
Source code in psychopy_bids/bids/bidshandler.py
addChanges(changes, version='PATCH', force=False)
¶
Update the version history of the dataset.
This method updates the CPAN changelog-like file CHANGES by adding a new version entry
with the specified changes and incrementing the version number accordingly.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
changes
|
list
|
List of changes or bullet points for the new version. |
required |
version
|
str
|
The version part to increment. Must be one of "MAJOR", "MINOR", or "PATCH". |
'PATCH'
|
force
|
bool
|
Specifies whether existing file should be overwritten. |
False
|
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject=None, task=None)
>>> handler.createDataset()
>>> handler.addChanges(["Added new data files"], "MAJOR")
Notes
Version history of the dataset (describing changes, updates and corrections) MAY be provided in the form of a CHANGES text file. This file MUST follow the CPAN Changelog convention. The CHANGES file MUST be either in ASCII or UTF-8 encoding. For more details on the CHANGES file, see: https://bids-specification.readthedocs.io/en/stable/03-modality-agnostic-files.html#changes
Source code in psychopy_bids/bids/bidshandler.py
addDatasetDescription(file_path=None, force=False)
¶
Add a description to the dataset by creating dataset_description.json.
This method adds the required dataset_description.json file to the dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
str or None
|
Path to a custom |
None
|
force
|
bool
|
Specifies whether existing files should be overwritten. |
False
|
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject="sub-01", task="simple")
>>> handler.createDataset()
>>> handler.addDatasetDescription()
Notes
The file dataset_description.json is a JSON file describing the dataset. Every dataset
MUST include this file. For more details, see:
https://bids-specification.readthedocs.io/en/stable/03-modality-agnostic-files.html#dataset-description
Source code in psychopy_bids/bids/bidshandler.py
addEnvironment()
¶
Generate a deduplicated requirements.txt and update .bidsignore.
This method scans the current Python environment for installed packages,
consolidates them into a requirements.txt file, and writes it to the dataset.
If multiple versions of the same package are found, the higher version is used,
and a warning is printed. The requirements.txt file is also added to .bidsignore
to ensure it is ignored during BIDS validation.
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject="sub-01", task="simple")
>>> handler.createDataset()
>>> handler.addEnvironment()
Source code in psychopy_bids/bids/bidshandler.py
addEvent(event)
¶
Add an event or list of events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event
|
Any or list
|
The event or list of events to be added to the list. |
required |
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset")
>>> handler.addEvent(bids.BIDSBehEvent(trial=1))
>>> handler.addEvent([bids.BIDSBehEvent(trial=2), bids.BIDSBehEvent(trial=3)])
Source code in psychopy_bids/bids/bidshandler.py
addLicense(identifier, force=False)
¶
Add a license file to the dataset.
This method downloads a license with the given identifier from the SPDX license list and
copies the content into the file LICENSE.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
identifier
|
str
|
Identifier of the license. |
required |
force
|
bool
|
Specifies whether existing file should be overwritten. |
False
|
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject="sub-01", task="simple")
>>> handler.createDataset()
>>> handler.addLicense("CC-BY-NC-4.0")
Notes
A LICENSE file MAY be provided in addition to the short specification of the used license in the dataset_description.json "License" field. The "License" field and LICENSE file MUST correspond. The LICENSE file MUST be either in ASCII or UTF-8 encoding. For more details, see: https://bids-specification.readthedocs.io/en/stable/03-modality-agnostic-files.html#license
Source code in psychopy_bids/bids/bidshandler.py
addReadme(force=False)
¶
Add a text file explaining the dataset in detail.
This method adds a README template file to the dataset, which contains the main sections
needed to describe the dataset in more detail.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
force
|
bool
|
Specifies whether existing file should be overwritten. |
False
|
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject="sub-01", task="simple")
>>> handler.createDataset()
>>> handler.addReadme()
Notes
A REQUIRED text file, README, SHOULD describe the dataset in more detail. A BIDS dataset MUST NOT contain more than one README file (with or without extension) at its root directory. For more details, see: https://bids-specification.readthedocs.io/en/stable/03-modality-agnostic-files.html#readme
Source code in psychopy_bids/bids/bidshandler.py
addTaskCode(path=None, force=False)
¶
Add psychopy script or specified code directory to the BIDS /code directory.
This method copies the psychopy script or a specified folder into the /code directory
of the dataset. If a path is provided, the function handles files and folders
appropriately. If the path starts with "code/", this prefix is stripped only for the
destination placement.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to the file or folder to copy. If None, the main script is used. |
None
|
force
|
bool
|
If True, existing files are overwritten. Default is False. |
False
|
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject="sub-01", task="simple")
>>> handler.addTaskCode(path="tests/bids_validator/experiment_lastrun.py", force=True)
Notes
The method ensures no files are overwritten unless the force parameter is set to True.
If the path starts with "code/", the prefix is stripped only from the destination.
If a file or directory already exists in /code, a warning is issued unless force=True.
Source code in psychopy_bids/bids/bidshandler.py
createDataset(readme=True, chg=True, lic=True, force=False)
¶
Create the rudimentary body of a new dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
readme
|
bool
|
Specifies whether a README file should be created. |
True
|
chg
|
bool
|
Specifies whether a CHANGES file should be created. |
True
|
lic
|
bool
|
Specifies whether a LICENSE file should be created. |
True
|
force
|
bool
|
Specifies whether existing files should be overwritten. |
False
|
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject="sub-01", task="simple")
>>> handler.createDataset()
Source code in psychopy_bids/bids/bidshandler.py
parseLog(file, level='BIDS', regex=None)
staticmethod
¶
Extract events from a log file.
This method parses a given log file based on the specified log level and, optionally, a regex pattern. It then processes and structures these events into a list each adhering to the BIDSTaskEvent event format.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
str
|
The file path of the log file. |
required |
level
|
str
|
The level name of the bids task events. |
'BIDS'
|
regex
|
str
|
A regular expression to parse the message string. |
None
|
Return
events : list A list of events like presented stimuli or participant responses.
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset", subject="sub-01", task="simple")
>>> log_events = handler.parseLog("simple1.log", "BIDS")
Source code in psychopy_bids/bids/bidshandler.py
writeEvents(participant_info, execute_sidecar=True, generate_hed_metadata=True, add_stimuli=True, event_type='both')
¶
Writes all existing events in self.events to the dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
participant_info
|
dict
|
Key-value pairs describing participant info (e.g. age, sex, group) to be inserted
into participants.tsv. A 'participant_id' key will automatically be added/updated
with |
required |
execute_sidecar
|
Union[bool, str]
|
If True, creates or updates a JSON sidecar file for the events file with metadata. If a string, uses the provided path to update the sidecar file. |
True
|
generate_hed_metadata
|
bool
|
If True, automatically generates HED metadata based on the event file. Only applies if execute_sidecar is not False. |
True
|
add_stimuli
|
bool
|
If True, copies any referenced stimuli in the event file to a |
True
|
event_type
|
str
|
One of {'both', 'beh', 'task'}:
- 'both': Writes both behavioral and task events.
- 'beh': Only writes behavioral events ( |
'both'
|
Examples:
>>> handler = bids.BIDSHandler(dataset="example_dataset")
>>> handler.addEvent(bids.BIDSBehEvent(trial=1))
>>> handler.addEvent(bids.BIDSTaskEvent(onset=1.0, duration=0.5))
>>> handler.writeEvents(participant_info={'participant_id': handler.subject}, execute_sidecar=False)