#include <gnContigSpec.h>
Inheritance diagram for gnContigSpec:
Public Member Functions | |
gnContigSpec () | |
virtual | ~gnContigSpec () |
Destructor, frees memory. | |
virtual gnContigSpec * | Clone () const=0 |
virtual gnContigSpec * | CloneRange (const uint32 startI, const uint32 len) const=0 |
virtual string | GetSourceName () const |
Get the name of the source associated with this spec. | |
virtual gnSeqI | GetStart () const |
Get the base pair index where this contig starts inside of the sequence data. | |
virtual gnSeqI | GetLength () const |
Get the length of this contig inside of the sequence data. | |
virtual gnSeqI | GetSourceLength () const=0 |
Get the length of the source for this spec. | |
virtual uint32 | GetSourceContigIndex () const |
Returns this contig's index in its source sequence. | |
virtual void | SetSourceName (const string &sourceName) |
Sets the name of the source associated with this contig. | |
virtual void | SetStart (const gnSeqI start) |
Sets the starting base pair to read from in the contig's sequence. | |
virtual void | SetLength (const gnSeqI len) |
Sets the length of reads into this sequence. | |
virtual void | SetSourceContigIndex (const uint32 contigI) |
Sets this contig's index in its source sequence. | |
virtual void | SetReverseComplement (const boolean value) |
Sets the reverse complement bit for this contig. | |
virtual void | CropStart (gnSeqI cropLen) |
Crop the first cropLen bases from the sequence. | |
virtual void | CropEnd (gnSeqI cropLen) |
Crop the last cropLen bases from the sequence. | |
virtual boolean | SeqRead (const gnSeqI start, gnSeqC *buf, uint32 &bufLen, const uint32 contigI) const |
Reads sequence data from this spec. | |
virtual void | Clear () |
Clears all data from this spec. | |
virtual string | GetName () const |
Get the name of the contig associated with this spec. | |
virtual void | SetName (const string &name) |
Sets the name for this contig. | |
virtual boolean | IsReverseComplement () const |
Returns true if this spec is read reverse complement. | |
virtual boolean | IsCircular () const |
Returns true if this spec's sequence is circular. | |
virtual void | SetCircular (const boolean value) |
Sets whether this spec should be read circular. | |
Protected Member Functions | |
virtual boolean | Read (const gnSeqI start, gnSeqC *buf, uint32 &bufLen) const=0 |
all derived classes must implement this! it simply reads the specified bases into buf, disregarding circularity and reverse complement. | |
Protected Attributes | |
gnSeqI | m_start |
gnSeqI | m_length |
uint32 | m_SourceContigIndex |
boolean | m_reverseComplement |
boolean | m_circular |
string | m_name |
string | m_sourceName |
Definition at line 27 of file gnContigSpec.h.
|
Definition at line 30 of file gnContigSpec.h. |
|
Destructor, frees memory.
Definition at line 34 of file gnContigSpec.h. |
|
Clears all data from this spec.
Reimplemented from gnBaseSpec. Reimplemented in gnSourceSpec, and gnStringSpec. Definition at line 60 of file gnContigSpec.cpp. References gnBaseSpec::Clear(), m_length, m_SourceContigIndex, and m_start. Referenced by gnStringSpec::Clear(), gnSourceSpec::Clear(), and gnStringSpec::gnStringSpec(). |
|
Implements gnBaseSpec. Implemented in gnSourceSpec, and gnStringSpec. Referenced by gnSequence::gnSequence(). |
|
Implements gnBaseSpec. Referenced by gnFragmentSpec::CloneRange(). |
|
Crop the last cropLen bases from the sequence. CropEnd will delete features and headers associated with the cropped bases.
Implements gnBaseSpec. Definition at line 22 of file gnContigSpec.cpp. References m_length. |
|
Crop the first cropLen bases from the sequence. CropStart will delete features and headers associated with the cropped bases.
Implements gnBaseSpec. Definition at line 16 of file gnContigSpec.cpp. References GetSourceLength(), m_length, gnBaseSpec::m_reverseComplement, and m_start. |
|
Get the length of this contig inside of the sequence data.
Implements gnBaseSpec. Definition at line 133 of file gnContigSpec.h. References gnSeqI, and m_length. Referenced by gnFragmentSpec::CloneRange(), gnSEQSource::ParseStream(), and gnGBKSource::ParseStream(). |
|
Get the name of the contig associated with this spec.
Definition at line 116 of file gnBaseSpec.h. References gnBaseSpec::m_name. Referenced by gnSequence::contigName(), gnDNXSource::GetContigID(), gnDNXSource::GetContigName(), gnMultiSpec::GetSpecIndexByName(), gnDNXSource::HasContig(), gnGBKSource::Write(), and gnDNXSource::Write(). |
|
Returns this contig's index in its source sequence.
Definition at line 149 of file gnContigSpec.h. References m_SourceContigIndex, and uint32. Referenced by gnSequence::globalToSource(). |
|
Get the length of the source for this spec.
Implemented in gnSourceSpec, and gnStringSpec. Referenced by CropStart(), gnSequence::globalToSource(), SeqRead(), and SetReverseComplement(). |
|
Get the name of the source associated with this spec.
Definition at line 119 of file gnContigSpec.h. References gnBaseSpec::m_sourceName. |
|
Get the base pair index where this contig starts inside of the sequence data.
Definition at line 128 of file gnContigSpec.h. References gnSeqI, and m_start. Referenced by gnSequence::globalToSource(). |
|
Returns true if this spec's sequence is circular.
Definition at line 128 of file gnBaseSpec.h. References gnBaseSpec::m_circular. Referenced by gnSequence::isCircular(), and gnGBKSource::Write(). |
|
Returns true if this spec is read reverse complement.
Definition at line 124 of file gnBaseSpec.h. References gnBaseSpec::m_reverseComplement. Referenced by gnSequence::globalToSource(), gnSequence::isReverseComplement(), gnGenomeSpec::SetReverseComplement(), and gnFragmentSpec::SetReverseComplement(). |
|
all derived classes must implement this! it simply reads the specified bases into buf, disregarding circularity and reverse complement.
Implemented in gnSourceSpec, and gnStringSpec. Referenced by SeqRead(). |
|
Reads sequence data from this spec. SeqRead will attempt to read "bufLen" base pairs starting at "start", an offset into the sequence. Reading inside a specific contig can be accomplished by supplying the "contigI" parameter with a valid contig index. SeqRead stores the sequence data in "buf" and returns the actual number of bases read in "bufLen". SeqRead will return false if a serious error occurs.
Implements gnBaseSpec. Definition at line 34 of file gnContigSpec.cpp. References gnFilter::DNAComplementFilter(), GetSourceLength(), gnSeqI, m_length, gnBaseSpec::m_reverseComplement, m_start, Read(), and gnFilter::ReverseFilter(). |
|
Sets whether this spec should be read circular. If circular is set, reads beyond the end of this spec will pick up at the beginning and read up to the start index.
Definition at line 132 of file gnBaseSpec.h. References gnBaseSpec::m_circular. Referenced by gnSEQSource::ParseStream(), gnGBKSource::ParseStream(), and gnSequence::setCircular(). |
|
Sets the length of reads into this sequence. This does not affect the actual sequence data but only how much of it is used in this contig.
Definition at line 144 of file gnContigSpec.h. References m_length. Referenced by gnSEQSource::ParseStream(), and gnGBKSource::ParseStream(). |
|
Sets the name for this contig.
Definition at line 120 of file gnBaseSpec.h. References gnBaseSpec::m_name. Referenced by gnFASSource::GetSpec(), gnSEQSource::ParseStream(), gnGBKSource::ParseStream(), gnDNXSource::ParseStream(), and gnSequence::setContigName(). |
|
Sets the reverse complement bit for this contig. This routine will translate the start index to the reverse base pair.
Implements gnBaseSpec. Definition at line 26 of file gnContigSpec.cpp. References GetSourceLength(), m_length, gnBaseSpec::m_reverseComplement, and m_start. Referenced by gnFragmentSpec::SetReverseComplement(). |
|
Sets this contig's index in its source sequence.
Definition at line 153 of file gnContigSpec.h. References m_SourceContigIndex. |
|
Sets the name of the source associated with this contig.
Definition at line 123 of file gnContigSpec.h. References gnBaseSpec::m_sourceName. Referenced by gnFASSource::GetSpec(), gnSEQSource::ParseStream(), gnRAWSource::ParseStream(), gnGBKSource::ParseStream(), and gnDNXSource::ParseStream(). |
|
Sets the starting base pair to read from in the contig's sequence. This does not affect the actual sequence data but only where to begin using it in this contig.
Definition at line 139 of file gnContigSpec.h. References m_start. |
|
Definition at line 108 of file gnBaseSpec.h. Referenced by gnBaseSpec::Clear(), gnStringSpec::CloneRange(), gnSourceSpec::CloneRange(), gnFragmentSpec::gnFragmentSpec(), gnGenomeSpec::gnGenomeSpec(), gnSourceSpec::gnSourceSpec(), gnStringSpec::gnStringSpec(), gnBaseSpec::IsCircular(), and gnBaseSpec::SetCircular(). |
|
Definition at line 104 of file gnContigSpec.h. Referenced by Clear(), gnStringSpec::CloneRange(), gnSourceSpec::CloneRange(), CropEnd(), CropStart(), GetLength(), gnSourceSpec::gnSourceSpec(), gnStringSpec::gnStringSpec(), SeqRead(), SetLength(), and SetReverseComplement(). |
|
Definition at line 110 of file gnBaseSpec.h. Referenced by gnBaseSpec::Clear(), gnStringSpec::CloneRange(), gnSourceSpec::CloneRange(), gnBaseSpec::GetName(), gnFragmentSpec::gnFragmentSpec(), gnGenomeSpec::gnGenomeSpec(), gnSourceSpec::gnSourceSpec(), gnStringSpec::gnStringSpec(), and gnBaseSpec::SetName(). |
|
|
Definition at line 105 of file gnContigSpec.h. Referenced by gnSourceSpec::Clear(), Clear(), gnStringSpec::CloneRange(), gnSourceSpec::CloneRange(), GetSourceContigIndex(), gnSourceSpec::gnSourceSpec(), gnStringSpec::gnStringSpec(), and SetSourceContigIndex(). |
|
Reimplemented in gnMultiSpec. Definition at line 111 of file gnBaseSpec.h. Referenced by gnBaseSpec::Clear(), gnStringSpec::CloneRange(), gnSourceSpec::CloneRange(), GetSourceName(), gnSourceSpec::gnSourceSpec(), gnStringSpec::gnStringSpec(), and SetSourceName(). |
|
Definition at line 103 of file gnContigSpec.h. Referenced by Clear(), gnStringSpec::CloneRange(), gnSourceSpec::CloneRange(), CropStart(), GetStart(), gnSourceSpec::gnSourceSpec(), gnStringSpec::gnStringSpec(), SeqRead(), SetReverseComplement(), and SetStart(). |