An R package to visualise data on a Lifemap base (https://lifemap.cnrs.fr/)
Installation
To install the development version of LifemapR from GitHub :
remotes::install_github("damiendevienne/LifemapR")Once installed, load the package with :
Usage
Here is a brief introduction on how to use LifemapR.
- With the
build_Lifemapfunction transform your already existing data into a format usable by LifemapR functions
data(eukaryotes_1000)
# Construction of a LifemapR usable dataframe
LM_obj <- LifemapR::build_Lifemap(eukaryotes_1000)After the build_Lifemap function the result is a LifemapR format containing a dataframe :
full_df <- LM_obj$df- Then you can display a map with wanted informations by calling one ore more
LifemapRfunctions. Note that with theLifemapRfunctions, ashinyapplication will be launched
# Initialise a visualisation for LM_obj
lifemap(LM_obj) +
# adding a subtree with colored branches
LifemapR::lm_branches(var_col = "Protein", FUN = mean, col = "PiYG")+
# adding a set of points
LifemapR::lm_markers(radius = "GC.", var_fillColor = "Genes", FUN = mean)