tiledbsoma.DenseNDArray.reopen¶
- DenseNDArray.reopen(mode: Literal['r', 'w'], tiledb_timestamp: int | datetime | None = None) Self ¶
Return a new copy of the SOMAObject with the given mode at the current Unix timestamp.
- Parameters:
mode – The mode to open the object in. -
r
: Open for reading only (cannot write). -w
: Open for writing only (cannot read).tiledb_timestamp – The TileDB timestamp to open this object at, either an int representing milliseconds since the Unix epoch or a datetime.dateime object. When not provided (the default), the current time is used.
- Raises:
ValueError – If the user-provided
mode
is invalid.
Lifecycle
Experimental.