All Projects → ggjlab → scMCA

ggjlab / scMCA

Licence: other
Mouse cell atlas

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to scMCA

SCopeLoomR
R package (compatible with SCope) to create generic .loom files and extend them with other data e.g.: SCENIC regulons, Seurat clusters and markers, ...
Stars: ✭ 25 (-44.44%)
Mutual labels:  r-package, single-cell
packagefinder
Comfortable search for R packages on CRAN, either directly from the R console or with an R Studio add-in
Stars: ✭ 43 (-4.44%)
Mutual labels:  r-package
geodaData
Data package for accessing GeoDa datasets using R
Stars: ✭ 15 (-66.67%)
Mutual labels:  r-package
states
Create country-year/month/day panels consistent with the COW or Gleditsch & Ward independent states lists
Stars: ✭ 13 (-71.11%)
Mutual labels:  r-package
lingtypology
R package for linguistic cartography and typological databases search
Stars: ✭ 47 (+4.44%)
Mutual labels:  r-package
syn
syn - the thesaurus
Stars: ✭ 45 (+0%)
Mutual labels:  r-package
crminer
⛔ ARCHIVED ⛔ Fetch 'Scholary' Full Text from 'Crossref'
Stars: ✭ 17 (-62.22%)
Mutual labels:  r-package
mlr3tuning
Hyperparameter optimization package of the mlr3 ecosystem
Stars: ✭ 44 (-2.22%)
Mutual labels:  r-package
ffscrapr
R API Client for Fantasy Football League Platforms
Stars: ✭ 55 (+22.22%)
Mutual labels:  r-package
Nebulosa
R package to visualize gene expression data based on weighted kernel density estimation
Stars: ✭ 50 (+11.11%)
Mutual labels:  single-cell
rcppsimdjson
Rcpp Bindings for the 'simdjson' Header Library
Stars: ✭ 103 (+128.89%)
Mutual labels:  r-package
suppdata
Grabbing SUPPlementary DATA in R
Stars: ✭ 31 (-31.11%)
Mutual labels:  r-package
nlrx
nlrx NetLogo R
Stars: ✭ 66 (+46.67%)
Mutual labels:  r-package
PLNmodels
A collection of Poisson lognormal models for multivariate count data analysis
Stars: ✭ 44 (-2.22%)
Mutual labels:  r-package
wqbc
An R package for water quality thresholds and index calculation for British Columbia
Stars: ✭ 16 (-64.44%)
Mutual labels:  r-package
trVAE
Conditional out-of-distribution prediction
Stars: ✭ 47 (+4.44%)
Mutual labels:  single-cell
Luminescence
Development of the R package 'Luminescence'
Stars: ✭ 13 (-71.11%)
Mutual labels:  r-package
rAltmetric
Query and visualize metrics from altmetric.com
Stars: ✭ 46 (+2.22%)
Mutual labels:  r-package
kana
Single cell analysis in the browser
Stars: ✭ 81 (+80%)
Mutual labels:  single-cell
rdflib
📦 High level wrapper around the redland package for common rdf applications
Stars: ✭ 47 (+4.44%)
Mutual labels:  r-package

scMCA

A tool defines cell types in mouse based on single-cell digital expression

At first scMCA is a breif R package for large scale data(large DGE) from scMCA online function Mouse Cell Atlas ,to alleviate burdens of our main Server.

Now we add a UI for visulizing the scMCA reuslt.

Installation

#This require devtools  
install.packages('devtools')
library(devtools)
# scMCA requires ggplot2/reshape2/plotly/shiny/shinythemes/shiny
install_github("ggjlab/scMCA")

Quick Start

library(scMCA)
# mca_lung is an example expression matrix from MCA project.
> data(mca_lung)
> dim(mca_lung)
[1] 2884   80
# 2884 genes expression value of 80 cells

# scMCA has two parameters , single cell expression matrix(scdata) and 
# the number of most similar cell types
> mca_result <- scMCA(scdata = mca_lung, numbers_plot = 3)

The return of scMCA() is a list which contains 4 parts.

  • cors_matrix: Pearson correlation coefficient matrix of each cell and cell type.
  • top_cors: equals to numbers_plot
  • scMCA: the most relevant cell type for each query cell
  • scMCA_probility: the top n relevant cell types for each query cell
# open shiny for visualize result for scMCA
scMCA_vis(mca_result)

scMCA_vis() provides a bref function for visualizing and downloading of scMCA results scMCA_vis

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].