Description Usage Arguments Value Examples
Integrate multiple proActiv runs
1 | integrateProactiv(res1, res2, ..., promoterAnnotation, renormalize = TRUE)
|
res1 |
A summarizedExperiment object returned by proActiv |
res2 |
A summarizedExperiment object returned by proActiv |
... |
Additional summarizedExperiment objects returned by proActiv |
promoterAnnotation |
Promoter annotation object used to create proActiv runs |
renormalize |
Whether to renormalize counts after merging. Defaults to TRUE |
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 11 12 | f1 <- list.files(system.file('extdata/vignette/junctions',
package = 'proActiv'),
full.names = TRUE, pattern = 'A549')
f2 <- list.files(system.file('extdata/vignette/junctions',
package = 'proActiv'),
full.names = TRUE, pattern = 'HepG2')
promoterAnnotation <- promoterAnnotation.gencode.v34.subset
res1 <- proActiv(files = f1, promoterAnnotation = promoterAnnotation,
condition = rep('A549',3))
res2 <- proActiv(files = f2, promoterAnnotation = promoterAnnotation,
condition = rep('HepG2',3))
res <- integrateProactiv(res1, res2, promoterAnnotation = promoterAnnotation)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.