Description Usage Arguments Details References Examples
This function calculates the normalized motif correlation as a measure of motif frequency matrix similarity.
1 | motifSimilarity(m1, m2, trim = 0.4, self.sim = FALSE)
|
m1 |
matrix with four rows representing the frequency matrix of first motif |
m2 |
matrix with four rows representing the frequency matrix of second motif |
trim |
bases with information content smaller than this value will be trimmed off both motif ends |
self.sim |
if to calculate self similarity (i.e. without including offset=0 in alignment) |
This score is essentially a normalized version of the sum of column correlations as proposed by Pietrokovski (1996). The sum is normalized by the average motif length of m1 and m2, i.e. (ncol(m1)+ncol(m2))/2. Thus, for two idential motifs this score is going to be 1. For unrelated motifs the score is going to be typically around 0.
Motifs need to aligned for this score to be calculated. The current implementation tries all possible ungapped alignment with a minimal of two basepair matching, and the maximal score over all alignments is returned.
Motif 1 is aligned both to Motif 2 and its reverse complement. Thus, the motif similarities are the same if the reverse complement of any of the two motifs is given.
Pietrokovski S. Searching databases of conserved sequence regions by aligning protein multiple-alignments. Nucleic Acids Res 1996;24:3836-3845.
1 2 3 4 5 6 7 8 9 | if(requireNamespace("PWMEnrich.Dmelanogaster.background")){
data(MotifDb.Dmel.PFM, package = "PWMEnrich.Dmelanogaster.background")
# calculate the similarity of tin and vnd motifs (which are almost identical)
motifSimilarity(MotifDb.Dmel.PFM[["tin"]], MotifDb.Dmel.PFM[["vnd"]])
# similarity of two unrelated motifs
motifSimilarity(MotifDb.Dmel.PFM[["tin"]], MotifDb.Dmel.PFM[["ttk"]])
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.