Description Usage Arguments Details Methods Author(s) References See Also Examples
The SiteSet object is a container for storing a set of putative transcription factor binding sites on a nucleotide sequence (start, end, strand, score, pattern as a PWMatrix, etc.)
1 2 3 |
views |
Object of class |
score |
Object of class |
strand |
Object of class |
seqname |
Object of class |
sitesource |
Object of class |
primary |
Object of class |
pattern |
Object of class |
The score retuned in SiteSet is the absolute score of each putative TFBS scanned by the corresponding PWM. The way of calculating the score is shown on the refernce, Page 281.
signature(x = "SiteSet")
: Getter function.
signature(x = "SiteSet")
:
The number of binding sites in this SiteSet.
signature(x = "SiteSet")
: Returns the PWMatrix used.
signature(x = "SiteSet")
:
Gets relative score (between 0.0 to 1.0) with respect of the score
range of the associated pattern (PWMatrix).
signature(x = "SiteSet")
:
Returns the score of each site.
signature(x = "SiteSet")
:
Returns the sequence name of the sequence which contains these sites.
signature(x = "SiteSet")
:
Returns the strand information.
signature(x = "SiteSet")
: Returns the views object.
signature(x = "SiteSet")
:
Returns the start coordinates.
signature(x = "SiteSet")
: Returns the end coordinates.
signature(x = "SiteSet")
(x, type=c("TFMPvalue", "sampling")):
Calculates the empirical p-values for the scores with two methods:
the exact method from TFMPaluve package or
implementation of sampling in this package.
The background probability for sampling is based on
the PWM matrix in the SiteSet
object.
Ge Tan
Wasserman, W. W., & Sandelin, A. (2004). Applied bioinformatics for the identification of regulatory elements. Nature Publishing Group, 5(4), 276-287. doi:10.1038/nrg1315
searchSeq
,
searchAln
,
PWMatrix
,
SiteSetList
,
SitePairSet
1 2 3 4 5 6 7 8 9 10 11 12 | data(MA0003.2)
pwm <- toPWM(MA0003.2)
siteset <- searchSeq(pwm, "GAATTCTCTCTTGTTGTAGTCTCTTGACAAAATG",
min.score="60%")
writeGFF3(siteset, scoreType="absolute")
as(siteset, "data.frame")
as(siteset, "DataFrame")
as(siteset, "GRanges")
relScore(siteset)
pvalues(siteset, type="TFMPvalue")
pvalues(siteset, type="sampling")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.