From 90f9a9ed7dd2a41fb2e58195aefecee9f41cba65 Mon Sep 17 00:00:00 2001 From: Dillon Hammill Date: Tue, 5 Nov 2024 15:07:35 +1100 Subject: [PATCH] ODC-181 add .preprocess_row() to CytoExploreR exports. --- NAMESPACE | 1 + R/CytoExploreR_wrappers.R | 8 ++++++++ man/CytoExploreR_exports.Rd | 3 +++ 3 files changed, 12 insertions(+) diff --git a/NAMESPACE b/NAMESPACE index bf4bfa2a..4442698d 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -5,6 +5,7 @@ S3method(gt_gating,gatingTemplate) S3method(pop_add,ocRectRefGate) export(CytoExploreR_.argDeparser) export(CytoExploreR_.preprocess_csv) +export(CytoExploreR_.preprocess_row) export(add_pop) export(add_pop_init) export(delete.helperGates) diff --git a/R/CytoExploreR_wrappers.R b/R/CytoExploreR_wrappers.R index ddc711a2..5e810c62 100644 --- a/R/CytoExploreR_wrappers.R +++ b/R/CytoExploreR_wrappers.R @@ -19,4 +19,12 @@ CytoExploreR_.argDeparser <- function(args, split = TRUE){ #' @export CytoExploreR_.preprocess_csv <- function(dt, strict = TRUE){ .preprocess_csv(dt, strict = strict) +} + +#' @name CytoExploreR_.preprocess_row +#' @keywords internal +#' @rdname CytoExploreR_exports +#' @export +CytoExploreR_.preprocess_row <- function(this_row, strict = TRUE){ + .preprocess_row(this_row, strict = strict) } \ No newline at end of file diff --git a/man/CytoExploreR_exports.Rd b/man/CytoExploreR_exports.Rd index d0160c47..1844e9a8 100644 --- a/man/CytoExploreR_exports.Rd +++ b/man/CytoExploreR_exports.Rd @@ -4,11 +4,14 @@ \alias{CytoExploreR_exports} \alias{CytoExploreR_.argDeparser} \alias{CytoExploreR_.preprocess_csv} +\alias{CytoExploreR_.preprocess_row} \title{CytoExploreR exports} \usage{ CytoExploreR_.argDeparser(args, split = TRUE) CytoExploreR_.preprocess_csv(dt, strict = TRUE) + +CytoExploreR_.preprocess_row(this_row, strict = TRUE) } \description{ Exported wrappers of internal functions for use by CytoExploreR