Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MISC] add brief note that TSV example in the spec may currently use either tab or space characters #643

Merged
merged 4 commits into from
Nov 2, 2020
Merged
Changes from 3 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
9 changes: 7 additions & 2 deletions src/02-common-principles.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,10 +446,15 @@ exponent. TSV files MUST be in UTF-8 encoding.
Example:

```Text
onset duration response_time correct stop_trial go_trial
200 200 0 n/a n/a n/a
onset duration response_time correct stop_trial go_trial
200 200 0 n/a n/a n/a
```

**Note**: The TSV examples in this document (like the one above this note)
are occasionally formatted using space characters instead of tabs to improve
human readability.
Directly copying and then pasting these examples from the specification
for use in new BIDS datasets can lead to errors and is discouraged.
sappelhoff marked this conversation as resolved.
Show resolved Hide resolved
Tabular files MAY be optionally accompanied by a simple data dictionary
in the form of a JSON [object](https://www.json.org/json-en.html)
within a JSON file.
Expand Down