Description Usage Arguments Value Examples
Return the Underlying Fastq File Names from FastqcData* Objects
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | fqName(object)
## S4 method for signature 'ANY'
fqName(object)
## S4 method for signature 'FastqcData'
fqName(object)
## S4 method for signature 'FastqcDataList'
fqName(object)
fqName(object) <- value
## S4 replacement method for signature 'FastqcData'
fqName(object) <- value
## S4 replacement method for signature 'FastqcDataList'
fqName(object) <- value
|
object |
An object of class FastqcData or FastqcDataList |
value |
Replacement value for fqName |
Returns the names of the Fastq files the FastQC report was generated from, without any preceding directories.
1 2 3 4 5 6 7 | # Get the files included with the package
packageDir <- system.file("extdata", package = "ngsReports")
fl <- list.files(packageDir, pattern = "fastqc.zip", full.names = TRUE)
# Load the FASTQC data as a FastqcDataList object
fdl <- FastqcDataList(fl)
fqName(fdl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.