hca_next {hca} | R Documentation |
hca_next()
retrieves the next 'page' of results from
a query of projects()
, samples()
, files()
, or
bundles()
.
hca_prev()
returns the previous 'page' of results.
hca_next(x) hca_prev(x)
x |
a 'tibble' or 'lol' object returned by |
hca_next()
returns the next page of results as a 'tibble'
or 'lol'
hcl_prev()
returns the previous page of results.
files <- files(size = 5) # results 1-5, as a tibble next_files <- hca_next(files) # results 6-10 next_files hca_prev(next_files) # previous results, i.e., files 1-5