BamBigwig_to_chipProfile | R Documentation |
Generate a soGGi ChIPprofile object with multiple BAM/bigWig files or multiple BED files as the input
BamBigwig_to_chipProfile( signalFiles, testRanges, format, style = "percentOfRegion", nOfWindows = 100, bin_size = 20, distanceAround = NULL, distanceUp = 1000, distanceDown = 1000, ..., quant_params = NULL )
signalFiles |
paths to either BAM files or bigwig files. More than one path can be in this character vector, but all paths in one function call must point to be either all BAM files or all bigWig files, not a combination of the two. |
testRanges |
A character vector with paths to BED files. |
format |
character string of "bam", "bigwig", "RleList" or "PWM" |
style |
a character string, "percentOfRegion" (default) for normalized length divided into bins set by the 'nOfWindows' argument, "point" for per base pair plot where the number of base pairs per bin is set by the 'bin_size' argument, and "region" for combined plot |
nOfWindows |
The number of windows/bins the normalised ranges will be divided into if 'style' is set to 'percentOfRegion'. Default is 100. |
bin_size |
If 'style' is set to 'point' then this will determine the size of each bin over which signal is quantified. The default is 20 base pairs. |
distanceAround |
This controls the distance around the region that is included. If 'style' is 'percentOfRegion', then the default is 100, meaning that a distance equal to 100 percent of that particular region on either side of the region will be included in the heatmap. If 'style' is 'point',then this is the number of basepairs from the center of each range, in either direction, that the heatmap will show. If style is 'point' and 'distanceAround' is NULL, then distanceUp and distanceDown will be used. |
distanceUp |
If 'style' is set to 'point' then this will determine the distance (in base pairs) upstream from the center of each peak signal will be quantified. If the 'distanceAround' argument is set (i.e. not NULL), that will be used for the quantification range and 'distanceUp will be ignored. |
distanceDown |
If 'style' is set to 'point' then this will determine the distance (in base pairs) downstream from the center of each peak signal will be quantified. If the 'distanceAround' argument is set (i.e. not NULL), that will be used for the quantification range and 'distanceDown' will be ignored. |
... |
pass to regionPlot() within the soGGi package |
quant_params |
An optional |
A profileplyr object
signalFiles <- c(system.file("extdata", "Sorted_Hindbrain_day_12_1_filtered.bam", package = "profileplyr")) require(Rsamtools) for (i in seq_along(signalFiles)){ indexBam(signalFiles[i]) } testRanges <- system.file("extdata", "newranges_small.bed", package = "profileplyr") BamBigwig_to_chipProfile(signalFiles, testRanges, format = "bam", paired=FALSE, style="percentOfRegion", )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.