cover_image

第四章 Hisat2进行数据比对

BioinfoDu 小杜的生信筆記
2023年04月22日 09:39
前言
《转录组上游分析教程》第四章 HISAT2比对

《转录组上游分析教程》,这个系列教程,在公众号中会一直更新结束。

如果你要系统看,可以购买腾讯课堂的教程(PS:腾讯课堂教程只上架安卓系统和PC,你可以使用PC浏览器中购买观看。)详情可看小白学生信 | 转录组上游分析教程

  • 腾讯课堂链接如下所示:https://bioinformatic.ke.qq.com/
    图片

往期文章:


第四章

4.2 Hisat2进行数据比对

官网:https://daehwankimlab.github.io/hisat2/,该软件的运行速度是Tophat的N倍之多,所需的服务器资源较少

所需软件:

  1. hisat2
  2. stringTie
  3. samtools
  4. gffcompare

以上软件都可以直接使用conda安装,或直接使用源码安装即可,源码安装最好添加路径。


软件安装:1. Hisat2安装

  • conda安装
conda install -y hisat2
  • 源码安装

下载网址:http://ccb.jhu.edu/software/hisat/index.shtml

## 下载后上传即可
## 网址:https://daehwankimlab.github.io/hisat2/download/#version-hisat2-221
unzip hisat2.2.1-Linux-x86.zip
cd hisat2.2.1-Linux-x86
## 配置环境变量
echo 'PATH=$PATH:~/software/hisat2.2.1-Linux-x86/bin'

  1. Stringtie安装

Stringtie网址:http://ccb.jhu.edu/software/stringtie/index.shtml?t=manual

  • conda安装
conda install -y stringtie
  • 源码安装
wget http://ccb.jhu.edu/software/stringtie/dl/stringtie-2.2.1.Linux_x86_64.tar.gz
tar -zxvf stringtie-2.2.1.Linux_x86_64.tar.gz
cd stringtie-2.2.1.Linux_x86_64
## 配置环境变量
echo 'PATH=$PATH:~/software/stringtie-2.2.1.Linux_x86_64'

Hisat2+strigtie分析流程图片不通过Stringtie组装,直接使用Stringtie -eB进行定量。图片3. gffcompare安装

网址:http://ccb.jhu.edu/software/stringtie/gff.shtml#gffcompare

  • conda安装

    conda install -y gffcompare
  • 源码安装

    wget http://ccb.jhu.edu/software/stringtie/dl/gffcompare-0.12.6.tar.gz
    tar -zxvf gffcompare-0.12.6.tar.gz
    cd gffcompare-0.12.6
    ## 添加环境变量
    echo 'PATH=$PATH:~/software/gffcompare-0.12.6'
  • git clone

网址:https://github.com/gpertea/gffcompare

git clone https://github.com/gpertea/gffcompare
cd gffcompare
make release

  1. samtools 安装
  • conda安装
conda install -y samtools
  • 源码安装

网址:https://github.com/samtools/samtools

## samtools
wget https://github.com/samtools/samtools/releases/download/1.16.1/samtools-1.16.1.tar.bz2
tar -jxf samtools-1.16.1.tar.bz2
cd samtools-1.16.1
./configure --prefix=/where/to/install
make
make install
echo 'PATH=$PATH:~/softwar/samtools-1.16.1/' >> ~/.bashrc

Hisat2+StringTie流程

可以直接参考软件文献,讲的非常详细:

Transcript-level expression analysis of RNA-seq experiments with HISAT, StringTie and Ballgown, 2016, Nat Protoc图片

兑换合集后可阅读剩余71%
#转录组上游分析教程 | 零基础
已完结 共15个
合集详情
  • 1. 转录组上有分析教程资料领取
  • 2. 转录组上有分析教程资料领取
  • 3. 第六章 转录本定量分析
兑换合集后可阅读剩余71%

#转录组上游分析教程 | 零基础

微信扫一扫付费阅读本文
2023年推文汇总集 · 目录
上一篇转录组上游分析教程 | 第一位VIP同学产生下一篇《转录组上游分析教程》录制视频
继续滑动看下一个
小杜的生信筆記
向上滑动看下一个