You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, we are using this as a kludge to export all of the functions that don't start with a dot and it's not a good practice because it makes it difficult to know what functions are for user use and what are for internal use.
Unfortunately, simply removing this breaks a lot of things as the S4 methods suddenly disappear. This is exacerbated by the fact that this package has a hybrid documentation pattern between Rd and roxygen2, which means that we have to find the source of each function and either add and #' export to it or ... something.
The text was updated successfully, but these errors were encountered:
At the moment, we are using this as a kludge to export all of the functions that don't start with a dot and it's not a good practice because it makes it difficult to know what functions are for user use and what are for internal use.
Unfortunately, simply removing this breaks a lot of things as the S4 methods suddenly disappear. This is exacerbated by the fact that this package has a hybrid documentation pattern between Rd and roxygen2, which means that we have to find the source of each function and either add and
#' export
to it or ... something.The text was updated successfully, but these errors were encountered: