美文网首页
fastp数据过滤

fastp数据过滤

作者: 胡童远 | 来源:发表于2021-08-16 11:10 被阅读0次

github:https://github.com/OpenGene/fastp#all-options

fastp一些功能:

下载,安装:

# note: the fastp version in bioconda may be not the latest
conda install -c bioconda fastp

使用:

# single end
fastp -i in.fq -o out.fq
# paired end
fastp -i in.R1.fq.gz -I in.R2.fq.gz -o out.R1.fq.gz -O out.R2.fq.gz

结果报告:

http://opengene.org/fastp/fastp.html

相关文章

  • 2019-02-19

    fastp—数据过滤&质控 一、fastp的安装及使用 1)conda安装:conda install fastp...

  • fastp数据过滤

    github:https://github.com/OpenGene/fastp#all-options[http...

  • Fastp:质控 +过滤数据

    常规的质控和过滤数据是fastqc+trimmomatic,据说fastp更快,而且一次完成质控过滤和出图。fas...

  • fastp:数据质控 + 过滤

    之前都是用 fastqc+trimmomatic进行数据质控和过滤,但是fastp更方便也更快,而且可以一次完成质...

  • 转录组数据分析

    转录组分析基本流程 总体流程 测序的原始数据下载-----数据的过滤和质控(fastp)----下载参考基因组序列...

  • 转录组直播学习笔记:第二天

    数据过滤与质控软件:fastp目的:对测序序列的质量检查 安装软件 安装miniconda, 详见Minicond...

  • fastp质控小试

    1.听说fastp做质控不错哦: ref1:fastp: 极速全能的FASTQ文件自动质控+过滤+校正+预处理软件...

  • !RNAseq:上游

    fastp:质控、过滤、去接头(新集群base) ####安装 conda install -c bioconda...

  • 2022-03-10使用fastp进行数据过滤的参数说明

    fastp是啥? 它是一个针对FsastQ文件的数据过滤软件,“快”所以取名有fast,这个软件是用C++语言写的...

  • NGS 数据质控软件—fastp

    陈实富博士编写的 fastp 软件能实现 FASTQ 数据自动化过滤、剪裁、错误校正等功能,因其多样的功能和高效的...

网友评论

      本文标题:fastp数据过滤

      本文链接:https://www.haomeiwen.com/subject/qrjmbltx.html