Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

gnSEQSource.h

Go to the documentation of this file.
00001 /////////////////////////////////////////////////////////////////////////////
00002 // File:            gnSEQSource.h
00003 // Purpose:         Implements gnBaseSource for .SEQ files
00004 // Description:     
00005 // Changes:        
00006 // Version:         libGenome 0.5.1 
00007 // Author:          Aaron Darling 
00008 // Modified by:     
00009 // Copyright:       (c) Aaron Darling 
00010 // Licenses:        See COPYING file for details 
00011 /////////////////////////////////////////////////////////////////////////////
00012 
00013 #ifndef _gnSEQSource_h_
00014 #define _gnSEQSource_h_
00015 
00016 #include "gn/gnDefs.h"
00017 
00018 #include <string>
00019 #include <fstream>
00020 #include <vector>
00021 #include "gn/gnFileSource.h"
00022 #include "gn/gnFileContig.h"
00023 #include "gn/gnSourceSpec.h"
00024 #include "gn/gnSequence.h"
00025 
00026 /**
00027  *      gnSEQSource is a SEQ file reader.
00028  * This class reads and writes the DNAStar SEQ file format.
00029  * gnSEQSource is used by gnSourceFactory to read files and should only be used 
00030  * directly.when writing out files in SEQ file format by calling
00031  * gnSEQSource::Write( mySpec, "C:\\mySeqFile.seq");
00032  */
00033 
00034 class GNDLLEXPORT gnSEQSource : public gnFileSource
00035 {
00036 public:
00037         /**
00038          * Empty Constructor, does nothing.
00039          */
00040         gnSEQSource();  
00041         /**
00042          * Clone Constructor copies the specified gnSEQSource.
00043          * @param s The gnSEQSource to copy.
00044          */
00045         gnSEQSource( const gnSEQSource& s );
00046         /**
00047          * Destructor, frees memory.
00048          */
00049         ~gnSEQSource();
00050         /**
00051          * Returns an exact copy of this class.
00052          */
00053         gnSEQSource* Clone() const;
00054 // Contig Access methods        
00055         uint32 GetContigListLength() const;
00056         boolean HasContig( const string& name ) const;
00057         uint32 GetContigID( const string& name ) const;
00058         string GetContigName( const uint32 i ) const;
00059         gnSeqI GetContigSeqLength( const uint32 i ) const;
00060 
00061         boolean SeqRead( const gnSeqI start, char* buf, uint32& bufLen, const uint32 contigI=ALL_CONTIGS );
00062 
00063         /**
00064          * Writes the specified gnSequence to a .SEQ file named "filename".
00065          * @param sequence The gnSequence to write out.
00066          * @param filename The name of the file to write.
00067          * @return True if successful, false otherwise.
00068          */
00069         static boolean Write(gnSequence& sequence, const string& filename);
00070         /**
00071          * Writes the specified source to a .SEQ file named "filename".
00072          * @param source The source to write out.
00073          * @param filename The name of the file to write.
00074          * @return True if successful, false otherwise.
00075          */
00076         static boolean Write(gnBaseSource *source, const string& filename);
00077         /**
00078          * Writes the given spec to a .SEQ file named "filename".
00079          * @param spec The spec to write out.
00080          * @param filename The name of the file to write.
00081          * @return True if successful, false otherwise.
00082          */
00083         static boolean Write(gnGenomeSpec *spec, const string& filename);
00084         gnGenomeSpec *GetSpec() const;
00085         gnFileContig* GetFileContig( const uint32 contigI ) const;
00086 private:
00087         boolean SeqSeek( const gnSeqI start, const uint32& contigI, uint64& startPos, uint64& readableBytes );
00088         boolean SeqStartPos( const gnSeqI start, gnFileContig& contig, uint64& startPos, uint64& readableBytes );
00089         boolean ParseStream( istream& fin );
00090 
00091         static string& Filler(uint32 length);
00092         static void FormatString(string& data, uint32 offset, uint32 width);
00093         static void BaseCount(const string& bases, gnSeqI& a_count, gnSeqI& c_count, gnSeqI& g_count, gnSeqI& t_count, gnSeqI& other_count);
00094 //      gnSeqI m_seqLength;
00095         
00096         gnGenomeSpec *m_spec;
00097         vector< gnFileContig* > m_contigList;   
00098 };// class gnSEQSource
00099 // Clone        
00100 inline
00101 gnSEQSource* gnSEQSource::Clone() const
00102 {
00103         return new gnSEQSource( *this );
00104 }
00105 // Contig Access methods        
00106 inline
00107 uint32 gnSEQSource::GetContigListLength() const
00108 {
00109         return m_contigList.size();
00110 }
00111 inline
00112 boolean gnSEQSource::Write(gnSequence& sequence, const string& filename){
00113         return Write(sequence.GetSpec(), filename);
00114 }
00115 inline
00116 boolean gnSEQSource::Write(gnBaseSource *source, const string& filename){
00117         return Write(source->GetSpec(), filename);
00118 }
00119 inline
00120 gnGenomeSpec *gnSEQSource::GetSpec() const{
00121         return m_spec->Clone();
00122 }
00123 
00124 #endif
00125         // _gnSEQSource_h_
00126         

Generated on Mon Feb 3 02:34:41 2003 for libGenome by doxygen1.3-rc3