omes | R Documentation |
Calculates the difference between the observed and expected occurrences of each possible pair of amino acids (x, y) at positions i and j of the alignment
omes(align, gap_ratio = 0.2)
align |
An object of class 'align' created by the |
gap_ratio |
Numeric value between 0 and 1 indicating the maximal gap ratio at a given position in the MSA for this position to be taken into account. Default is 0.2, positions with more than 20 percent of gaps will not be taken into account in the analysis. When gap_ratio is 1 or close to 1, only positions with at least 1 aa are taken into account (positions with only gaps are excluded). |
The OMES score at position [i,j] has been computed with the following formula :
{OMES(i,j)} = \frac{1}{N(i,j)} \sum_{x,y}^{ }(N_{x,y}^{obs}(i,j)-N_{x,y}^{ex}(i,j))^2
with : N_{x,y}^{ex}(i,j) = p_{x}(i)p_{y}(j)N
where :
N_{x,y}^{obs}(i,j)
is number of times that each (x,y) pair is observed at positions i and j
N_{x,y}^{ex}(i,j)
is number of times that each (x,y) pair would be expected, based on the frequency of residues x and y at positions i and j
N(i,j)
is the number of sequences in the alignment with non-gapped residues at positions i and j
p_{x}(i)
is the frequency of amino acid x at position i
p_{y}(j)
is the frequency of amino acid y at position j
A list of two elements which are numerical matrices containing the OMES scores and Z-scores for each pair of elements.
Jean-Miche BECU, Madeline DENIAUD, and Marie CHABBERT
Fodor AA and Aldrich RW. Influence of conservation on calculations of amino acid covariance in multiple sequence alignments. Proteins. 2004;56(2):211-21.
#Importing MSA file
msf <- system.file("msa/toy_align.msf", package = "Bios2cor")
align <- import.msf(msf)
#Creating correlation object with OMES method for positions with gap ratio < 0.2 (Default)
omes <- omes(align, gap_ratio = 0.2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.