CalculScores: Calcul Score of a Sequence, using a loggods matrix

Description Usage Arguments Value Author(s) References See Also Examples

Description

Giving a logodds matrix, the Score of a sequence is calculated as the sum of the logodds of each nucleotide at each position of the sequence (equivalent to calculating the probability of each nucleotide at each position)

Usage

1
CalculScores(sequencia, logodds)

Arguments

sequencia

Sequence to analyze

logodds

logodds matrix for a given motif.

Value

score: score of the studied sequence

Author(s)

Erola Pairo <epeiroatibec.pcb.ub.es>

References

Gary D. Stormo. DNA binding sites: representation and discovery. Bioinformatics (2000) 16(1): 16-23 doi:10.1093/bioinformatics/16.1.16

See Also

CalculPSSM, CalculInformation

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
require("MEET")
#First example, calculating logodds of a Sequence 
data(TFlogodds)
data(Sequence)
CalculScores(sequencia=Sequence, logodds=TFlogodds)
#given a Transfac matrix, calculate first loggods and then scores
data(TranscriptionFactor)
data(BackgroundOrganism)
data(Sequence)
Factortrans<-TranscriptionFactor
suma<-apply(Factortrans,2,function(y){sum(y=="-")})
Factortrans<-Factortrans[, suma==0]
logodds<-CalculInformation(matriu=Factortrans, Prob=Prob)
logodds <- logodds[,2:dim(logodds)[2]]
CalculScores(sequencia=Sequence,logodds=logodds)
  

MEET documentation built on May 2, 2019, 1:45 p.m.

Related to CalculScores in MEET...