Description Usage Arguments Value Examples
Creates a table to compare two methods of identifying altered regulatory regions, one based on peak intensity, the other on peak presence as determined by hotspot calling algorithms.
1 2 | comparePeaksAltre(analysisresults, lfctypespecific = 1.5, lfcshared = 1.2,
pvaltypespecific = 0.01, pvalshared = 0.05)
|
analysisresults |
analysisresults of countanalysis. |
lfctypespecific |
log2fold change for type specific TSS-dists/TSS-proxs |
lfcshared |
log2fold chance for shared TSS-dists/TSS-proxs |
pvaltypespecific |
p-value for type specific TSS-dists/TSS-proxs |
pvalshared |
p-value for shared TSS-dists/TSS-proxs |
matrix comparing the two methods of identifying altered regulatory regions, one based on peak intensity, the other on peak presence as determined by hotspot calling algorithms.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ## Not run:
csvfile <- loadCSVFile("DNaseEncodeExample.csv")
samplePeaks <- loadBedFiles(csvfile)
consensusPeaks <- getConsensusPeaks(samplepeaks = samplePeaks, minreps = 2)
TSSannot <- getTSS()
consensusPeaksAnnotated <- combineAnnotatePeaks(conspeaks = consensusPeaks,
TSS = TSSannot,
merge = TRUE,
regionspecific = TRUE,
distancefromTSSdist = 1500,
distancefromTSSprox = 1000)
consensusPeaksCounts <- getCounts(annotpeaks = consensusPeaksAnnotated,
sampleinfo = csvfile,
reference = 'SAEC',
chrom = 'chr21')
alteredPeaks <- countanalysis(counts = consensusPeaksCounts,
pval = 0.01,
lfcvalue = 1)
alteredPeaksCategorized <- categAltrePeaks(alteredPeaks,
lfctypespecific = 1.5,
lfcshared = 1.2,
pvaltypespecific = 0.01,
pvalshared = 0.05)
comparePeaksAnalysisResults <- comparePeaksAltre(alteredPeaksCategorized)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.