#' getSNPDensityTrack
#'
#' Generate the SNP density DataTrack (from `Gviz`) for selected chromosome
#' @inheritParams getCellAFTrack
#' @param log, whether the histogram of SNP density should be plotted on log
#' scale (log10)
#' @param plot_type, the DataTrack plot type, default to be `hist`
#'
#' @author Ruqian Lyu
#' @export
#' @return DataTrack object plotting the SNP density histogram
#'
#' @examples
#' demo_path <- system.file("extdata",package = "comapr")
#' snp_track <- getSNPDensityTrack(chrom ="chr1",
#' path_loc = demo_path,
#' sampleName = "s1")
getSNPDensityTrack <- function(chrom = "chr1",
sampleName = "s1",
path_loc = ".",
nwindow = 80,
plot_type = "hist",
log = TRUE){
snp_anno <- read.table(file=file.path(path_loc, paste0(sampleName,"_",chrom,
"_snpAnnot.txt")),
header=TRUE)
snp_track <- DataTrack( GRanges(seqnames = chrom,
IRanges(start=snp_anno$POS,
width = 1,
genome = "mm10")),
name = "SNPs denstiy",
data = rep(1,nrow(snp_anno)),
window = nwindow,
aggregation = .aggregation_fun_log(log,"sum"),
type=plot_type)
snp_track
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.