bioconductor v3.9.0 Rhdf5lib
Provides C and C++ hdf5 libraries.
Link to this section Summary
Functions
Rhdf5lib: A version of the HDF5 library built into an R package.
Report the version of HDF5 distributed with this package
Compiler arguments for using Rhdf5lib
Link to this section Functions
Rhdf5lib()
Rhdf5lib: A version of the HDF5 library built into an R package.
Description
This package provides a compiled version of the HDF5 library bundled within the R package structure. It is primarily useful to developers of other R packages who want to make use of the capabilities of the HDF5 library directly in the C or C++ code of their own packages, rather than using a higher level interface.
getHdf5Version()
Report the version of HDF5 distributed with this package
Description
This function returns the version number of the HDF5 library that is distributed with this package.
Usage
getHdf5Version()
Value
Returns a character
vector of length 1 containing the version
number.
Examples
getHdf5Version()
pkgconfig()
Compiler arguments for using Rhdf5lib
Description
This function returns values for PKG_CXX_LIBS
and
PKG_CC_FLAGS
variables for use in Makevars files.
Usage
pkgconfig(opt = c("PKG_CXX_LIBS", "PKG_C_LIBS"))
Arguments
Argument | Description |
---|---|
opt | A scalar character from the list of available options; default is PKG_CXX_LIBS . |
Value
NULL
; prints the corresponding value to stdout.
Examples
pkgconfig("PKG_CXX_LIBS")
pkgconfig("PKG_C_LIBS")