GithubHelp home page GithubHelp logo

ichronostasis / cdsknn Goto Github PK

View Code? Open in Web Editor NEW

This project forked from renjun0324/cdsknn

0.0 0.0 0.0 26.47 MB

Large-scale single-cell clustering algorithm based on K-means and optimal KNN graph structure

R 100.00%

cdsknn's Introduction

CDSKNN Clustering

Large-scale single-cell clustering algorithm based on K-means and optimal KNN graph structure

Installation

install.packages("devtools")
devtools::install_github("renjun0324/CDSKNN")

Quick Start

data(pca_result)
data(cellinfo)

result = CDSKNN(pca_result,
             outlier_q = 0.1,
             down_n = 300,
             knn_range = 5:70,
             iter = 100,
             compute_index =  c("Davies_Bouldin","Calinski_Harabasz"),
             assess_index = "Davies_Bouldin",
             cores = 1,
             seed = 723)

# ARI result
library(aricode)
ARI(result$cluster_df$cluster,cellinfo$celltype)

Steps

# outlier detect
outlier_kmeans = OutlierKmeans(dataMatrix = pca_result,
                               outlier_q = 0.1,
                               down_n = 300,
                               cores = 1,
                               seed = 723)
      
# random sampling and choose optmial KKN graph structure                      
sampling_result = SamplingLouvain(dataMatrix = pca_result,
                                  outlier_kmeans = outlier_kmeans,
                                  knn_range = 5:70,
                                  iter = 100,
                                  compute_index = c("Davies_Bouldin","Calinski_Harabasz"),
                                  cores = 10,
                                  seed = 723)
                                  
# get final clustering result                                 
new_louvain = NewLouvain(sampling_result = sampling_result,
                         outlier_kmeans = outlier_kmeans,
                         assess_index = "Davies_Bouldin",
                         cores = 1)
                       
result = data.frame(row.names = rownames(new_louvain$cluster_meta),
                    name = rownames(new_louvain$cluster_meta),
                    celltype = cellinfo$celltype,
                    cluster = as.factor(new_louvain$cluster_meta$cluster),
                    stringsAsFactors = FALSE)

# ARI result
library(aricode)
ARI(result$cluster_df[rownames(cellinfo),"cluster"],cellinfo$celltype)

cdsknn's People

Contributors

renjun0324 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.