Skip to content

Commit

Permalink
add on the R side (WIP) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Oct 1, 2024
1 parent 31e06fc commit cae57ca
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apis/r/R/SOMADataFrame.R
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,15 @@ SOMADataFrame <- R6::R6Class(
add_cols <- setdiff(new_cols, old_cols)
common_cols <- intersect(old_cols, new_cols)

# To push down to C++:
#
# void SOMADataFrame::update_dataframe(
# std::string uri,
# std::shared_ptr<SOMAContext> ctx,
# std::vector<std::string> drop_attrs,
# std::map<std::string, std::string> add_attrs,
# std::map<std::string, std::pair<std::string, bool>> add_enmrs);

tiledb_create_options <- TileDBCreateOptions$new(self$platform_config)

# Check compatibility of new/old data types in common columns
Expand Down

0 comments on commit cae57ca

Please sign in to comment.