/*****************************************************************************/ // Copyright (c) Illumina 2008 // Author: Richard Shaw // // This software is covered by the "Illumina Genome Analyzer Software // License Agreement" and the "Illumina Source Code License Agreement", // and certain third party copyright/licenses, and any user of this // source file is bound by the terms therein (see accompanying files // Illumina_Genome_Analyzer_Software_License_Agreement.pdf and // Illumina_Source_Code_License_Agreement.pdf and third party // copyright/license notices). /*****************************************************************************/ #include "statistics/Read_Align_Info.h" /*****************************************************************************/ const char Read_Align_Info::our_del_ch = 'X'; /*****************************************************************************/ Read_Align_Info::Read_Align_Info() : my_lane_num(0), my_tile_num(0), my_read_num(1), my_passed_filter_flag(true), my_num_insertions(0), my_num_deletions(0), my_aligned_flag(true), my_align_score(0) { ; } /*****************************************************************************/