View source: R/merge_similar.R
merge_similar | R Documentation |
Given a list of motifs, merge_similar()
will identify similar motifs with
compare_motifs()
, and merge similar ones with merge_motifs()
.
merge_similar(motifs, threshold = 0.95, threshold.type = "score.abs",
method = "PCC", use.type = "PPM", min.overlap = 6, min.mean.ic = 0,
tryRC = TRUE, relative_entropy = FALSE, normalise.scores = FALSE,
min.position.ic = 0, score.strat.compare = "a.mean",
score.strat.merge = "sum", nthreads = 1, return.clusters = FALSE)
motifs |
See |
threshold |
|
threshold.type |
|
method |
|
use.type |
|
min.overlap |
|
min.mean.ic |
|
tryRC |
|
relative_entropy |
|
normalise.scores |
|
min.position.ic |
|
score.strat.compare |
|
score.strat.merge |
|
nthreads |
|
return.clusters |
|
See compare_motifs()
for more info on comparison parameters, and
merge_motifs()
for more info on motif merging.
See convert_motifs()
for available output formats.
Benjamin Jean-Marie Tremblay, benjamin.tremblay@uwaterloo.ca
compare_motifs()
, merge_motifs()
## Not run:
library(MotifDb)
motifs <- filter_motifs(MotifDb, family = "bHLH")[1:50]
length(motifs)
motifs <- merge_similar(motifs)
length(motifs)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.