listDatasets {rhdf5client} | R Documentation |
The datasets in an HDF5 file are organized internally by groups. This routine traverses the internal group hiearchy, locates all datasets and prints a list of them. Note that if the file's group hiearchy is complex, this could be time-consuming.
listDatasets(file)
file |
an object of type HSDSFile to be searched |
This function is deprecated and will be defunct in the next release.
a list of inner-paths
if (check_hsds()) { src <- HSDSSource('http://hsdshdflab.hdfgroup.org') f <- HSDSFile(src, '/shared/bioconductor/tenx_full.h5') listDatasets(f) }