Nothing
#' COUNTING SEQUENCES
#'
#' @param input_data sample folder
counting_Reads <- function(input_data) {
theCount <-
ShortRead::countFastq(
dirPath = file.path(input_data),
pattern = ".fastq|.fastq.gz|.fq|.fq.gz")
files <- rownames(theCount)
theCount <- cbind(files,theCount)
theCount <- theCount[,-4]
return(theCount)
}
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.