bids_project {bidsr} | R Documentation |
'BIDS' project class
Description
'BIDS' project class
Usage
BIDSProject(
path,
raw_data_relpath = ".",
source_data_relpath = "sourcedata",
derivative_data_relpath = "derivatives",
strict = TRUE
)
bids_project(
path,
raw_data_relpath = ".",
source_data_relpath = "sourcedata",
derivative_data_relpath = "derivatives",
strict = TRUE
)
Arguments
path |
absolute path to the 'BIDS' project directory; |
raw_data_relpath |
raw data-set path, relative (to the |
source_data_relpath |
source data-set path, relative (to the |
derivative_data_relpath |
derivative data-set path, relative (to the |
strict |
whether |
Value
A 'BIDS' project instance.
Author(s)
Zhengjia Wang
Examples
# Run `download_bids_examples()` first
examples <- download_bids_examples(test = TRUE)
if(!isFALSE(examples)) {
project_path <- file.path(examples, "ieeg_epilepsy_ecog")
project <- BIDSProject(
path = project_path,
raw_data_relpath = ".",
derivative_data_relpath = "derivatives"
)
project
}
[Package bidsr version 0.1.1 Index]