Description Usage Arguments Methods Author(s) See Also Examples
seqlenPlot
plots a histogram of sequence lengths.
1 | seqlenPlot(x)
|
x |
an S4 object that inherits from |
signature(x = "FASTQSummary")
seqlenPlot
will plot a histogram of a single object that
inherits from SequenceSummary
.
signature(x = "list")
seqlenPlot
will plot a histogram for each of the
SequenceSummary
items in the list and display them in a
series of panels.
Vince Buffalo <vsbuffalo@ucdavis.edu>
1 2 3 4 5 6 7 8 9 10 | ## Load a FASTQ file
s.fastq <- readSeqFile(system.file('extdata', 'test.fastq', package='qrqc'))
## Plot sequence lengths
seqlenPlot(s.fastq)
## Plot sequence legnths before and after trimming
s.trimmed.fastq <- readSeqFile(system.file('extdata',
'test-trimmed.fastq', package='qrqc'))
seqlenPlot(list("not trimmed"=s.fastq, "trimmed"=s.trimmed.fastq))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.