From 7f32d07d25e06b3982765bb69b30b2409f340c74 Mon Sep 17 00:00:00 2001 From: alexanderbates Date: Tue, 6 Aug 2019 20:36:33 +0100 Subject: [PATCH] put prune_online mthods back --- R/interactive.R | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/R/interactive.R b/R/interactive.R index 648fa2a4..2b9d5857 100644 --- a/R/interactive.R +++ b/R/interactive.R @@ -21,7 +21,8 @@ #' @export #' @rdname prune_online prune_online <-function(x, ...) UseMethod("prune_online") - +#' @export +#' @rdname prune_online prune_online.neuron <- function(x, ...){ continue = "no" ids=integer() @@ -36,7 +37,8 @@ prune_online.neuron <- function(x, ...){ } neuron } - +#' @export +#' @rdname prune_online prune_online.neuronlist <- function(x, ...){ nlapply(x,prune_online.neuron) }