Skip to content

Commit

Permalink
Update tiledb_array() call for argument deprecation.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 7, 2024
1 parent 19d67d2 commit 99cb3c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: TileDBArray
Version: 1.15.1
Date: 2024-07-13
Version: 1.15.2
Date: 2024-09-06
Title: Using TileDB as a DelayedArray Backend
Description: Implements a DelayedArray backend for reading and
writing dense or sparse arrays in the TileDB format. The
Expand Down
2 changes: 1 addition & 1 deletion R/TileDBArray.R
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ setMethod("extract_array", "TileDBArraySeed", function(x, index) {
return(output)
}

obj <- tiledb_array(path(x), attrs=x@attr, query_type="READ", as.data.frame=TRUE)
obj <- tiledb_array(path(x), attrs=x@attr, query_type="READ", return_as="data.frame")
on.exit(tiledb_array_close(obj))

df <- .extract_values(obj, index)
Expand Down

0 comments on commit 99cb3c5

Please sign in to comment.