count.everted.reads(bed.frame = NULL, bed.file = NULL,
bam.files, index.files = bam.files,
min.mapq = 20, include.chr = FALSE)data.frame containing the definition of the
regions.
The first three columns must be chromosome, start, end.character file name. Target BED file with the
definition of the regions. This file will only be used if no bed.frame
argument is provided. No headers are assumed so remove them if they
exist. Either a bed.file or a bed.frame must character, list of BAM files to extract read count data from.character argument with the list of indexes for the BAM files, without the
'.bai' suffix. If the indexes are simply obtained by adding .bai to
the BAM files, this argument does not need to be specified.numeric, minimum mapping quality to include a read.logical, if set to TRUE, this function will remove the string 'chr' from the
chromosome names of the target BED file.test <- count.everted.reads (bed.frame = genes.hg19,
bed.file = NULL,
bam.files = bam.files,
min.mapq = 20,
include.chr = FALSE)Run the code above in your browser using DataLab