Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Oct 11, 2024
1 parent 023f3de commit e5c44ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apis/r/R/TileDBArray.R
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ TileDBArray <- R6::R6Class(
valuesxp = val,
type = class(val),
is_array = TRUE,
ctxxp = soma_context(),
ctxxp = private$.soma_context,
tsvec = self$.tiledb_timestamp_range
)
}
Expand Down
3 changes: 2 additions & 1 deletion apis/r/R/TileDBObject.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ TileDBObject <- R6::R6Class(
if (is.null(tiledbsoma_ctx)) {
private$.soma_context <- soma_context()
} else {
private$.soma_context <- soma_context(unlist(tiledbsoma_ctx$items()))
#private$.soma_context <- soma_context(unlist(tiledbsoma_ctx$items()))
private$.soma_context <- createSOMAContext(unlist(tiledbsoma_ctx$items()))
}
} else {
private$.soma_context <- soma_context
Expand Down

0 comments on commit e5c44ba

Please sign in to comment.