Description Usage Arguments Details Value Examples
View source: R/FastqcShinyApp.R
Returns a shiny app interface to parse many fastQC objects using the package ngsReports
1 | fastqcShiny(fastqcInput = NULL)
|
fastqcInput |
can be a |
Currently some plots can
take a while to render if the
FastqcDataList
passed to
fastqcInput
has many elements
UI data for fastQC shiny.
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
Get the files included with the package ngsReports
packageDir <- system.file("extdata", package = "ngsReports")
fileList <- list.files(packageDir, pattern = "fastqc.zip", full.names = TRUE)
# Load the FASTQC data as a FastqcDataList object
fdl <- getFastqcData(fileList)
# Run the Shiny app
fastqcShiny(fdl)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.