Calculate the Sorensen-Dice distance between two genesets.

calculateSorensenDice(a, b)

Arguments

a, b

character vector, set of gene identifiers.

Value

The Sorensen-Dice distance of the sets.

Examples

#' ## Mock example showing how the data should look like
a <- c("PDHB", "VARS2")
b <- c("IARS2", "PDHA1")
c <- calculateSorensenDice(a, b)

## Example using the data available in the package
data(macrophage_topGO_example_small,
     package = "GeDi",
     envir = environment())
genes <- GeDi::getGenes(macrophage_topGO_example_small)
sd <- calculateSorensenDice(genes[1], genes[2])