Read a sessions.tsv file for a subject
Usage
read_sessions_tsv(x, subid, ...)
# S3 method for class 'bids_project'
read_sessions_tsv(x, subid, ...)Examples
# \donttest{
tryCatch({
ds007_path <- get_example_bids_dataset("ds007")
proj <- bids_project(ds007_path)
sess <- read_sessions_tsv(proj, subid = "01")
unlink(ds007_path, recursive = TRUE)
}, error = function(e) message("Example requires internet: ", e$message))
#> No sessions.tsv found for sub-01
# }