前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >小鼠单细胞注释包-scMCA

小鼠单细胞注释包-scMCA

作者头像
生信编程日常
发布2020-06-04 22:23:53
2.1K0
发布2020-06-04 22:23:53
举报
文章被收录于专栏:生物信息学、python、R、linux

scMCA是一种基于单细胞基因表达的鼠细胞类型定义工具。scMCA是简易的R软件包,且有在线版scMCAMouse Cell Atlas 。此外,还添加了一个用于对scMCA进行可视化的UI。

分析流程
1.scMCA R包

安装

代码语言:javascript
复制
#This require devtools  
install.packages('devtools')
library(devtools)
# scMCA requires ggplot2/reshape2/plotly/shiny/shinythemes/shiny
install_github("ggjlab/scMCA")
代码语言:javascript
复制
library(scMCA)
# mca_lung is an example expression matrix from MCA project.
data(mca_lung)
dim(mca_lung)
# 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

2. shiny交互式
代码语言:javascript
复制
# open shiny for visualize result for scMCA
scMCA_vis(mca_result)

image.png

3.网页版
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 分析流程
  • 1.scMCA R包
  • 2. shiny交互式
  • 3.网页版
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档