View source: R/motif_identification.R
find_v | R Documentation |
Find V motifs
find_v(edgelist = NULL, paralogs = NULL, count_only = FALSE)
edgelist |
A 2-column data frame with regulators in column 1 and targets in column 2. |
paralogs |
A 2-column data frame with gene IDs for each paralog in the paralog pair. |
count_only |
Logical indicating whether the function should return only motif counts as a numeric scalar. If FALSE, it will return a character vector of motifs. Default: FALSE. |
A character vector with V motifs represented in the format regulator1->target<-regulator2.
data(gma_grn) data(gma_paralogs) edgelist <- gma_grn[2000:4000, 1:2] # reducing for test purposes paralogs <- gma_paralogs[gma_paralogs$type == "WGD", 1:2] motifs <- find_v(edgelist, paralogs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.