#' @title Load_example
#' @description
#' @param symbol
#' @return NULL
#' @examples
#' @export
#'
Load_example <-function(){
data("gene_groups")
data("tpm_ribo")
data("ribo_lfc")
data("RBP_ENCODE")
data("RBP_POSTAR")
L=list(gene_groups=gene_groups,
tpm_ribo=tpm_ribo,
ribo_lfc=ribo_lfc,
RBP_ENCODE=RBP_ENCODE,
RBP_POSTAR=RBP_POSTAR)
return(L)
}
#' @title Load_input_files
#' @description
#' @param symbol
#' @return NULL
#' @examples
#' @export
#'
Load_input_files <-function(folder="Path/to/folder"){
gene_groups=fread(paste0(folder,"/gene_groups.txt"))
tpm_ribo=fread(paste0(folder,"/tpm_ribo.txt"))
ribo_lfc=fread(paste0(folder,"/ribo_lfc.txt"))
data("RBP_ENCODE")
data("RBP_POSTAR")
L=list(gene_groups=gene_groups,
tpm_ribo=tpm_ribo,
ribo_lfc=ribo_lfc,
RBP_ENCODE=RBP_ENCODE,
RBP_POSTAR=RBP_POSTAR)
return(L)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.