Get the dataset_description object from a BIDS project
Source:R/all_generic.R, R/dataset_description.R
dataset_description.RdGet the dataset_description object from a BIDS project
Examples
# \donttest{
tryCatch({
ds001_path <- get_example_bids_dataset("ds001")
proj <- bids_project(ds001_path)
desc <- dataset_description(proj)
print(desc)
unlink(ds001_path, recursive = TRUE)
}, error = function(e) message("Example requires internet: ", e$message))
#> <bids_dataset_description>
#> Name: Balloon Analog Risk-taking Task
#> BIDSVersion: 1.0.0
#> DatasetType: raw
#> License: (none)
#> GeneratedBy: (none)
#> DatasetLinks: (none)
# }