Description Usage Arguments Details Value Author(s) See Also Examples
This function is a common interface to quality assessment functions
available in ShortRead
. Results from this function may be
displayed in brief, or integrated into reports using, e.g.,
report
.
1 2 3 4 5 6 7 8 |
dirPath |
A character vector or other object (e.g.,
|
pattern |
A character vector limiting the files in |
type |
The type of file being parsed; must be a character vector of length 1, selected from one of the types enumerated in the parameter. |
... |
Additional arguments used by methods.
|
The most common use of this function provides a directory path and pattern identifying FASTQ files for quality assessment. The default is then to create a quality assessment report based on a random sample of n=1000000 reads from each file.
The following methods are defined, in addition to those on S4 formal classes documented elsewhere:
qa,character-method
Quality assessment is performed on all files in directory
dirPath
whose file name matches pattern
. The type of
analysis performed is based on the type
argument. Use
SolexaExport
when all files matching pattern
are
Solexa _export.txt
files. Use SolexaRealign
for
Solexa _realign.txt
files. Use Bowtie
for Bowtie
files. Use MAQMapShort
for MAQ map
files produced by
MAQ versions below 0.70 and MAQMap
for more recent output.
Use fastq
for collections of fastq-format files. Quality
assessment details vary depending on data source.
qa,list-method
dirPath
is a list of objects, all of the same class and
typically derived from ShortReadQ
, on which quality
assessment is performed. All elements of the list must have names,
and these should be unique.
An object derived from class .QA
. Values
contained in this object are meant for use by report
Martin Morgan <mtmorgan@fhcrc.org>
.QA
,
SolexaExportQA
MAQMapQA
FastqQA
1 2 3 4 5 6 7 | dirPath <- system.file(package="ShortRead", "extdata", "E-MTAB-1147")
## sample 1M reads / file
qa <- qa(dirPath, "fastq.gz", BPPARAM=SerialParam())
if (interactive())
browseURL(report(qa))
showMethods("qa", where=getNamespace("ShortRead"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.