listDatasets {rhdf5client}R Documentation

Search inner file hierarchy for datasets

Description

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.

Usage

listDatasets(file)

Arguments

file

an object of type HSDSFile to be searched

Details

This function is deprecated and will be defunct in the next release.

Value

a list of inner-paths

Examples

if (check_hsds()) {
 src <- HSDSSource('http://hsdshdflab.hdfgroup.org')
 f <- HSDSFile(src, '/shared/bioconductor/tenx_full.h5')
 listDatasets(f)
}

[Package rhdf5client version 1.15.2 Index]