R/printMethods.R

Defines functions print.aneuBiHMM print.aneuHMM

Documented in print.aneuBiHMM print.aneuHMM

#' Print aneuHMM object
#' 
#' @param x An \code{\link{aneuHMM}} object.
#' @param ... Ignored.
#' @return An invisible \code{NULL}.
#' @export
print.aneuHMM <- function(x, ...) {
    
    message("$ID")
    print(x$ID)
    message("\n$segments")
    print(x$segments)
    message("\nUse the list operator $ to access all elements of this object.")
  
}


#' Print aneuBiHMM object
#' 
#' @param x An \code{\link{aneuBiHMM}} object.
#' @param ... Ignored.
#' @return An invisible \code{NULL}.
#' @export
print.aneuBiHMM <- function(x, ...) {
    
    message("$ID")
    print(x$ID)
    message("\n$segments")
    print(x$segments)
    message("\nUse the list operator $ to access all elements of this object.")
  
}

Try the AneuFinder package in your browser

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

AneuFinder documentation built on Nov. 8, 2020, 7:44 p.m.