Nothing
#' Filter CDS by size
#' @description Filter CDS by CDS size.
#' @param CDS Output of preparedCDS
#' @param sizeCutoff numeric(1). Cutoff size for CDS.
#' If the size of CDS is less than the cutoff, it will be filtered out.
#' @return A GRanges object with filtered CDS.
#' @export
#' @import GenomicRanges
#' @importFrom methods as is
#' @examples
#' #library(GenomicFeatures)
#' library(BSgenome.Drerio.UCSC.danRer10)
#' #txdb <- makeTxDbFromGFF(system.file("extdata",
#' # "Danio_rerio.GRCz10.91.chr1.gtf.gz",
#' # package="ribosomeProfilingQC"),
#' # organism = "Danio rerio",
#' # chrominfo = seqinfo(Drerio)["chr1"],
#' # taxonomyId = 7955)
#' #CDS <- prepareCDS(txdb)
#' CDS <- readRDS(system.file("extdata", "CDS.rds",
#' package="ribosomeProfilingQC"))
#' filterCDS(CDS)
filterCDS <- function(CDS, sizeCutoff = 100L){
sizeCutoff <- sizeCutoff[1]
stopifnot(is.numeric(sizeCutoff))
stopifnot(is(CDS, "GRanges"))
if(length(CDS$internalPos)!=length(CDS) ||
length(CDS$isLastExonInCDS)!=length(CDS) ||
length(CDS$tx_name)!=length(CDS) ||
length(CDS$gene_id)!=length(CDS)){
stop("CDS must be output of prepareCDS")
}
keep <- unique(CDS[CDS$wid.cumsum>=sizeCutoff]$tx_name)
CDS[CDS$tx_name %in% keep]
}
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.