validate | R Documentation |
Validate the delayed objects inside a HDF5 file.
This is automatically run at the end of every saveDelayed
call to check the integrity of the saved files.
See https://artifactdb.github.io/chihaya/ for more details.
validate(path, name)
path |
String containing the path to the HDF5 file. |
name |
String containing the name of the delayed object inside the file. |
NULL
if there are no problems, otherwise an error is raised.
Aaron Lun
See https://artifactdb.github.io/chihaya/ for the specification.
X <- DelayedArray(matrix(runif(100), ncol=20))
Y <- X[1:2,3:5]
temp <- tempfile(fileext=".h5")
saveDelayed(Y, temp)
validate(temp, "delayed")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.