This section is the further study of single cell data analysis following the previous BIC.
This is the homework of Day 1.
options("repos"="https://mirrors.ustc.edu.cn/CRAN/")
if(!require("BiocManager")) install.packages("BiocManager",update = F,ask = F)
options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/")
cran_packages <- c('tidyverse',
'msigdbr',
'patchwork',
'SeuratObject',
'Seurat'
)
Biocductor_packages <- c('sva',
'monocle',
'GOplot',
'GSVA',
'plotmo',
'regplot',
'scRNAseq',
'BiocStyle',
'celldex',
'SingleR',
'BiocParallel'
)
for (pkg in cran_packages){
if (! require(pkg,character.only=T,quietly = T) ) {
install.packages(pkg,ask = F,update = F)
require(pkg,character.only=T)
}
}
for (pkg in Biocductor_packages){
if (! require(pkg,character.only=T,quietly = T) ) {
BiocManager::install(pkg,ask = F,update = F)
require(pkg,character.only=T)
}
}
for (pkg in c(Biocductor_packages,cran_packages)){
require(pkg,character.only=T)
}
packageVersion("Seurat")
Cell atlas construction
Cell typing, new cell type identification
Oncology, including heteralgenetiy, micro-environment, drug resistance, and stem cell diffrenciation of tumor cell
Neuroscience
Developmental biology
Immunology
https://jieandze1314-1322730577.cos.ap-guangzhou.myqcloud.com/blog/2024-06-17-021758.png
Cited from https://m.umu.com/session/article/3PSv8e9a?fwx=1
1.Gene Expression Omnibus (GEO) by NIH
https://www.ncbi.nlm.nih.gov/geo/
2.Single Cell Portal by Broad Institute
https://singlecell.broadinstitute.org/single_cell
3.Human Cell Atlas
https://www.humancellatlas.org/
4.Single Cell Expression Atlas by EMBL-EBI
https://www.ebi.ac.uk/gxa/sc/home
5.UCSC Cell Browser by UCSC
Various formats, different format corresponds to the different way of reading, we can see this: https://mp.weixin.qq.com/s/W7szy-Kg6G1N1ENHNRjGiw.
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。