R/mutation_none.R

Defines functions mutation_none

Documented in mutation_none

#' NULL mutation for DE
#' 
#' Implements the "/none" mutation (i.e., no mutation performed) for the 
#' ExpDE framework
#' 
#' @section Mutation Parameters:
#' The \code{mutpars} parameter contains all parameters required to define the 
#' mutation. \code{mutation_none()} requires no fields in this parameter.
#' 
#' @param X population matrix
#' @param mutpars mutation parameters (see \code{Mutation parameters} for details)
#' 
#' @return @return The same matrix \code{X} used as an input.
#' 
#' @export

mutation_none <- function(X, mutpars){
  return(X)
}

Try the ExpDE package in your browser

Any scripts or data that you put into this service are public.

ExpDE documentation built on May 2, 2019, 9:11 a.m.