Description Usage Arguments Value Examples
Function to add names to network for the user.
1 | add_names(grn, gen_names)
|
grn |
a GRN object from KBoost. |
gen_names |
a vector with the gene names. |
grn a GRN object with elements with user-defined gene names.
1 2 3 4 5 6 7 | data(D4_multi_1)
Net = kboost(D4_multi_1)
g_names = matrix("G",100,1)
for (i in seq_along(g_names)){
g_names[i] = paste(g_names[i],toString(i), sep = "")
}
Net = add_names(Net,g_names)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.