2024-11-21CellphoneBD教程

1换薄、cellphoneBD Rstudio 前期準(zhǔn)備工作

建立輸入文件
setwd("D:/D/metropolypus/FastMNN/cellphoneDB")
###根據(jù)colname名字區(qū)分BD單細(xì)胞和10X單細(xì)胞測序询张,提取10X單細(xì)胞測序數(shù)據(jù)
colnames(sce)
sce$tech <- sapply(colnames(x = sce), function(x) unlist(strsplit(x, "_"))[1]) 
sce$IF=sapply(sce$tech, function(x) unlist(nchar(x)>10))
table(sce$IF)

Idents(sce)<-sce$IF
ten=subset(sce,idents = c("TRUE"))
table(ten$sample)

subcell <- sample(colnames(ten),10000)
sce <- ten[,subcell]

library(SeuratDisk)
# 將Seurat對(duì)象保存為h5Seurat文件
SaveH5Seurat(sce, filename = "seurat_obj.h5Seurat")
# 轉(zhuǎn)換為h5ad格式
Convert("seurat_obj.h5Seurat", dest = "h5ad")


# 安裝pandas和anndata
# pip install pandas anndata
import pandas as pd
import anndata
# 讀取CSV文件
expression_matrix = pd.read_csv("/mnt/d/D/temp/cellphoneDB/expression_matrix.csv", index_col=0)
# 創(chuàng)建AnnData對(duì)象
adata = anndata.AnnData(X=expression_matrix)
# 保存為.h5ad文件
adata.write("/mnt/d/D/temp/cellphoneDB/sce.h5ad")
print(count_cells[:10])

sce$Cell = rownames(sce@meta.data)
df = sce@meta.data[,c("Cell","celltype")]
colnames(df) = c("Cell","cell_type")
df$Cell <- gsub("-", ".", df$Cell)
write.table(df, file = "meta1.txt",sep = "\t",quote = F,row.names = F)

sce$Cell = rownames(sce@meta.data)
df = sce@meta.data[,c("celltype","group")]
colnames(df) = c("cell_type","microenvironment")
write.table(df, file = "microenvironment.txt",sep = "\t",quote = F,row.names = F)

DEG.Au <-dplyr::filter(DEG.A,DEG.A$avg_log2F >0.25)
write.table(DEG.Au, file = "degs_file.txt",sep = "\t",quote = F,row.names = F)

2镊叁、CellPhoneDB python中運(yùn)行

#https://github.com/ventolab/CellphoneDB
#https://github.com/ventolab/CellphoneDB/blob/master/NatureProtocols2024_case_studies/CaseExample1_differentiation/analysis_method3_CellSign_microenvironments.ipynb
conda create -n cpdb python=3.8
source activate
conda activate cpdb
source activate cpdb
cd /mnt/d/D/temp/cellphoneDB

import pandas as pd
# 加載 meta 文件
meta_df = pd.read_csv("/mnt/d/D/temp/cellphoneDB/meta1.txt", sep="\t")
meta_clusters = set(meta_df['cell_type'])  # 使用meta文件中實(shí)際使用的列名

# 加載 DEGs 文件(需要早excel表格中手動(dòng)調(diào)節(jié)DEGs每列的順序需要和example_data中DEGs的順序保持一致)
degs_df = pd.read_csv("/mnt/d/D/temp/cellphoneDB/degs_file.txt", sep="\t") 
degs_clusters = set(degs_df.iloc[:, 5])  # 取DEGs文件的第一列

# 檢查 DEGs 中不存在于 meta 中的集群/細(xì)胞類型
missing_clusters = degs_clusters - meta_clusters
if missing_clusters:
    print("Missing clusters in meta:", missing_clusters)
else:
    print("All clusters match.")


from cellphonedb.src.core.methods import cpdb_degs_analysis_method
cpdb_results = cpdb_degs_analysis_method.call(
         cpdb_file_path = "/mnt/d/D/temp/cellphoneDB/cellphonedb.zip",
         meta_file_path = "/mnt/d/D/temp/cellphoneDB/meta1.txt",
         counts_file_path = "/mnt/d/D/temp/cellphoneDB/sce.h5ad",
         degs_file_path = "/mnt/d/D/temp/cellphoneDB/degs_file.txt",
         counts_data = 'hgnc_symbol',
         threshold = 0.1,
         output_path = "/mnt/d/D/temp/cellphoneDB/out/")

##代碼運(yùn)行時(shí)缩宜,所有表格列名的位置都要和D:\D\temp\cellphonedb\CellphoneDB-master\CellphoneDB-master\example_data中順序一樣

import anndata
adata = anndata.read_h5ad("/mnt/d/D/temp/cellphoneDB/seurat_obj.h5ad")
import matplotlib.pyplot as plt

# 調(diào)用繪制熱圖的函數(shù)
kpy.plot_cpdb_heatmap(
    pvals=cpdb_results['relevant_interactions'],
    degs_analysis=True,
    figsize=(5, 5),
    title="Sum of significant interactions"
)

# 保存圖像到指定路徑
output_path = "/mnt/d/D/temp/cellphoneDB/heatmap.png"
plt.savefig(output_path, format='png', dpi=300, bbox_inches='tight')

# 關(guān)閉當(dāng)前圖以釋放內(nèi)存
plt.close()


from plotnine import facet_wrap
# 創(chuàng)建圖形對(duì)象
p = kpy.plot_cpdb(
    adata=adata,
    cell_type1=".",
    cell_type2="Mast_cells",
    means=cpdb_results['means'],
    pvals=cpdb_results['relevant_interactions'],
    celltype_key="celltype",
    figsize=(12, 8),
    title="Interactions with Mast cells",
    max_size=6,
    highlight_size=0.75,
    degs_analysis=True,
    standard_scale=False
)
# 添加facet_wrap
final_plot = p + facet_wrap("~ classification", ncol=2)
# 使用 plotnine 的 draw 方法的猛,然后調(diào)用保存
output_path = "/mnt/d/D/temp/cellphoneDB/interaction_plot.mastcells.pdf"
from plotnine import ggplot
final_plot.save(filename=output_path, format='pdf', dpi=600, height=20, width=12, units='in')

p=kpy.plot_cpdb(
    adata = adata,
    cell_type1 = "Mast_cells",
    cell_type2 = ".", 
    means = cpdb_results['means'],
    pvals = cpdb_results['relevant_interactions'],
    celltype_key = "celltype",
#     genes = ["JAG1"],
    figsize = (10,15),
    title = "Interactions between oocytes and granulosa in the follicles",
    max_size = 5,
    highlight_size = 0.75,
    degs_analysis = True,
    standard_scale = False,
#     interaction_scores = cpdb_results['interaction_scores'],
    scale_alpha_by_interaction_scores=True,
)
output_path = "/mnt/d/D/temp/cellphoneDB/interaction_mastcell.allcells1.pdf"
from plotnine import ggplot
p.save(filename=output_path, format='pdf', dpi=600, height=8, width=8, units='in')
p.save(filename=output_path, format='pdf', dpi=300)
# 關(guān)閉當(dāng)前圖以釋放內(nèi)存
plt.close()

p = kpy.plot_cpdb(
    adata = adata,
    cell_type1 = ".",
    cell_type2 = "Mast_cells", 
    means = cpdb_results['means'],
    pvals = cpdb_results['relevant_interactions'],
    celltype_key = "celltype",
    genes = ["DHRS9"],
    figsize = (10,5),
    title = "Interactions involving DHRS9",
    max_size = 5,
    highlight_size = 0.75,
    degs_analysis = True,
    standard_scale = False
)
# 使用 plotnine 的 draw 方法安皱,然后調(diào)用保存
output_path = "/mnt/d/D/temp/cellphoneDB/interaction_plotDHRS9-PGR.pdf"
final_plot.save(filename=output_path, format='pdf', dpi=300)

# 關(guān)閉當(dāng)前圖以釋放內(nèi)存
plt.close()
p = kpy.plot_cpdb(
    adata = adata,
    cell_type1 = "unciliated_EpC|ciliated_EpC",
    cell_type2 = "Mast_cells", 
    means = cpdb_results['means'],
    pvals = cpdb_results['relevant_interactions'],
    celltype_key = "celltype",
    figsize = (8, 5),
    title = "Interactions between oocytes and granulosa in the follicles \n supported by downstream TF activity",
    max_size = 6,
    highlight_size = 0.75,
    degs_analysis = True,
    standard_scale = False,
    cellsign = cpdb_results['CellSign_active_interactions'],
    filter_by_cellsign = True,
    scale_alpha_by_cellsign = False
)
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末爷贫,一起剝皮案震驚了整個(gè)濱河市认然,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌漫萄,老刑警劉巖卷员,帶你破解...
    沈念sama閱讀 206,126評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異腾务,居然都是意外死亡毕骡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門岩瘦,熙熙樓的掌柜王于貴愁眉苦臉地迎上來未巫,“玉大人,你說我怎么就攤上這事启昧⌒鸱玻” “怎么了?”我有些...
    開封第一講書人閱讀 152,445評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵箫津,是天一觀的道長狭姨。 經(jīng)常有香客問我,道長苏遥,這世上最難降的妖魔是什么饼拍? 我笑而不...
    開封第一講書人閱讀 55,185評(píng)論 1 278
  • 正文 為了忘掉前任,我火速辦了婚禮田炭,結(jié)果婚禮上师抄,老公的妹妹穿的比我還像新娘。我一直安慰自己教硫,他們只是感情好叨吮,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著瞬矩,像睡著了一般茶鉴。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上景用,一...
    開封第一講書人閱讀 48,970評(píng)論 1 284
  • 那天涵叮,我揣著相機(jī)與錄音,去河邊找鬼。 笑死割粮,一個(gè)胖子當(dāng)著我的面吹牛盾碗,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播舀瓢,決...
    沈念sama閱讀 38,276評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼廷雅,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了京髓?” 一聲冷哼從身側(cè)響起航缀,我...
    開封第一講書人閱讀 36,927評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎朵锣,沒想到半個(gè)月后谬盐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,400評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡诚些,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了皇型。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片诬烹。...
    茶點(diǎn)故事閱讀 37,997評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖弃鸦,靈堂內(nèi)的尸體忽然破棺而出绞吁,到底是詐尸還是另有隱情,我是刑警寧澤唬格,帶...
    沈念sama閱讀 33,646評(píng)論 4 322
  • 正文 年R本政府宣布家破,位于F島的核電站,受9級(jí)特大地震影響购岗,放射性物質(zhì)發(fā)生泄漏汰聋。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評(píng)論 3 307
  • 文/蒙蒙 一喊积、第九天 我趴在偏房一處隱蔽的房頂上張望烹困。 院中可真熱鬧,春花似錦乾吻、人聲如沸髓梅。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽枯饿。三九已至,卻和暖如春诡必,著一層夾襖步出監(jiān)牢的瞬間奢方,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評(píng)論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留袱巨,地道東北人阁谆。 一個(gè)月前我還...
    沈念sama閱讀 45,423評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像愉老,于是被迫代替她去往敵國和親场绿。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容