libStatGen Software
1
|
00001 /* 00002 * Copyright (C) 2010 Regents of the University of Michigan 00003 * 00004 * This program is free software: you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation, either version 3 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00016 */ 00017 00018 #ifndef __SAM_INTERFACE_H__ 00019 #define __SAM_INTERFACE_H__ 00020 00021 #include "GenericSamInterface.h" 00022 00023 class SamInterface : public GenericSamInterface 00024 { 00025 public: 00026 SamInterface(); 00027 ~SamInterface(); 00028 00029 // Reads the header section from the specified SAM file and stores it in 00030 // the passed in header. 00031 virtual bool readHeader(IFILE filePtr, SamFileHeader& header, 00032 SamStatus& status); 00033 00034 // Writes the specified header into the specified SAM file. 00035 virtual bool writeHeader(IFILE filePtr, SamFileHeader& header, 00036 SamStatus& status); 00037 00038 // Reads the next record from the specified SAM file and stores it in 00039 // the passed in record. 00040 virtual void readRecord(IFILE filePtr, 00041 SamFileHeader& header, 00042 SamRecord& record, 00043 SamStatus& samStatus); 00044 00045 // Writes the specified record into the specified SAM file. 00046 virtual SamStatus::Status writeRecord(IFILE filePtr, 00047 SamFileHeader& header, 00048 SamRecord& record, 00049 SamRecord::SequenceTranslation translation); 00050 00051 private: 00052 void ParseHeaderLine(StringIntHash & tags, StringArray & values); 00053 String buffer; 00054 StringArray tokens; 00055 00056 // Store the first record as it is read when trying to read the 00057 // header so it can be returned when a record is read. 00058 // Clear after it has been processed. 00059 String myFirstRecord; 00060 }; 00061 00062 #endif 00063