PANDA姐的转录组入门(1):计算机资源的准备
虽然我翻译总结过综述RNA-seq数据分析指南,也分享过一本好书【好书分享】转录组分析实战指南,收藏过很多相关资料。但是自己却没有跑过RNA-seq分析流程,重复过一篇文章。此时此刻,家里正在举办盛大的五百人共同入门转录组的交流活动,PANDA姐xiong'mao'jie怎么能错过呢,当然是哼哧哼哧学起来啦🐣~~
下面进入正题:安装软件💻!!
准备🚘
系统准备
Win10系统如何开启Linux Bash功能?
Win10系统Bash on Ubuntu on Windows怎么用?(安装和用法)软件安装目录
mkdir Biosoft & cd Biosoft
wget http://biotrainee.com/jmzeng/RNA-seq/RNA-seq-example-GSE81916-two-group.sh
软件列表
git/notepad++/everything 编程基础工具
sratoolkit sra数据格式转换
fastqc 质控
hisats 比对
samtools sam/sam文件操作
htseq-count reads计数
R\Rstudio 统计、画图、后续分析
sratoolkit💼
cd /mnt/d/Software/Biosoft
mkdir sratoolkit && cd sratoolkit
wget https://ftp-trace.ncbi.nlm.nih.gov/sra/sdk/2.8.2-1/sratoolkit.2.8.2-1-ubuntu64.tar.gz
# curl:https://trace.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=software
# 长度: 76473769 (73M) [application/x-gzip]
# 正在保存至: “sratoolkit.2.8.2-1-ubuntu64.tar.gz”
tar -zxvf sratoolkit.2.8.2-1-ubuntu64.tar.gz
fastqc👓
cd /mnt/d/Software/Biosoft
mkdir fastqc && cd fastqc
wget http://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.5.zip
# curl: http://www.bioinformatics.babraham.ac.uk/projects/fastqc/
unzip fastqc_v0.11.5.zip
# 中间要安装unzip和java,根据系统提示安装,一般是sudo apt install后加软件名。
HISAT🚀
cd /mnt/d/Software/Biosoft
mkdir HISAT && cd HISAT
wget ftp://ftp.ccb.jhu.edu/pub/infphilo/hisat2/downloads/hisat2-2.1.0-source.zip
# curl:http://ccb.jhu.edu/software/hisat2/index.shtml
unzip hisat2-2.1.0-source.zip
cd hisat2-2.1.0
make # 在此之前要安装g++和gcc,同上用sudo apt install 安装。
rm -f *.h *.cpp
samtools🍉
cd /mnt/d/Software/Biosoft
mkdir samtools && cd samtools
wget https://github.com/samtools/samtools/releases/download/1.5/samtools-1.5.tar.bz2
# curl:http://www.htslib.org/download/
# 长度: 4190142 (4.0M) [application/octet-stream]
# 正在保存至: “samtools-1.5.tar.bz2”
tar xvfj samtools-1.5.tar.bz2
cd samtools-1.5
./configure
# 根据configure 检测,安装系统依赖的模块,直到没有报错。
make
sudo make install
HTSeq🎈
# 安装依赖
sudo apt-get install python-pip
pip install --upgrade pip
sudo apt-get install build-essential python2.7-dev python-numpy python-matplotlib
wget https://testpypi.python.org/packages/de/e4/5287587097a4c46b571babb074ce3ff91cf220bed26502b69dccd3a2fda3/HTSeq-0.8.0dev2.tar.gz
# curl:http://www-huber.embl.de/users/anders/HTSeq/doc/count.html
tar xvzf HTSeq-0.8.0dev2.tar.gz
python setup.py install --user
~/.local/bin/htseq-count --help
Anaconda🐍
wget https://repo.continuum.io/archive/Anaconda3-4.4.0-Linux-x86_64.sh
# curl:https://www.continuum.io/downloads
vi ~/.bashrc
export PATH="/home/shenmy/anaconda3/bin:$PATH"
# 正常情况下会自动添加到环境变量里的,手速太快错过了,手动添加。
conda install -c bioconda samtools=1.5
conda install -c bioconda htseq=0.7.2
conda install -c bioconda hisat2=2.1.0
conda install -c bioconda fastqc=0.11.5
conda install -c jfear sratoolkit=2.8.1
其他安装笔记✍
青山屋主:https://zhuanlan.zhihu.com/p/27670618?utm_source=wechat_session&utm_medium=social&from=groupmessage&isappinstalled=0
hoptop:http://www.jianshu.com/p/b16ae34f9012
这是一个随意的视频📀
https://v.qq.com/txp/iframe/player.html?vid=b0521jetrcn&width=500&height=375&auto=0