View source: R/higher_level_functions.R
junction_intersection | R Documentation |
This function operates similar to the junction_union()
function, i.e
it is cross compilation and merging of the same junction from multiple
compilations will be handled exactly the same way. But instead
of every junction which appears in at least one compilation, only
the junctions which appear in every compilation will be returned.
junction_intersection(...)
... |
One or more QueryBuilder objects |
A RangedSummarizedExperiment of junctions common across compilations
junction_union()
# Using query builder wrappers sb1 <- QueryBuilder(compilation = "gtex", regions = "chr1:1879786-1879786") sb1 <- set_coordinate_modifier(sb1, Coordinates$EndIsExactOrWithin) sb1 <- set_row_filters(sb1, strand == "-") sb2 <- QueryBuilder(compilation = "tcga", regions = "chr1:1879786-1879786") sb2 <- set_coordinate_modifier(sb2, Coordinates$EndIsExactOrWithin) sb2 <- set_row_filters(sb2, strand == "-") junction_intersection(sb1, sb2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.