Nothing
#' fix metadata for an MAlignmentsList or MVRangesList, if needed and possible.
#'
#' This function is punishingly simple -- it just calls validMetadata() and
#' assigns attr('fixedMeta') from the result. If no fixing is required, the
#' object's existing metadata is used. The object (with fixed metadata) is
#' then returned. If automatic fixes are impossible, a message is generated.
#'
#' @param x an MAlignmentsList or MVRangesList
#'
#' @return the object, with fixed metadata (if needed and possible)
#'
#' @examples
#' library(MTseekerData)
#' data(RONKSreads)
#' fixed <- fixMetadata(RONKSreads)
#'
#' @export
fixMetadata <- function(x) {
metadata(x) <- attr(validMetadata(x), "fixedMeta")
return(x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.