###########################################################################/**
# @RdocClass FastQCDataFileSet
#
# @title "The FastQCDataFileSet class"
#
# \description{
# @classhierarchy
#
# An FastQCDataFileSet object represents a set of @see "FastQCDataFile":s.
# }
#
# @synopsis
#
# \arguments{
# \item{files}{A @list of @see "FastQCDataFile":s.}
# \item{...}{Arguments passed to @see "R.filesets::GenericDataFileSet".}
# }
#
# \section{Fields and Methods}{
# @allmethods "public"
# }
#
# @author "HB"
#*/###########################################################################
setConstructorS3("FastQCDataFileSet", function(files=NULL, ...) {
extend(GenericDataFileSet(files=files, ...), c("FastQCDataFileSet", uses("AromaSeqDataFileSet")))
})
setMethodS3("byPath", "FastQCDataFileSet", function(static, ..., recursive=TRUE, pattern="fastqc_data.txt$", verbose=FALSE) {
res <- NextMethod("byPath", recursive=recursive, pattern=pattern)
res
}, static=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.