腫瘤樣本中的正常上皮鑒定-參考Nature Communications

單細(xì)胞系列教程目錄索引,持續(xù)更新...


參考文獻(xiàn):Single-cell RNA sequencing demonstrates the molecular and cellular reprogramming of metastatic lung adenocarcinoma

image

方法簡述

  1. 將推定惡性細(xì)胞比例調(diào)整至20%以下
  2. 過濾掉信息量較少的基因(默認(rèn):少于 10 個(gè)細(xì)胞表達(dá)毁葱、在 log2 尺度上的平均表達(dá)少于 0.1)
  3. 轉(zhuǎn)化為Z-score,將尺度限制為-3~3
  4. 按染色體位置對基因進(jìn)行排序椭迎,估計(jì) CNV 信號(默認(rèn) = 100 個(gè)基因)
  5. 用兩個(gè)參數(shù)匯總CNV信號庶溶,對惡性細(xì)胞和非惡性細(xì)胞進(jìn)行分類而咆。
    • CNV 信號(MS买决,平方均值):CNV信號估計(jì)均方惯疙。
    • CORR(與高 CNV 信號細(xì)胞的相關(guān)性):每個(gè)細(xì)胞的 CNV 與前 5% 細(xì)胞的平均值的相關(guān)性呕乎。
    • 如果它們的 CNV 信號 (MS) > 0.02(X軸) 或 CNV 相關(guān)性 (CORR) > 0.2(Y軸)示罗,則鑒定為惡性細(xì)胞惩猫。

代碼可通過原作者Github獲取。這里以作者給出的example進(jìn)行示例蚜点。

library(ggplot2)
library(pals)
library(plyr)
library(dplyr)
library(Seurat)
library(gplots)
library(RColorBrewer)
####################################################################################################
source("R/calInferredCNA_for_CEP.R") ## calculate inferredCNV value
source("R/makingTCIDEA_for_CEP.R") ## make TCIDEA object
source("R/TCIDEA_obj_for_CEP.R") ## initiate TCIDEA object
source("R/calCNVScore_for_CEP.R") ## calculate CNV score (MS, Corr) with CEP result

###################################################################################################
## Example data ###################################################################################
#腫瘤樣本注釋
cell_annotation_with_tumor <- readRDS(file = "example/cell_info_tumor_example.Rds") # celltype = annotation cell types in transcriptome data
#腫瘤樣本log2表達(dá)矩陣
tumor_example <- readRDS(file = "example/log2TPM_tumor_example.Rds")
#正常細(xì)胞log2表達(dá)矩陣
normal_example <- readRDS(file = "example/log2TPM_normal_example.Rds")
#基因組位置信息
ref_genome_example <- readRDS(file = "example/refgenome_example.Rds")
#輸出目錄
output.dir = paste0(getwd(), "/", "result")
###################################################################################################
## PARAMETERS #####################################################################################
#設(shè)定推斷惡性細(xì)胞最大比例
EP_cutoff = 20 ## count if > 20% of EP -> add
#ep細(xì)胞亞群的名稱
target.celltypes = "EP" ## declare name of epithelial cells in metadata
label = "example" 
###################################################################################################
## 1. check proportion of epithelial cells in tumor tissues ##
prop <- as.data.frame(table(cell_annotation_with_tumor$celltype))
prop$Percent = prop$Freq / nrow(cell_annotation_with_tumor) * 100

##2. Check the proportion (adding normal cells or not)
if(prop[prop$Var1 %in% target.celltypes,]$Percent > EP_cutoff){
  
  list <- addNormalDataset(tumor.data = tumor_example, tumor.ident = cell_annotation_with_tumor, target.celltypes = target.celltypes,
                           normal.data = normal_example)
  addnormal_example <- as.matrix(list$data); addnormal_annotation <- list$ident
  
  runCEP(target.normalized = addnormal_example,  
         sample.info = addnormal_annotation, label = paste0(label,"_AddNormal"),
         annotationdata = ref_genome_example, target.celltypes = target.celltypes, output.dir = output.dir,
         min.cells = 10, MYwalk = 100) ## Sample list of EP proportion > EP_cutoff (20%)
}else{
  runCEP(target.normalized = tumor_example,  
         sample.info = cell_annotation_with_tumor, label = label,
         annotationdata = ref_genome_example,target.celltypes = target.celltypes, output.dir = output.dir,
         min.cells = 10, MYwalk = 100) ## Sample list of EP proportion <= EP_cutoff (20%)
}

############################################

image

結(jié)果提取

result=readRDS(file = "result/example_AddNormal_after_calc_CNV_score.Rds")
identification=data.frame(Barcord=result$Index,cell_type=result$cell_index)
head(identification)
image

后續(xù)自行整合至seurat注釋進(jìn)行后續(xù)分析


參考來源:
https://github.com/SGI-LungCancer/SingleCell
參考文獻(xiàn):
Single-cell RNA sequencing demonstrates the molecular and cellular reprogramming of metastatic lung adenocarcinoma
鳴謝:
I thank Dr.Jianming Zeng(University of Macau), and all the members of his bioinformatics team, biotrainee, for generously sharing their experience and codes.

問題交流:
Email: xuran@hrbmu.edu.cn

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末轧房,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子绍绘,更是在濱河造成了極大的恐慌奶镶,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,372評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件陪拘,死亡現(xiàn)場離奇詭異厂镇,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)左刽,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評論 3 392
  • 文/潘曉璐 我一進(jìn)店門捺信,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人欠痴,你說我怎么就攤上這事迄靠∶胱桑” “怎么了?”我有些...
    開封第一講書人閱讀 162,415評論 0 353
  • 文/不壞的土叔 我叫張陵梨水,是天一觀的道長拭荤。 經(jīng)常有香客問我,道長疫诽,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,157評論 1 292
  • 正文 為了忘掉前任旦委,我火速辦了婚禮奇徒,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘缨硝。我一直安慰自己摩钙,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評論 6 388
  • 文/花漫 我一把揭開白布查辩。 她就那樣靜靜地躺著胖笛,像睡著了一般。 火紅的嫁衣襯著肌膚如雪宜岛。 梳的紋絲不亂的頭發(fā)上长踊,一...
    開封第一講書人閱讀 51,125評論 1 297
  • 那天,我揣著相機(jī)與錄音萍倡,去河邊找鬼身弊。 笑死,一個(gè)胖子當(dāng)著我的面吹牛列敲,可吹牛的內(nèi)容都是我干的阱佛。 我是一名探鬼主播,決...
    沈念sama閱讀 40,028評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼戴而,長吁一口氣:“原來是場噩夢啊……” “哼凑术!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起所意,我...
    開封第一講書人閱讀 38,887評論 0 274
  • 序言:老撾萬榮一對情侶失蹤淮逊,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后扁眯,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體壮莹,經(jīng)...
    沈念sama閱讀 45,310評論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評論 2 332
  • 正文 我和宋清朗相戀三年姻檀,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了命满。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,690評論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡绣版,死狀恐怖胶台,靈堂內(nèi)的尸體忽然破棺而出歼疮,到底是詐尸還是另有隱情,我是刑警寧澤诈唬,帶...
    沈念sama閱讀 35,411評論 5 343
  • 正文 年R本政府宣布韩脏,位于F島的核電站,受9級特大地震影響铸磅,放射性物質(zhì)發(fā)生泄漏赡矢。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評論 3 325
  • 文/蒙蒙 一阅仔、第九天 我趴在偏房一處隱蔽的房頂上張望吹散。 院中可真熱鬧,春花似錦八酒、人聲如沸空民。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽界轩。三九已至,卻和暖如春衔瓮,著一層夾襖步出監(jiān)牢的瞬間浊猾,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評論 1 268
  • 我被黑心中介騙來泰國打工报辱, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留与殃,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 47,693評論 2 368
  • 正文 我出身青樓碍现,卻偏偏與公主長得像幅疼,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子昼接,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評論 2 353

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