下载数据

sra到fastq格式转换并进行质量控制

2019-02-25  本文已影响43人  莫讠

https://www.jianshu.com/p/c2328c2c83a1下载的sra文件转换为fastq格式的测序文件,并且用fastqc软件测试测序文件的质量,理解各指标的意义。
1 数据解压:用samtools中的fastq-dump将sra格式转为fastq格式

#先启动python3环境
kevin@kevin-Lenovo-G510:~$ source ~/miniconda3/bin/activate
#查看fastqc命令是否有效(注意现在是base环境)
(base) kelly@DESKTOP-MRA1M1F:/mnt/f/rna_seq/data$ fastq-dump -h
#命令1
(base) kevin@kevin-Lenovo-G510:~$ fastq-dump SRR316215.sra -O .
Read 22782182 spots for SRR316215.sra
Written 22782182 spots for SRR316215.sra

查看由sra文件转化为fastq文件

(base) kevin@kevin-Lenovo-G510:~$ less -SN SRR316215.fastq
打开的fastq文件
注意

A FASTQ file normally uses four lines per sequence.

  • Line 1 begins with a '@' character and is followed by a sequence >identifier and an optional description (like a FASTA title line).
  • Line 2 is the raw sequence letters.
  • Line 3 begins with a '+' character and is optionally followed by the same sequence identifier (and any description) again.
  • Line 4 encodes the quality values for the sequence in Line 2, and must contain the same number of symbols as letters in the sequence.
    A FASTQ file containing a single sequence might look like this:
@SEQ_ID
GATTTGGGGTTCAAAGCAGTATCGATCAAATAGTAAATCCATTTGTTCAACTCACAGTTT
+
!''*((((***+))%%%++)(%%%%).1***-+*''))**55CCF>>>>>>CCCCCCC65

The character '!' represents the lowest quality while '~' is the highest. Here are the quality value characters in left-to-right increasing order of quality (ASCII):

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFG
HIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~

The original Sanger FASTQ files also allowed the sequence and quality strings to be wrapped (split over multiple lines), but this is generally discouraged as it can make parsing complicated due to the unfortunate choice of "@" and "+" as markers (these characters can also occur in the quality string).

2 用fastqc进行质量控制

FastQC aims to provide a simple way to do some quality control checks on raw sequence data coming from high throughput sequencing pipelines. It provides a modular set of analyses which you can use to give a quick impression of whether your data has any problems of which you should be aware before doing any further analysis.
The main functions of FastQC are

  • Import of data from BAM, SAM or FastQ files (any variant)
  • Providing a quick overview to tell you in which areas there may be problems
  • Summary graphs and tables to quickly assess your data
  • Export of results to an HTML based permanent report
  • Offline operation to allow automated generation of reports without running the interactive application

用法:
fastqc [-o output dir] [--(no)extract] [-f fastq|bam|sam] [-c contaminant file] seqfile1 .. seqfileN
参数:
-o 输出目录,需自己创建目录
--(no)extract 是否解压输出文件,默认是自动解压缩zip文件。加上--noextract不解压文件。
-f 指定输入文件的类型,支持fastq|bam|sam三种格式的文件,默认自动识别。
-t 同时处理的文件数目。
-c 是contaminant 文件,会从中搜索overpresent 序列。

#将所有的数据进行质控,得到zip的压缩文件和html文件
 fastqc -O . SRR316215.fastq

注意:-o后面有空格,表示输出到当前文件夹,之后的.后也有空格

3 质控结果解读

fastqc结果详细解读(包括代表意义,出错代表的意义等,极其详细)稍后会写一篇专门解读的文章

https://blog.csdn.net/gateswell/article/details/78858579

https://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/

在本作业中,每个 fastq 文件都能生成一个 html 报告文件,很详细。结果可知,测序质量非常好。
FastQC Report

4 质控结果批量查看工具:multiQC

如果不嫌麻烦,可以一个个查看质控结果,毕竟前期数据下载处理等就花那么多时间,在进行质控的同时查看结果完全可以满足。但如果文件很多,可以进行合并查看,具体见
青山屋主:https://zhuanlan.zhihu.com/p/27646873
Hoptop:https://www.jianshu.com/p/303de2c95239
lxmic:https://www.jianshu.com/p/14fd4de54402

参考链接:
Y大宽:https://www.jianshu.com/p/facb4a1e5927
鱼晨光:https://www.jianshu.com/p/4779b7103ae1

上一篇下一篇

猜你喜欢

热点阅读