SamInterface.h

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 SamStatus::Status readHeader(IFILE filePtr, SamFileHeader& header);
00032    
00033     // Writes the specified header into the specified SAM file.
00034     virtual SamStatus::Status writeHeader(IFILE filePtr, 
00035                                           SamFileHeader& header);
00036    
00037     // Reads the next record from the specified SAM file and stores it in
00038     // the passed in record.
00039     virtual void readRecord(IFILE filePtr, 
00040                             SamFileHeader& header, 
00041                             SamRecord& record, 
00042                             SamStatus& samStatus);
00043    
00044     // Writes the specified record into the specified SAM file.
00045     virtual SamStatus::Status writeRecord(IFILE filePtr,
00046                                           SamFileHeader& header, 
00047                                           SamRecord& record);
00048    
00049 private:
00050     void ParseHeaderLine(StringIntHash & tags, StringArray & values);
00051     String      buffer;
00052     StringArray tokens;
00053 
00054     // Store the first record as it is read when trying to read the
00055     // header so it can be returned when a record is read.
00056     // Clear after it has been processed.
00057     String myFirstRecord;
00058 };
00059 
00060 #endif
00061 
Generated on Wed Nov 17 15:38:27 2010 for StatGen Software by  doxygen 1.6.3