get_bam_bed | R Documentation |
Get bam file directories, sample names, and whole genomic bins from .bed file
get_bam_bed(bamdir, sampname, hgref = "hg19", resolution = 500, sex = FALSE)
bamdir |
vector of the directory of a bam file. Should be in the same
order as sample names in |
sampname |
vector of sample names. Should be in the same order as bam
directories in |
hgref |
reference genome. This should be 'hg19', 'hg38' or 'mm10'.
Default is human genome |
resolution |
numeric value of fixed bin-length. Default is |
sex |
logical, whether to include sex chromosomes.
Default is |
A list with components
bamdir |
A vector of bam directories |
sampname |
A vector of sample names |
ref |
A GRanges object specifying whole genomic bin positions |
Rujin Wang rujin@email.unc.edu
library(WGSmapp) library(BSgenome.Hsapiens.UCSC.hg38) bamfolder <- system.file('extdata', package = 'WGSmapp') bamFile <- list.files(bamfolder, pattern = '*.dedup.bam$') bamdir <- file.path(bamfolder, bamFile) sampname_raw <- sapply(strsplit(bamFile, '.', fixed = TRUE), '[', 1) bambedObj <- get_bam_bed(bamdir = bamdir, sampname = sampname_raw, hgref = "hg38") bamdir <- bambedObj$bamdir sampname_raw <- bambedObj$sampname ref_raw <- bambedObj$ref
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.