fqName | R Documentation |
Return the Underlying Fastq File Names from Fastqc/Fastp Objects
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
## S4 method for signature 'FastpData'
fqName(object)
## S4 method for signature 'FastpDataList'
fqName(object)
object |
An object able to extract an Fastq name from |
value |
Replacement value for fqName |
Returns the names of the Fastq files the FastQC report was generated from, without any preceding directories.
# 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)
nm <- paste0(letters[seq_along(fdl)], ".fq")
fqName(fdl) <- nm
fqName(fdl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.