Name Mode Size
R 040000
inst 040000
man 040000
tests 040000
vignettes 040000
DESCRIPTION 100644 2 kb
NAMESPACE 100644 0 kb
README.md 100644 1 kb
README.md
# looking4clusters Applies dimension reduction and clustering techniques and creates interactive clustering visualization plots. # Install ```r # installing from bioconductor if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("looking4clusters") # installing from github library(devtools) install_github('BioinfoUSAL/looking4clusters') ``` # Usage ```r library(looking4clusters) library(scRNAseq) sce <- ReprocessedAllenData("tophat_counts") counts <- t(assays(sce)$tophat_counts) obj <- looking4clusters(counts, groups=colData(sce)[,'dissection_s']) l4chtml(obj) ```