Skip to contents

This function creates a Daf object that stores data in disk files. See the Julia documentation for details.

Usage

files_daf(path, mode = "r", name = NULL)

Arguments

path

Path to the files storage location

mode

Mode to open the storage ("r" for read-only, "r+" for read-write)

name

Optional name for the Daf object

Value

A Daf object with file-based storage

Examples

if (FALSE) { # \dontrun{
setup_daf()
daf <- files_daf(tempdir(), "w", name = "example")
add_axis(daf, "gene", c("X", "Y", "Z"))
} # }