FastQ {SMRUCC.genomics.SequenceModel.FQ} .NET clr documentation

FastQ

Description

FASTQ format is a text-based format for storing both a biological sequence (usually nucleotide sequence) and its corresponding quality scores. Both the sequence letter and quality score are each encoded with a single ASCII character for brevity. It was originally developed at the Wellcome Trust Sanger Institute to bundle a FASTA sequence and its quality data, but has recently become the de facto standard for storing the output of high-throughput sequencing instruments such as the Illumina Genome Analyzer.

There is no standard file extension for a FASTQ file, but .fq and .fastq, are commonly used. (http://en.wikipedia.org/wiki/FASTQ_format)

A FASTQ file normally uses four lines per sequence.

一条FastQ序列文件通常使用4行代表一条序列数据:

Declare

            
# namespace SMRUCC.genomics.SequenceModel.FQ
export class FastQ extends ISequenceModel {
   Headers: string;
   IsProtSource: boolean;
   Length: integer;
   # @M:SMRUCC.genomics.SequenceModel.FQ.FastQ.GetQualityOrder(System.Char) for each char in this string.
   Quality: string;
   # 第一行的摘要描述信息
   SEQ_ID: string;
   # the sequence description information text, but usually be string +.
   SEQ_Info: string;
   SequenceData: string;
}

        

.NET clr type reference tree

  1. this class extends from ISequenceModel class: ISequenceModel

[Package {$package} version {$version} Index]