Description Usage Arguments Value Author(s) References Examples
View source: R/Modifier-AlkAnilineSeq-class.R
7-methyl guanosine (m7G), 3-methyl cytidine (m3C) and Dihydrouridine (D) are commonly found in rRNA and tRNA and can be detected classically by primer extension analysis. However, since the modifications do not interfere with Watson-Crick base pairing, a specific chemical treatment is employed to cause strand breaks specifically at the modified positions.
This classical protocol was converted to a high throughput sequencing method call AlkAnilineSeq and allows modified position be detected by an accumulation of 5'-ends at the N+1 position. Since the identify of the unmodified nucleotide is different for the three modified nucleotides, they modification can be detected at the same time from the same samples.
dataType
is c("NormEnd3SequenceData","PileupSequenceData")
:
The ModAlkAnilineSeq
class uses the
NormEnd5SequenceData
class to store and aggregate data along the transcripts. This includes
normalized values against the whole transcript (normalzed cleavage) and
normalized values against the overlapping reads (stop ratio), which are used
to score for modified positions.
In addition the
PileupSequenceData
class is
used as well, to check, whether the base is can be called according to the
expected sequence identity.
Only samples named treated
are used for this analysis. Normalization
to untreated samples is currently not used.
1 2 3 | ModAlkAnilineSeq(x, annotation = NA, sequences = NA, seqinfo = NA, ...)
ModSetAlkAnilineSeq(x, annotation = NA, sequences = NA, seqinfo = NA, ...)
|
x |
the input which can be of the different types depending on whether
a |
annotation |
annotation data, which must match the information contained
in the BAM files. This is parameter is only required if |
sequences |
sequences matching the target sequences the reads were
mapped onto. This must match the information contained in the BAM files. This
is parameter is only required if |
seqinfo |
An optional |
... |
Optional arguments overwriting default values, which are
|
a ModAlkAnilineSeq
or ModSetAlkAnilineSeq
object
Felix G.M. Ernst [aut]
- Marchand V, Ayadi L, __Ernst FGM__, Hertler J, Bourguignon-Igel V, Galvanin A, Kotter A, Helm M, __Lafontaine DLJ__, Motorin Y (2018): "AlkAniline-Seq: Profiling of m7 G and m3 C RNA Modifications at Single Nucleotide Resolution." Angewandte Chemie (International ed. in English) 57 (51), P. 16785<e2><80><93>16790. DOI: 10.1002/anie.201810946.
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(RNAmodR.Data)
library(rtracklayer)
annotation <- GFF3File(RNAmodR.Data.example.AAS.gff3())
sequences <- RNAmodR.Data.example.AAS.fasta()
files <- list("wt" = c(treated = RNAmodR.Data.example.wt.1()),
"Bud23del" = c(treated = RNAmodR.Data.example.bud23.1()),
"Trm8del" = c(treated = RNAmodR.Data.example.trm8.1()))
# Creating a Modifier object of type ModRiboMethSeq
maas <- ModAlkAnilineSeq(files[[1]], annotation = annotation,
sequences = sequences)
# Creating a ModifierSet object of type ModSetRiboMethSeq
msaas <- ModSetAlkAnilineSeq(files, annotation = annotation,
sequences = sequences)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.