getFamily: Get the miRNA Family and add to the miRNA Enrichment Results

Usage Arguments Examples

View source: R/getFamily.R

Usage

1
getFamily(results, mir.fam)

Arguments

results
mir.fam

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (results, mir.fam) 
{
    results = merge(results, mir.fam[, c(1, 4)], by.x = "miRNA", 
        by.y = "miRBaseID", all.x = T)
    results = aggregate(miRNA ~ ., results, toString)
    results$miRNA <- vapply(results$miRNA, paste, collapse = ", ", 
        character(1L))
    return(results)
  }

komalsrathi/miRNAEnrich documentation built on May 20, 2019, 12:55 p.m.