Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: storr.tiledb
Title: A TileDB Storage Driver for Storr
Version: 0.0.36
Date: 2026-04-21
Version: 0.0.37
Date: 2026-05-03
Authors@R:
person("Constantinos", "Giachalis", , "xx@github.com", role = c("aut", "cre"))
Maintainer: Constantinos Giachalis <xx@github.com>
Expand Down Expand Up @@ -42,4 +42,4 @@ Config/testthat/start-first: StorrFragments,auto*
Encoding: UTF-8
Language: en-GB
Roxygen: list(markdown = TRUE, old_usage = TRUE)
RoxygenNote: 7.3.3
Config/roxygen2/version: 8.0.0
10 changes: 10 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,27 @@ export(TileDBDriver)
export(TileDBStorr)
export(driver_tiledb)
export(driver_tiledb_create)
export(get_allocation_size_preference)
export(new_context)
export(set_allocation_size_preference)
export(storr_consolidate)
export(storr_copy)
export(storr_fragments)
export(storr_move)
export(storr_rename)
export(storr_tiledb)
export(storr_vacuum)
export(tiledb_config)
export(tiledb_ctx)
importFrom(R6,R6Class)
importFrom(R6.tiledb,TileDBArray)
importFrom(R6.tiledb,TileDBGroup)
importFrom(R6.tiledb,new_context)
importFrom(arrow,call_function)
importFrom(data.table,`:=`)
importFrom(stats,na.omit)
importFrom(storr,join_key_namespace)
importFrom(tiledb,get_allocation_size_preference)
importFrom(tiledb,set_allocation_size_preference)
importFrom(tiledb,tiledb_config)
importFrom(tiledb,tiledb_ctx)
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# storr.tiledb 0.0.36
# storr.tiledb 0.0.37

* Initial GitHub release.
20 changes: 20 additions & 0 deletions R/reexports.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#' @export
#' @importFrom R6.tiledb new_context
R6.tiledb::new_context

#' @export
#' @importFrom tiledb tiledb_config
tiledb::tiledb_config

#' @export
#' @importFrom tiledb tiledb_ctx
tiledb::tiledb_ctx


#' @export
#' @importFrom tiledb set_allocation_size_preference
tiledb::set_allocation_size_preference

#' @export
#' @importFrom tiledb get_allocation_size_preference
tiledb::get_allocation_size_preference
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
[![CRAN status](https://img.shields.io/badge/CRAN-not%20published-orange)](https://CRAN.R-project.org/package=storr.tiledb)
[![repo-status](https://img.shields.io/badge/repo%20status-experimental-orange.svg)](#)
[![License](https://img.shields.io/badge/License-MIT-003366.svg)](https://opensource.org/licenses/MIT)
[![R CMD Check](https://github.com/cgiachalis/storr.tiledb/actions/workflows/R-CMD-check.yaml/badge.svg?branch=master)](https://github.com/cgiachalis/storr.tiledb/actions/workflows/R-CMD-check.yaml)
[![Last Commit](https://img.shields.io/github/last-commit/cgiachalis/storr.tiledb)](https://github.com/cgiachalis/storr.tiledb)
[![Documentation](https://img.shields.io/badge/docs-GitHub_Pages-blue)](https://cgiachalis.github.io/storr.tiledb/)
<!-- badges: end -->

Expand Down
5 changes: 5 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ reference:
- storr_fragments
- storr_consolidate
- storr_vacuum

- subtitle: Re-exported Functions
contents:
- reexports

- title: R6 Classes
desc: |
R6 classes that represent the storr interface and TileDB driver.
Expand Down
303 changes: 156 additions & 147 deletions man/CAS.Rd

Large diffs are not rendered by default.

218 changes: 113 additions & 105 deletions man/StorrFragments.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading