Description Usage Arguments Details Value Examples
topLoops
takes a loops object and performs basic filtering
for FDR
or PValue
1 2 3 4 5 6 7 8 9 10 |
dlo |
A loops object |
FDR |
Maximum threshold for False Discovery Rate; default = 1 |
PValue |
Maximum threshold for P-value; default = 1 |
This function returns a subsetted loops
object where all
loops meet the significance threshold specificed by the parameters
in the function call.
A loops object subsetted by specified parameters
1 2 3 4 5 6 | # Differential loop calling between naive and primed
rda<-paste(system.file('rda',package='diffloop'),'loops.small.rda',sep='/')
load(rda)
np <- loops.small[,1:4]
assoc_np <- quickAssoc(np)
top_np <- topLoops(assoc_np, FDR = 0.3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.