FASTQ files 科普信息搬运

作者: 代号北极能 | 来源:发表于2019-06-28 16:56 被阅读0次

    I am an idiot in the biology field, therefore the common sense for the professional guys might seems like a seald book for me. Therefore, the basic information is needed for myself. 

    Again, this information is directly copied from the usearch websit. 


    FASTQ files are text files containing sequence data with a quality (Phred) score for each base, represented as an ASCII character. The quality score is an integer (Q) which is typically in the range 2 - 40, but higher and lower values are sometimes used. In particular, versions 1.8 and later of the Illumina platform generate reads with Q scores up to 41.

    Unfortunately, the FASTQ format is not standardized. There are several variants in common use, and it is not possible to distinguish them automatically with high reliability. The fastq_chars command can be used to guess the format of an unknown file. See FASTQ format options.

    FASTQ file This is how my data look like 

    FASTQ read with 50 base calls in Illumina format (ASCII_BASE=33).

    There are always four lines per read. The first line starts with '@', followed by the label.

    The third line starts with '+'. In some variants, the '+' line contains a second copy of the label.The fourth line contains the Q scores represented as ASCII characters.


    FASTQ format parameters


    FASTQ formats

    Unfortunately, the FASTQ format is not standardized. There are several variants in common use, and it is not possible to distinguish them automatically with high reliability. The main parameters are the minimum and maximum Q scores and the ASCII_BASE constant.

    The fastq_chars command can be used to guess the format of a FASTQ file.

    ASCII coding of Q scores

    The Q value is coded as a printable ASCII character using Q = ASCII_CODE - ASCII_BASE. Here, ASCII_CODE is the ASCII code for the character and ASCII_BASE is a constant. The original Sanger FASTQ format used ASCII_BASE = 33 so for example if the quality score is coded as 'C' then Q = ASCII_CODE('C') - 33 = 67 - 32 = 35. See here for tables mapping ASCII characters to Q scores for common variants of FASTQ.


    FASTA format 维基百科

    In bioinformatics and biochemistry, the FASTA format is a text-based format for representing either nucleotide sequences or amino acid (protein) sequences, in which nucleotides or amino acids are represented using single-letter codes. The format also allows for sequence names and comments to precede the sequences. The format originates from the FASTA software package, but has now become a near universal standard in the field of bioinformatics.[4]

    The simplicity of FASTA format makes it easy to manipulate and parse sequences using text-processing tools and scripting languages like the R programming languagePythonRuby, and Perl.

    相关文章

      网友评论

        本文标题:FASTQ files 科普信息搬运

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