File: H5D_extras.Rd

package info (click to toggle)
r-bioc-rhdf5 2.50.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,584 kB
  • sloc: ansic: 8,521; cpp: 91; makefile: 11; python: 9; sh: 6
file content (38 lines) | stat: -rw-r--r-- 1,162 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/H5D_extras.R
\name{H5D_extras}
\alias{H5D_extras}
\alias{H5Dchunk_dims}
\alias{H5Dis_chunked}
\title{Additional functions for finding details of dataset chunking.}
\usage{
H5Dchunk_dims(h5dataset)

H5Dis_chunked(h5dataset)
}
\arguments{
\item{h5dataset}{Object of class \linkS4class{H5IdComponent} representing an open HDF5
dataset.}
}
\value{
\itemize{
\item \code{H5Dchunk_dims}: If the supplied dataset is chunked returns a vector, with length
equal to the rank of the dataset, containing the size of the dataset
dimensions.  Returns \code{NULL} if the given dataset is not chunked.
\item \code{H5Dis_chunked}: returns \code{TRUE} if a dataset is chunked and \code{FALSE} otherwise.
}
}
\description{
Additional functions for finding details of dataset chunking.
}
\details{
These functions do not map directly to the HDF5 C API but follow the same style and are
included as potentially useful additions.
\itemize{
\item \code{H5Dis_chunked} tests whether a dataset is chunked.
\item \code{H5Dchunk_dims} will return the dimensions of the dataset chunks.
}
}
\author{
Mike Smith
}