Description Usage Arguments Value Examples
Estimates promoter counts and activity in a single command
1 2 3 4 5 6 7 8 |
files |
A character vector. The list of input files for which the junction read counts will be calculated |
promoterAnnotation |
A PromoterAnnotation object containing the intron ranges, promoter coordinates and the promoter id mapping |
fileLabels |
A character vector. The labels of input files for which the junction read counts will be calculated. These labels will be used as column names for each output data.frame object. If not provided, filenames will be used as labels. Defaults to NULL |
condition |
A character vector. The condition to which each sample belong to. Must correspond to the order of the files. If supplied, results are summarized by condition. Defaults to NULL |
genome |
A character. Genome version. Must be specified if input file type is a BAM file. Defaults to NULL |
ncores |
A numeric value. The number of cores to be used for counting junction reads. Defaults to 1 (no parallelization). This parameter will be used as an argument to BiocParallel::bplapply |
A SummarizedExperiment object with assays giving promoter counts and activity with gene expression. rowData contains promoter metadata and absolute promoter activity summarized across conditions (if condition is provided)
1 2 3 4 5 6 7 8 9 10 | files <- list.files(system.file('extdata/vignette/junctions',
package = 'proActiv'),
full.names = TRUE, pattern = 'replicate5')
promoterAnnotation <- promoterAnnotation.gencode.v34.subset
result <- proActiv(files = files,
promoterAnnotation = promoterAnnotation,
condition = rep(c('A549', 'HepG2'), each=1),
fileLabels = NULL,
ncores = 1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.