h5reg-utils | R Documentation |
is.h5reg
checks if a file (or bytes in memory) looks like
h5reg
file.
read.h5reg.info(x, ...)
is.h5reg(f = NULL, bytes = NULL)
x |
path to a |
... |
Currently ignored |
f |
Path to a file on disk |
bytes |
A set of bytes that are at least as big as the HDF5 magic value. |
if bytes
is passed a raw byte array, then is.h5reg
can
do a very quick check to ensure that it is actually an HDF5 file, before
inspect the contents of the file itself in more detail.
a named list describing the contents of an h5reg
file.
Logical indicating whether the file is an HDF5 encoded registration file ('codeh5reg)
h5reg
h5f <- system.file('samples/complexdummyh5reg.h5', package = 'nat.h5reg')
read.h5reg.info(h5f)
is.h5reg(h5f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.