| clear | R Documentation | 
Clear
clear(leading_edge, cutoff = 0.25, trim = FALSE)
| leading_edge | The output of running sear on an input list of mRNAs or miRNA symbols. | 
| cutoff | A numeric value between 0 and 1. The minimum value of the jaccard coefficient to show links between genesets. | 
| trim | A logical value. Whether to perform trimming of non-connected nodes. | 
library(dplyr)
data('collections')
input <- collections$members_mrna %>% unlist() %>% unique() %>% sample(100)
output <- sear(input, type = 'mrna', return_members = TRUE) %>%
  dplyr::arrange(fdr) %>%
  dplyr::slice(1:100)
clear(output, cutoff = 0.25, trim = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.