zoukankan      html  css  js  c++  java
  • FASTQ format

    FASTQ format

    每个FASTQ文件中每个序列通常有四行信息:
    1: 以 '@' 字符开头,后面紧接着的是序列标识符和可选字段的描述(类似FASTA title line).
    2: 序列
    3: 以 '+' 字符开头, 后面紧接着的是可选字段的描述性信息
    4: 第二行序列的质量信息

    Illumina sequence identifiers

    @HWUSI-EAS100R:6:73:941:1973#0/1

    sequence identifiers description
    HWUSI-EAS100R the unique instrument name
    6 flowcell lane
    73 tile number within the flowcell lane
    941 'x'-coordinate of the cluster within the tile
    1973 'y'-coordinate of the cluster within the tile
    #0 index number for a multiplexed sample (0 for no indexing)
    /1 the member of a pair, /1 or /2 (paired-end or mate-pair reads only)

    Versions of the Illumina pipeline since 1.4 appear to use #NNNNNN instead of #0 for the multiplex ID, where NNNNNN is the sequence of the multiplex tag.

    With Casava 1.8 the format of the '@' line has changed:

    @EAS139:136:FC706VJ:2:2104:15343:197393 1:Y:18:ATCACG

    sequence identifiers description
    EAS139 the unique instrument name
    136 the run id
    FC706VJ the flowcell id
    2 flowcell lane
    2104 tile number within the flowcell lane
    15343 'x'-coordinate of the cluster within the tile
    197393 'y'-coordinate of the cluster within the tile
    1 the member of a pair, 1 or 2 (paired-end or mate-pair reads only)
    Y Y if the read is filtered, N otherwise
    18 0 when none of the control bits are on, otherwise it is an even number(偶数)
    ATCACG index sequence

    将FASTQ 转换为 FASTA 格式:

    zcat input_file.fastq.gz | awk 'NR%4==1{printf ">%s
    ", substr($0,2)}NR%4==2{print}' > output_file.fa
    
    
    #printf 命令的语法:format-string 为格式控制字符串,arguments 为参数列表。
    printf  format-string  [arguments...]
    
    
    #substr(s,p) 返回字符串s中从p开始的后缀部分
    #substr(s,p,n) 返回字符串s中从p开始长度为n的后缀部分。
    
  • 相关阅读:
    第七章 第一月:开始 第二周:链接建设(2)
    基础篇 第四节 项目进度计划编辑 之 日历
    VSS2005 使用说明
    删除存储过程
    基础篇 第四节 项目进度计划编辑 之 任务关联性设定
    转载: input 的css技巧
    js: js判断回车键
    一个简单邮件发送类
    转载: php发送邮件原理
    css 小经验: 重构css的优化与技巧
  • 原文地址:https://www.cnblogs.com/adawong/p/8032871.html
Copyright © 2011-2022 走看看