Description Usage Arguments Value Slots
The SequenceData
class is implemented to contain data on each position
along transcripts and holds the corresponding annotation data and
nucleotide sequence of these transcripts. To access this data several
functions
are available. The
SequenceData
class is a virtual class, from which specific classes can
be extended. Currently the following classes are implemented:
CoverageSequenceData
End5SequenceData
,
End3SequenceData
,
EndSequenceData
NormEnd5SequenceData
,
NormEnd5SequenceData
PileupSequenceData
ProtectedEndSequenceData
The annotation and sequence data can be accessed through the functions
ranges
and sequences
, respectively. Beaware, that the data is
always provided according to genomic positions with increasing
rownames
, but the sequence is given as the actual sequence of the
transcript. Therefore, it is necessary to treat the minus strand accordingly.
The SequenceData
class is derived from the
CompressedSplitDataFrameList
class
with additional slots for annotation and sequence data. Some functionality is
not inherited and might not available to full extend, e.g.relist
.
SequenceDataFrame
The SequenceDataFrame
class is a virtual class and contains data for
positions along a single transcript. In addition to being used for returning
elements from a SequenceData
object, the SequenceDataFrame class is
used to store the unlisted data within a
SequenceData
object. Therefore, a matching
SequenceData
and SequenceDataFrame
class must be implemented.
The SequenceDataFrame
class is derived from the
DataFrame
class.
Subsetting of a SequenceDataFrame
returns a SequenceDataFrame
or
DataFrame
, if it is subset by a column or row, respectively. The
drop
argument is ignored for column subsetting.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | ## S4 method for signature 'SequenceData'
cbind(..., deparse.level = 1)
## S4 method for signature 'SequenceData'
rbind(..., deparse.level = 1)
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'character,character'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'character,BSgenome'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'TxDb,character'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'TxDb,BSgenome'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'GRangesList,character'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'GRangesList,BSgenome'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'GFF3File,BSgenome'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'GFF3File,character'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'character,FaFile'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'GFF3File,FaFile'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'TxDb,FaFile'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
## S4 method for signature 'GRangesList,FaFile'
SequenceData(dataType, bamfiles, annotation, sequences, seqinfo, ...)
|
... |
Optional arguments overwriting default values. Not all
|
deparse.level |
See |
dataType |
The prefix for construction the class name of the
|
bamfiles |
the input which can be of the following types
|
annotation |
annotation data, which must match the information contained in the BAM files. |
sequences |
sequences matching the target sequences the reads were mapped onto. This must match the information contained in the BAM files. |
seqinfo |
optional |
A SequenceData object
sequencesType
a character
value for the class name of
sequences
. Either RNAStringSet
, ModRNAStringSet
,
DNAStringSet
or ModDNAStringSet
.
minQuality
a integer
value describing a threshold of the minimum
quality of reads to be used.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.