Skip to content

Instantly share code, notes, and snippets.

@lianchye
lianchye / search_engine.R
Created December 20, 2019 07:02
Single cell Search Engine of Tabula Muris
#Install Keras
devtools::install_github("rstudio/keras")
library(keras)
install_keras()
#Install other packages for analysis etc..
list.of.packages = c("class", "ggsci","ggpubr","tidyverse","kernelKnn","doParallel")
new.packages = list.of.packages[!(list.of.packages %in% installed.packages()[,"Package"])]
if(length(new.packages)) install.packages(new.packages)