#include <BALL/KERNEL/nucleicAcid.h>
Public Types | |
Enums | |
enum | Property { NUMBER_OF_PROPERTIES = Molecule::NUMBER_OF_PROPERTIES } |
Public Member Functions | |
bool | operator== (const NucleicAcid &nucleic_acid) const |
bool | operator!= (const NucleicAcid &nucleic_acid) const |
Constructors and Destructors | |
NucleicAcid () | |
NucleicAcid (const NucleicAcid &nucleic_acid, bool deep=true) | |
NucleicAcid (const String &name, const String &id=BALL_NUCLEICACID_DEFAULT_ID) | |
virtual | ~NucleicAcid () |
virtual void | clear () |
virtual void | destroy () |
Persistence | |
void | persistentWrite (PersistenceManager &pm, const char *name=0) const |
void | persistentRead (PersistenceManager &pm) |
Assignment Methods | |
void | set (const NucleicAcid &nucleic_acid, bool deep=true) |
NucleicAcid & | operator= (const NucleicAcid &nucleic_acid) |
void | get (NucleicAcid &nucleic_acid, bool deep=true) const |
void | swap (NucleicAcid &nucleic_acid) |
Accessors | |
Nucleotide * | getNucleotide (Position position) |
const Nucleotide * | getNucleotide (Position position) const |
Nucleotide * | get3Prime () |
const Nucleotide * | get3Prime () const |
Nucleotide * | get5Prime () |
const Nucleotide * | get5Prime () const |
void | setID (const String &id) |
const String & | getID () const |
Size | countNucleotides () const |
Debugging and Diagnostics | |
virtual bool | isValid () const |
virtual void | dump (std::ostream &s=std::cout, Size depth=0) const |
Private Attributes | |
String | id_ |
Nucleic acid class.
Definition at line 27 of file nucleicAcid.h.
BALL::NucleicAcid::NucleicAcid | ( | ) |
Default constructor.
BALL::NucleicAcid::NucleicAcid | ( | const NucleicAcid & | nucleic_acid, | |
bool | deep = true | |||
) |
Copy constructor.
BALL::NucleicAcid::NucleicAcid | ( | const String & | name, | |
const String & | id = BALL_NUCLEICACID_DEFAULT_ID | |||
) |
Detailed constructor.
virtual BALL::NucleicAcid::~NucleicAcid | ( | ) | [virtual] |
Destructor.
virtual void BALL::NucleicAcid::clear | ( | ) | [virtual] |
Clear the contents of the nucleic acid.
Reimplemented from BALL::AtomContainer.
Size BALL::NucleicAcid::countNucleotides | ( | ) | const |
Return the number of Nucleotides contained in this instance NucleicAcid.
virtual void BALL::NucleicAcid::destroy | ( | ) | [virtual] |
Clear the contents of the nucleic acid and remove it from parent kernel objects.
Reimplemented from BALL::AtomContainer.
virtual void BALL::NucleicAcid::dump | ( | std::ostream & | s = std::cout , |
|
Size | depth = 0 | |||
) | const [virtual] |
Internal state dump. Dump the current internal state of this instance to the output ostream s with dumping depth depth .
s | - output stream where to output the internal state of this instance | |
depth | - the dumping depth |
Reimplemented from BALL::Molecule.
void BALL::NucleicAcid::get | ( | NucleicAcid & | nucleic_acid, | |
bool | deep = true | |||
) | const |
Assign a NucleicAcid object from another.
const Nucleotide* BALL::NucleicAcid::get3Prime | ( | ) | const |
Retrieve a const pointer to the nucleotide at the 3'-end of this instance. The pointer is 0 if this instance does not have a Nucleotide.
Nucleotide* BALL::NucleicAcid::get3Prime | ( | ) |
Retrieve a pointer to the Nucleotide at the 3'-end of this instance. The pointer is 0 if this instance does not have a Nucleotide.
const Nucleotide* BALL::NucleicAcid::get5Prime | ( | ) | const |
Retrieve a const pointer to the Nucleotide at the 5'-end of this instance. The pointer is 0 if this instance does not have a Nucleotide.
Nucleotide* BALL::NucleicAcid::get5Prime | ( | ) |
Retrieve a pointer to the Nucleotide at the 5'-end of this instance. The pointer is 0 if this instance does not have a Nucleotide.
const String& BALL::NucleicAcid::getID | ( | ) | const |
Retrieve the ID of the NucleicAcid.
const Nucleotide* BALL::NucleicAcid::getNucleotide | ( | Position | position | ) | const |
Get a pointer to a child Nucleotide at a given position. The pointer is 0 if this instance does not have a Nucleotide at the given position.
position | the position of the child Nucleotide |
Nucleotide* BALL::NucleicAcid::getNucleotide | ( | Position | position | ) |
Get a pointer to a child Nucleotide at a given position. The pointer is 0 if this instance does not have a Nucleotide at the given position.
position | the position of the child Nucleotide |
virtual bool BALL::NucleicAcid::isValid | ( | ) | const [virtual] |
Internal state and consistency self-validation.
true
if the internal state of this instance atom is correct (self-validated) and consistent, false
otherwise Reimplemented from BALL::AtomContainer.
bool BALL::NucleicAcid::operator!= | ( | const NucleicAcid & | nucleic_acid | ) | const |
Inequality operator
NucleicAcid& BALL::NucleicAcid::operator= | ( | const NucleicAcid & | nucleic_acid | ) |
Assignment operator.
bool BALL::NucleicAcid::operator== | ( | const NucleicAcid & | nucleic_acid | ) | const |
Equality operator. Two nucleic acids are equal if they have the same handle.
void BALL::NucleicAcid::persistentRead | ( | PersistenceManager & | pm | ) | [virtual] |
Reads a NucleicAcid object from a persistent stream.
pm | the persistence manager |
Reimplemented from BALL::Molecule.
void BALL::NucleicAcid::persistentWrite | ( | PersistenceManager & | pm, | |
const char * | name = 0 | |||
) | const [virtual] |
Writes a NucleicAcid object to a persistent stream.
pm | the persistence manager |
Reimplemented from BALL::Molecule.
void BALL::NucleicAcid::set | ( | const NucleicAcid & | nucleic_acid, | |
bool | deep = true | |||
) |
Assignment with cloning facility. The assignment is either deep or shallow (default).
nucleic_acid | the NucleicAcid to be copied (cloned) | |
deep | make a deep (=true ) or shallow (=false ) copy |
void BALL::NucleicAcid::setID | ( | const String & | id | ) |
Set the ID of the NucleicAcid.
id | the new ID |
void BALL::NucleicAcid::swap | ( | NucleicAcid & | nucleic_acid | ) |
Swap the contents of two NucleicAcid objects.
String BALL::NucleicAcid::id_ [private] |
Definition at line 231 of file nucleicAcid.h.