本篇文章為大家展示了如何用gggenes 畫(huà)基因結(jié)構(gòu)圖,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、雅安服務(wù)器托管、營(yíng)銷(xiāo)軟件、網(wǎng)站建設(shè)、連平網(wǎng)站維護(hù)、網(wǎng)站推廣。
install.packages("gggenes")
或者從github下載安裝:
devtools::install_github("wilkox/gggenes")
2. 準(zhǔn)備輸入數(shù)據(jù)
官方給的例子如下:
> head(example_genes) molecule gene start end strand direction1 Genome5 genA 405113 407035 forward 12 Genome5 genB 407035 407916 forward 13 Genome5 genC 407927 408394 forward 14 Genome5 genD 408387 408737 reverse -15 Genome5 genE 408751 409830 forward 16 Genome5 genF 409836 410315 forward 1
輸入數(shù)據(jù)應(yīng)該包含6列,分別代表:
物種名 基因名 起始位置 結(jié)束位置 基因方向 基因方向
如果不需要考慮畫(huà)出基因方向的話,只需要前4列數(shù)據(jù)就行:物種名,基因名,起始位置,結(jié)束位置
如果加上基因方向,就需要加上 strand 這一列,正負(fù)鏈分用“forward”和“reverse”表示。示例數(shù)據(jù)中的 direction 這一列是多余的,并不會(huì)被用到。
2. 作圖
library(ggplot2)
library(gggenes)
ggplot(example_genes, aes(xmin = start, xmax = end,
y = molecule, fill = gene)) +
geom_gene_arrow() +
facet_wrap(~ molecule, scales = "free", ncol = 1) +
scale_fill_brewer(palette = "Set3") +
theme_genes()
圖如下:
可以看出來(lái),使用的是我們熟悉的ggplot2語(yǔ)法,再加上 geom_gene_arrow() 函數(shù)來(lái)實(shí)現(xiàn)了基因結(jié)構(gòu)的作圖。
下面的我們加上方向,也加上基因名稱(chēng),代碼如下:
ggplot(example_genes, aes(xmin = start, xmax = end, y = molecule, fill = gene, label = gene, forward = direction)) + geom_gene_arrow() + facet_wrap(~ molecule, scales = "free", ncol = 1) + scale_fill_brewer(palette = "Set3") + theme_genes() + geom_gene_label(align = "left")
label = gene, forward = direction 指定了基因名和基因方向
geom_gene_label(align = "left") 在圖上添加了基因名并靠左對(duì)齊
3. 其他用法
gggenes也可以如上圖所示展現(xiàn)基因結(jié)構(gòu)域特征或者比對(duì)信息,可以使用geom_subgene_arrow() 函數(shù)來(lái)實(shí)現(xiàn),需要額外用到另一份數(shù)據(jù)example_subgenes,代碼如下:
> head(example_subgenes) molecule gene start end strand subgene from to1 Genome5 genA 405113 407035 forward genA-1 405774 4065382 Genome5 genB 407035 407916 forward genB-1 407458 4078973 Genome5 genC 407927 408394 forward genC-1 407942 4081584 Genome5 genC 407927 408394 forward genC-2 408186 4082095 Genome5 genC 407927 408394 forward genC-3 408233 408257
ggplot(example_genes, aes(xmin = start, xmax = end, y = molecule)) + facet_wrap(~ molecule, scales = "free", ncol = 1) + geom_gene_arrow(fill = "white") + geom_subgene_arrow(data = example_subgenes, aes(xmin = start, xmax = end, y = molecule, fill = gene, xsubmin = from, xsubmax = to), color="black", alpha=.7) + theme_genes()
上述內(nèi)容就是如何用gggenes 畫(huà)基因結(jié)構(gòu)圖,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
標(biāo)題名稱(chēng):如何用gggenes畫(huà)基因結(jié)構(gòu)圖
標(biāo)題路徑:http://aaarwkj.com/article28/gjdgjp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、網(wǎng)頁(yè)設(shè)計(jì)公司、網(wǎng)站收錄、關(guān)鍵詞優(yōu)化、網(wǎng)站建設(shè)、搜索引擎優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
移動(dòng)網(wǎng)站建設(shè)知識(shí)