C++ Class: FastQFile

From Genome Analysis Wiki
Revision as of 17:40, 6 April 2010 by Mktrost (talk | contribs) (Created page with '== Reading/Validating FastQ Files In Your Program == The '''FastQFile''' class allows a user to easily read/validate a fastq file. === Class Methods === {| style="margin: 1em 1…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Reading/Validating FastQ Files In Your Program

The FastQFile class allows a user to easily read/validate a fastq file.

Class Methods

Method Name Description
FastQFile::FastQFile(int minReadLength, int maxReportedErrors)

Class Enums

enum FastQStatus
Enum Value Description
FASTQ_SUCCESS method finished successfully.
FASTQ_FAILURE method failed to complete successfully.
FASTQ_INVALID sequence was invalid.

Usage Example