Context map for TileDB-backed SOMA objects
Methods
Inherited methods
Method new()
Arguments
config
...
cached
Force new creation
Returns
An instantiated SOMATileDBContext
object
Method keys()
Returns
The keys of the map
Method items()
Usage
SOMATileDBContext$items()
Returns
Return the items of the map as a list
Usage
SOMATileDBContext$length()
Returns
The number of items in the map
Usage
SOMATileDBContext$get(key, default = quote(expr = ))
Arguments
key
Key to fetch
default
Default value to fetch if key
is not found;
defaults to NULL
Returns
The value of key
in the map, or default
if
key
is not found
Method set()
Usage
SOMATileDBContext$set(key, value)
Arguments
key
Key to set
value
Value to add for key
, or NULL
to remove
the entry for key
Returns
[chainable] Invisibly returns self
with
value
added as key
Method to_tiledb_context()
Usage
SOMATileDBContext$to_tiledb_context()
Returns
A tiledb_ctx
object, dynamically
constructed. Most useful for the constructor of this class.
Method context()
Usage
SOMATileDBContext$context()
Returns
A tiledb_ctx
object, which is
a stored (and long-lived) result from to_tiledb_context
.
Method clone()
The objects of this class are cloneable with this method.
Usage
SOMATileDBContext$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.