| Results-methods {exomePeak2} | R Documentation |
Method Results
Report the (Differential) Modification Peaks/Sites and their associated LFC Statistics
Results(
sep,
cut_off_pvalue = NULL,
cut_off_padj = 0.05,
cut_off_log2FC = 0,
min_num_of_positive = 30,
expected_direction = c("both", "hyper", "hypo"),
inhibit_filter = FALSE,
table_style = c("bed", "granges")
)
## S4 method for signature 'SummarizedExomePeak'
Results(
sep,
cut_off_pvalue = NULL,
cut_off_padj = 0.1,
cut_off_log2FC = 0,
min_num_of_positive = 100,
expected_direction = c("both", "hyper", "hypo"),
inhibit_filter = FALSE,
table_style = c("bed", "granges")
)
sep |
a |
cut_off_pvalue |
a |
cut_off_padj |
a |
cut_off_log2FC |
a |
min_num_of_positive |
a |
expected_direction |
a
This argument is useful when the treated group involves the perturbation of a known writer or eraser protein; Default "both". |
inhibit_filter |
a |
table_style |
a
|
a data.frame containing the genomic locations of modification peaks/sites, gene ids, and their statistics.
### Load the example SummarizedExomPeak object
f1 = system.file("extdata", "sep_ex_mod.rds", package="exomePeak2")
sep <- readRDS(f1)
### Check the modification peaks/sites statistics.
head(Results(sep))