Jing


  • Home

  • Tags

  • Categories

  • Archives

  • Search

Analysis of single cell RNA-seq data

Posted on 2019-06-06 | In single_cell |

1 Tabula Muris

1.1 介绍

他们将高通量但低覆盖率的10倍数据与低通量高覆盖率的数据结合起来,FACS-sortedcell+Smartseq2。

1.22 数据下载

下载FACS data

Read more »

热图太丑怎么办(pheatmap的使用)

Posted on 2019-06-06 | In R |

准备一个表达谱矩阵,横轴为100个基因,纵轴为208个样本,如下:
image
首先安装pheatmap

Read more »

Ven图、聚类分析、相关性分析

Posted on 2019-06-06 | In R |
绘制Ven图
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#载入相应的安装包
library(VennDiagram)
#进入到需要绘制Ven图的文件夹
setwd("/data/YJ/YanNa/stringtie/trs/Pt/diff10/LPt")
#filelist=list("Pt15","Pt17","Pt19","Pt2-","Pt20","Pt22","Pt3","Pt5","Pt6","Pt8","Pt9")
#将需要绘制Ven图的样本的rowname汇集到一个list中
filelist=list("LPt16","LPt24")
for (Pt in filelist){
files=list.files(path="/data/YJ/YanNa/stringtie/trs/Pt/diff10/LPt",pattern = Pt)
trslist=list()
image_name=paste(Pt,"_Ven",".tiff",sep="")
for (i in files){
base=strsplit(i,"_")[[1]][1]
trslist[base]=read.table(i,header = T,colClasses = c("character","NULL","NULL"))
}
#设置颜色
num=148
col=c()
for (i in 1:length(trslist)){
col[i]=colors()[num]
num=num+150
}
#绘制Ven图
venn.diagram(trslist,filename = image_name,col="transparent",fil=col,alpha=0.5,resolution = 500)
Read more »

使用biomaRT转换ID

Posted on 2019-06-06 | In R |
1
2
library(biomaRt)
#显示包含的数据库及其版本
Read more »

使用Hexo+Netlify搭建个人博客

Posted on 2019-06-06 | In 博客 |

个人博客搭建

准备工作

需要安装Git和Node.js

  • Git的安装

下载windows最新版,Git-2.21.0-64-bit.exe,
在git使用过程中遇到下面的两个错误
1、git报错:

1
fatal: bad config line 1 in file C:/Users/JIANGXIAOLIANG/.gitconfig

解决方案:
找到提示的目录,然后删掉.gitconfig文件
然后在重新配置用户名和邮箱,输入下面的命令:

1
2
$ git config --global user.name "用户名"
$ git config --global user.email "邮箱"

我在使用的时候没有重新配置用户好像也可以正常使用

Read more »

R中GEO数据的预处理

Posted on 2019-06-05 | In R |

获得芯片探针与gene的对应关系的三种方法:

  • 在基因芯片的厂商的官网直接下载

  • 从NCBI里面下载文件来解析

  • 直接使用Bioconductor包

Read more »

Whole-exome analysis

Posted on 2019-06-05 | In Bioinformatic_project |
软件准备

在相关软件官网下载最新版本的软件

  • bwa-0.7.17.tar.bz2
  • gatk-4.1.2.0.zip
  • picard-2.20.0-0.tar.bz2
  • samtools-1.9.tar.bz2
Read more »
Jing Yu

Jing Yu

7 posts
4 categories
9 tags
GitHub E-Mail
© 2019 Jing Yu
Powered by Hexo
|
Theme — NexT.Pisces v5.1.4