1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#include <BALL/KERNEL/nucleotide.h>
#include <BALL/KERNEL/nucleicAcid.h>
#include <BALL/COMMON/exception.h>
using namespace std;
namespace BALL
{
Nucleotide::Nucleotide()
: Fragment(),
id_(BALL_NUCLEOTIDE_DEFAULT_ID),
insertion_code_(BALL_NUCLEOTIDE_DEFAULT_INSERTION_CODE)
{
}
Nucleotide::Nucleotide(const Nucleotide& nucleotide, bool deep)
: Fragment(nucleotide, deep),
id_(nucleotide.id_),
insertion_code_(nucleotide.insertion_code_)
{
}
Nucleotide::Nucleotide(const String& name, const String& id, char insertion_code)
: Fragment(name),
id_(id),
insertion_code_(insertion_code)
{
}
Nucleotide::~Nucleotide()
{
destroy();
}
void Nucleotide::clear()
{
Fragment::clear();
id_ = BALL_NUCLEOTIDE_DEFAULT_ID;
insertion_code_ = BALL_NUCLEOTIDE_DEFAULT_INSERTION_CODE;
}
void Nucleotide::destroy()
{
Fragment::destroy();
id_ = BALL_NUCLEOTIDE_DEFAULT_ID;
insertion_code_ = BALL_NUCLEOTIDE_DEFAULT_INSERTION_CODE;
}
void Nucleotide::persistentWrite(PersistenceManager& pm, const char* name) const
{
pm.writeObjectHeader(this, name);
Fragment::persistentWrite(pm);
pm.writePrimitive(id_, "id_");
pm.writePrimitive(insertion_code_, "insertion_code_");
pm.writeObjectTrailer(name);
}
void Nucleotide::persistentRead(PersistenceManager& pm)
{
pm.checkObjectHeader(RTTI::getStreamName<Fragment>());
Fragment::persistentRead(pm);
pm.checkObjectTrailer(0);
pm.readPrimitive(id_, "id_");
pm.readPrimitive(insertion_code_, "insertion_code_");
}
void Nucleotide::set(const Nucleotide& nucleotide, bool deep)
{
Fragment::set(nucleotide, deep);
id_ = nucleotide.id_;
insertion_code_ = nucleotide.insertion_code_;
}
Nucleotide& Nucleotide::operator = (const Nucleotide& nucleotide)
{
set(nucleotide);
return *this;
}
void Nucleotide::get(Nucleotide& nucleotide, bool deep) const
{
nucleotide.set(*this, deep);
}
void Nucleotide::swap(Nucleotide& nucleotide)
{
Fragment::swap(nucleotide);
id_.swap(nucleotide.id_);
char temp_insertion_code = insertion_code_;
insertion_code_ = nucleotide.insertion_code_;
nucleotide.insertion_code_ = temp_insertion_code;
}
NucleicAcid* Nucleotide::getNucleicAcid()
{
NucleicAcid* nucleic_acid_ptr = 0;
for (Composite::AncestorIterator ancestor_it = beginAncestor(); !ancestor_it.isEnd(); ++ancestor_it)
{
nucleic_acid_ptr = dynamic_cast<NucleicAcid*>(&*ancestor_it);
if (nucleic_acid_ptr != 0)
{
break;
}
}
return nucleic_acid_ptr;
}
const NucleicAcid* Nucleotide::getNucleicAcid() const
{
return (const_cast<Nucleotide*>(this)->getNucleicAcid());
}
void Nucleotide::setID(const String &id)
{
id_ = id;
}
const String &Nucleotide::getID() const
{
return id_;
}
void Nucleotide::setInsertionCode(char insertion_code)
{
// Is the insertion code a visible ASCII character
if(insertion_code < 32 || insertion_code > 126) {
throw Exception::InvalidArgument(__FILE__, __LINE__,
"The specified insertion code is invalid. Only visible values "
"and the space character ' ' are allowed."
);
}
insertion_code_ = insertion_code;
}
void Nucleotide::unsetInsertionCode() {
insertion_code_ = ' ';
}
char Nucleotide::getInsertionCode() const
{
return insertion_code_;
}
void Nucleotide::prepend(Atom& atom)
{
Composite::prependChild(atom);
}
void Nucleotide::append(Atom &atom)
{
Composite::appendChild(atom);
}
void Nucleotide::insert(Atom &atom)
{
append(atom);
}
void Nucleotide::insertBefore(Atom &atom, Composite& before)
{
before.Composite::insertBefore(atom);
}
void Nucleotide::insertAfter(Atom& atom, Composite &after)
{
after.Composite::insertAfter(atom);
}
bool Nucleotide::remove(Atom& atom)
{
return Composite::removeChild(atom);
}
void Nucleotide::spliceBefore(Nucleotide& nucleotide)
{
Composite::spliceBefore(nucleotide);
}
void Nucleotide::spliceAfter(Nucleotide& nucleotide)
{
Composite::spliceAfter(nucleotide);
}
void Nucleotide::splice(Nucleotide& nucleotide)
{
Composite::splice(nucleotide);
}
bool Nucleotide::isTerminal() const
{
const NucleicAcid* parent = (*this).getNucleicAcid();
if (parent != 0)
{
if (parent->get3Prime() == this ||
parent->get5Prime() == this)
{
return true;
}
}
return false;
}
bool Nucleotide::is5Prime() const
{
const NucleicAcid* parent = getNucleicAcid();
if (parent != 0)
{
if (parent->get5Prime() == this)
{
return true;
}
}
return false;
}
bool Nucleotide::is3Prime() const
{
const NucleicAcid* parent = getNucleicAcid();
if (parent != 0)
{
if (parent->get3Prime() == this)
{
return true;
}
}
return false;
}
bool Nucleotide::isValid() const
{
return (Fragment::isValid() && id_.isValid());
}
void Nucleotide::dump(ostream& s, Size depth) const
{
BALL_DUMP_STREAM_PREFIX(s);
Fragment::dump(s, depth);
BALL_DUMP_DEPTH(s, depth);
s << " id: " << id_ << endl;
BALL_DUMP_DEPTH(s, depth);
s << " insertion code: " << insertion_code_ << endl;
BALL_DUMP_STREAM_SUFFIX(s);
}
bool Nucleotide::operator == (const Nucleotide& nucleotide) const
{
return(Object::operator == (nucleotide));
}
bool Nucleotide::operator != (const Nucleotide& nucleotide) const
{
return ! (*this == nucleotide);
}
} // namespace BALL
|