fastQC

FastQC是一款用于高通量测序原始数据质量控制的工具,它能够从BAM、SAM或FastQ文件中导入数据,并提供一系列模块化的分析来快速评估数据的质量问题。FastQC的主要功能包括提供数据概览、生成汇总图表以及导出HTML报告。

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

下载地址

http://www.bioinformatics.babraham.ac.uk/projects/fastqc/

运行需求

A suitable Java Runtime Environment,

$ Java -version #查找版本是否符合要求,>=1.6 OK

The Picard BAM/SAM Libraries (included in download)

 安装

无须安装,下载解压缩后直接运行

详细说明

http://www.bioinformatics.babraham.ac.uk/projects/fastqc/INSTALL.txt

Windows

Windows: Simply double click on the run_fastqc bat file.  If you want to make a pretty 
shortcut then we've included an icon file in the top level directory so you don't have
to use the generic bat file icon.

Linux

Linux:  We have included a wrapper script, called 'fastqc' which is the easiest way to 
start the program.  The wrapper is in the top level of the FastQC installation.  You 
may need to make this file executable:

chmod 755 fastqc

..but once you have done that you can run it directly

./fastqc

..or place a link in /usr/local/bin to be able to run the program from any location:

sudo ln -s /path/to/FastQC/fastqc /usr/local/bin/fastqc

命令行操作
fastqc --help

e.g.

fastqc -i input.fastq -o Out_dir


结果输出

Summary

  • [PASS]Basic Statistics
  • [FAIL]Per base sequence quality
  • [WARNING]Per tile sequence quality
  • [PASS]Per sequence quality scores
  • [FAIL]Per base sequence content
  • [WARNING]Per sequence GC content
  • [PASS]Per base N content
  • [PASS]Sequence Length Distribution
  • [FAIL]Sequence Duplication Levels
  • [FAIL]Overrepresented sequences
  • [FAIL]Adapter Content
  • [FAIL]Kmer Content

 点击查看每个部分,详细解读

http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/

 

 

转载于:https://www.cnblogs.com/bioSci/p/4957215.html

<think>我们参考引用内容,用户需要下载并安装FastQC工具。根据引用信息,FastQC的安装主要涉及下载压缩包、解压、赋予执行权限、添加环境变量等步骤。由于引用中提到了多个版本(0.11.5、0.12.1、0.11.8),我们以最新版本(或稳定版本)为例,但用户可以选择具体版本。通常,我们建议从官方网站获取最新版本。步骤:1.下载FastQC压缩包:从官方网站获取下载链接,使用wget命令下载。2.解压缩:使用unzip解压。3.赋予执行权限:进入解压后的目录,给fastqc文件添加可执行权限。4.添加环境变量:将FastQC所在目录添加到PATH环境变量中,以便在任何目录下运行fastqc命令。5.验证安装:运行fastqc-h或fastqc--version查看帮助信息或版本号。注意:安装前确保系统已安装Java,因为FastQC是基于Java的工具。下面详细说明:</think>### FastQC工具下载与安装指南 FastQC是一款用于高通量测序数据质量控制的工具,以下是详细的安装步骤(基于Linux系统): #### 1. **安装Java环境** FastQC需要Java运行环境,先检查并安装Java: ```bash # 检查Java是否安装 java -version # 若未安装,执行(Ubuntu示例) sudo apt update sudo apt install openjdk-11-jre ``` #### 2. **下载FastQC压缩包** 通过wget下载官方最新版(当前v0.12.1): ```bash wget https://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.12.1.zip ``` > 注:其他版本可在[官网](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/)查看[^1][^2] #### 3. **解压文件** ```bash unzip fastqc_v0.12.1.zip cd FastQC/ ``` #### 4. **赋予执行权限** ```bash chmod 755 fastqc # 修改权限为可执行 ``` #### 5. **添加环境变量** ```bash # 永久添加PATH echo 'export PATH=$PATH:'$(pwd) >> ~/.bashrc source ~/.bashrc # 临时添加PATH(当前会话有效) export PATH=$PATH:$(pwd) ``` #### 6. **验证安装** ```bash fastqc --version # 应显示版本号 fastqc -h # 查看帮助文档 ``` #### 7. **测试运行** ```bash fastqc sample.fastq -o output_dir/ # 对测试数据进行分析 ``` > **常见问题解决** > - **权限错误**:确保执行`chmod 755 fastqc`[^3] > - **Java报错**:检查`JAVA_HOME`环境变量配置 > - **命令未找到**:确认PATH是否包含FastQC目录[^2]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值