chipSeqWeightedSum | R Documentation |
This function is intended to calculate chip-seq binding score and associated probability for each gene. The input chip-seq list contains all peaks found in up/down stream within certain range whose weights contribute to final score is assigned based on the its distance to transcription start site.
chipSeqWeightedSum(ChipList,file=NULL,verbose=FALSE)
ChipList |
A matrix contains all peaks for each genes with each row represent one peak and the first column contains ref-seq ID, second column contain entrez ID, third column contains chromosome ID, fourth column contains distance from the center of the peak to transcription start site and the fifth column contains the peak's strength |
file |
File name and corresponding path to save output |
This function is intended to calculate chip-seq binding score and associated probability for each gene.
This function returns a matrix with first column contains the entrez ID, the second column contains the score and the third column contains the associated probability.
Zhen Hu
Publication forthcoming.
data(nMyc)
RefTable<-createRefGenome("mm8_refGene",genome.id = "mm8", tablename = "refGene")
ChipSeq<-annotateChipSeqPeaks(n.Myc,transcriptDB=RefTable,species="Mm",distanceRange=c(-1e+06,1e+06),file=NULL)
res<-chipSeqWeightedSum(ChipSeq,verbose=T)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.