Skip to content

Commit

Permalink
Fix bug with misspelling updated_prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
d2gex committed Apr 5, 2024
1 parent a73b9fc commit fc1d082
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions R/updated_lht_picker.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
UpdatedLHTPicker <- R6::R6Class("UpdatedLHTPicker", public = list(
master_db = NULL,
predicting_lht_df = NULL,
update_prefix = NULL,
updated_prefix = NULL,
transform_function_list = NULL,
backtransform_function_list = NULL,
func_domains = NULL,
lht_names = NULL,
# // @formatter:off
#' @description
Expand All @@ -23,13 +23,13 @@ UpdatedLHTPicker <- R6::R6Class("UpdatedLHTPicker", public = list(
# // @formatter:off
initialize = function(master_db,
predicting_lht_df,
update_prefix,
updated_prefix,
transform_function_list,
backtransform_function_list,
lht_names = NULL) {
self$master_db <- master_db
self$predicting_lht_df <- predicting_lht_df
self$update_prefix <- update_prefix
self$updated_prefix <- updated_prefix
self$transform_function_list <- transform_function_list
self$backtransform_function_list <- backtransform_function_list
self$lht_names <- lht_names
Expand All @@ -49,8 +49,8 @@ UpdatedLHTPicker <- R6::R6Class("UpdatedLHTPicker", public = list(
self$lht_names
)
updated_lhts <- u_lht_gen$update()
t_update_extractor <- LHTpicker::TaxaUpdateExtractor$new(
self$update_prefix,
t_update_extractor <- TaxaUpdateExtractor$new(
self$updated_prefix,
self$lht_names,
self$backtransform_function_list,
self$predicting_lht_df,
Expand Down

0 comments on commit fc1d082

Please sign in to comment.