Description Details Creation of hbond objects Slots Methods Author(s) References Examples
Provides methods and data for calculation of HBond 5'splice-site scores. HBond scores provide a measure for the capability of a 5' splice-site to form H-bonds with the U1 snRNA. The function requires at least 3 exon nucleotides and 8 intron nucleotides. The hbond
function takes a vector DNA sequences and a vector of position (pos
) values. The position values represent the 1-based position of the last exon nucleotide. Therefore all position values must be >=3 and the sequence length must be >= pos+8.
The first two intron nucleotides must be 'GT' otherwise returned value is 0. All other sequence characters must be in "ATCG" (capitalization does not matter). When any other character (such as N) is found, the function also returns 0.
hbond
objectsObjects can be created by load.hbond()
.
ev
:Object of class "environment"
Contains external score data.
basedir
:Object of class "character"
Directory from which external data is restored.
signature(x = "hbond")
: Returns basedir value.
signature(x = "hbond",value="character")
: Sets basedir value.
signature(x = "hbond",seq="character",pos="integer")
: Calculates score5 value for seq at given position.
Wolfgang Kaisers
http://www.uni-duesseldorf.de/rna/html/hbond_score.php
1 2 3 | hb<-load.hbond()
seq<-c("CAGGTGAGTTC","ATGCTGGAGAA","AGGGTGCGGGC","AAGGTAACGTC","AAGGTGAGTTC")
hbond(hb,seq,3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.