reduce_gene_table_ambiguity | R Documentation |
Assuming a data frame with at least 2 columns, we may split 1 column on the other. We may then remove entries in multiple-entry elements that occur in 1-entry elements - these are likely mis-assigned annotations.
reduce_gene_table_ambiguity(gene_table, id1, id2)
gene_table |
Data frame |
id1 |
Name of column to split (unquoted) |
id2 |
Index column for the split |
Reduced data frame
test <- data.frame(ida = c("a", "b", "a"), idb = c("x", "x", "y"))
reduce_gene_table_ambiguity(test, ida, idb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.