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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkBioCellBase.cxx
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "itkBioCellBase.h"
#include <new>
#include "vnl/vnl_math.h"
#include "vnl/vnl_sample.h"
#include "itkMath.h"
namespace itk {
namespace bio {
CellBase::ColorType CellBase::DefaultColor;
double CellBase::DefaultRadius = 1.00; // microns
double CellBase::GrowthRadiusIncrement = 0.01; // microns
double CellBase::GrowthRadiusLimit = 2.00; // microns
unsigned long CellBase::MaximumGenerationLimit = 30L; // 30th generation
unsigned long CellBase::GrowthMaximumLatencyTime = 50;
unsigned long CellBase::DivisionMaximumLatencyTime = 50;
double CellBase::NutrientSelfRepairLevel = 0;
double CellBase::EnergySelfRepairLevel = 0;
double CellBase::DefaultEnergyIntake = 1;
double CellBase::DefaultNutrientsIntake = 1;
unsigned long CellBase::Counter = 0; // number of cells created
CellBase::GeneIdType CellBase::RedGene = "Red";
CellBase::GeneIdType CellBase::GreenGene = "Green";
CellBase::GeneIdType CellBase::BlueGene = "Blue";
CellBase::GeneIdType CellBase::Cdk2E = "Cdk2E";
CellBase::GeneIdType CellBase::Caspase = "Caspase";
CellBase::GeneIdType CellBase::Pressurin = "Pressurin";
double CellBase::ChemoAttractantLowThreshold = 200.0f;
double CellBase::ChemoAttractantHighThreshold = 255.0f;
CellBase::ColorType CellBase::WellNourishedColor;
CellBase::ColorType CellBase::HopefullColor;
CellBase::ColorType CellBase::StarvingColor;
/**
* Constructor Lonely Cell
*/
CellBase
::CellBase()
{
m_Genome = NULL;
m_GenomeCopy = NULL;
m_Radius = DefaultRadius;
m_Color = DefaultColor;
m_Pressure = 0.0f;
m_ParentIdentifier = 0; // Parent cell has to write here
// The first Cell is numbered as 1
Counter++;
m_SelfIdentifier = Counter;
m_Generation = 0;
m_CycleState = Gap1; // cells are created in Gap1 state
// Start with minimum reserves
m_NutrientsReserveLevel = NutrientSelfRepairLevel + DefaultNutrientsIntake;
m_EnergyReserveLevel = EnergySelfRepairLevel + DefaultEnergyIntake;
// delay before starting to grow after Mitosis
m_GrowthLatencyTime = static_cast<unsigned long>(
vnl_sample_uniform( 0UL, this->GetGrowthMaximumLatencyTime()) );
// add a random time before starting to grow
m_DivisionLatencyTime = static_cast<unsigned long>(
vnl_sample_uniform( 0, this->GetDivisionMaximumLatencyTime() ) );
m_ScheduleApoptosis = false;
m_ChemoAttractantLevel = 200.0f;
// too young to die...
m_MarkedForRemoval = false;
}
/**
* Destructor
*/
CellBase
::~CellBase()
{
if( m_Genome )
{
delete m_Genome;
m_Genome = NULL;
}
if( m_GenomeCopy )
{
delete m_GenomeCopy;
m_GenomeCopy = NULL;
}
}
/**
* DNA Replication
*/
void
CellBase
::DNAReplication(void)
{
m_GenomeCopy = new GenomeType;
m_GenomeCopy->Copy( *m_Genome );
}
/**
* Programmed Cell Death
* This is the cellular equivalent of suicide.
*/
void
CellBase
::Apoptosis(void)
{
if( m_Genome )
{
delete m_Genome;
m_Genome = NULL;
}
if( m_GenomeCopy )
{
delete m_GenomeCopy;
m_GenomeCopy = NULL;
}
}
/**
* Check point after division
* This check point will control
* the entrance in the growth stage.
* It returns true when conditions
* required for growth are satisfied.
*/
bool
CellBase
::CheckPointGrowth(void)
{
return true;
}
/**
* Check point before initiating DNA replication.
* This check point controls the entrance in the
* duplication of the genome by DNA synthesis, also
* known as the S phase of the Cell cycle.
* This method returns true when conditions required
* for DNA replication are satisfied.
*/
bool
CellBase
::CheckPointDNAReplication(void)
{
// radius & teleomerasa counting should be removed from here
// and be related to Cdk expression by using proteins like P53
// The radius should be estimated by a cytoskeleton-related protein.
const bool fatality = (m_Generation < MaximumGenerationLimit );
const bool radius = (m_Radius >= GrowthRadiusLimit);
bool isOkToReplicate = true;
const double cdk2E = m_Genome->GetExpressionLevel( Cdk2E );
if( cdk2E < 0.8 )
{
isOkToReplicate = false;
}
bool tooEarlyToReplicate = true;
if( m_DivisionLatencyTime )
{
m_DivisionLatencyTime--;
}
else
{
tooEarlyToReplicate = false;
}
bool goodCellMatrix = false;
if( !m_ScheduleApoptosis )
{
if( m_ChemoAttractantLevel > ChemoAttractantLowThreshold &&
m_ChemoAttractantLevel < ChemoAttractantHighThreshold )
{
goodCellMatrix = true;
}
}
return ( radius && fatality && isOkToReplicate &&
!tooEarlyToReplicate && goodCellMatrix);
}
/**
* Check point before dividing the cell in two daughter cells
* at this point DNA replication has already been performed
* as well as DNA proofreading and error corrections. This
* check point in principle shoult test if the resulting
* genomes satisfy the quality standards of a living cell.
*/
bool
CellBase
::CheckPointMitosis(void)
{
const bool DNAProofRead = ( m_GenomeCopy && m_Genome );
if( !DNAProofRead )
{
std::cerr << "PANIC: DNA failed ! " << std::endl;
}
return DNAProofRead;
}
/**
* Check point before apoptosis
* This check point will control
* the entrance in the apoptosis stage.
* It returns true when conditions
* required for apoptosis are satisfied.
* The cell will die in apoptosis.
*/
bool
CellBase
::CheckPointApoptosis(void)
{
bool executeApoptosis;
if( m_Genome->GetExpressionLevel( Caspase ) > 0.8 )
{
executeApoptosis = true;
}
else
{
executeApoptosis = false;
}
return executeApoptosis;
}
/**
* Initialize common variables
* All this should go away once we setup Gene Networks for controlling the cell.
*/
void
CellBase
::Initialize(void)
{
CellBase::SetGrowthMaximumLatencyTime( 100 );
CellBase::SetDivisionMaximumLatencyTime( 100 );
CellBase::SetDefaultRadius( 1.0 );
CellBase::SetGrowthRadiusIncrement( 0.01 );
CellBase::SetGrowthRadiusLimit( 2.00 );
SetMaximumGenerationLimit( 40 ); // it should use Teleomeres for implementing this
WellNourishedColor.Set( 0.0f, 0.0f, 1.0f );
HopefullColor.Set( 0.0f, 1.0f, 0.0f );
StarvingColor.Set( 1.0f, 0.0f, 0.0f );
SetDefaultColor( HopefullColor );
}
/**
* Mark this cell for removal
* The cellular aggregate with remove
* this cell from its list at the earliest occasion
*/
void
CellBase
::MarkForRemoval(void)
{
m_MarkedForRemoval = true;
}
/**
* Mark this cell for removal
* The cellular aggregate with remove
* this cell from its list at the earliest occasion
*/
bool
CellBase
::MarkedForRemoval(void) const
{
return m_MarkedForRemoval;
}
/**
* Cell Growth
* Growth is conditioned to the availability of
* nutrients and energy beyond the critical limit
* of self-repair
*
* Growth is limited by a constraint in the size
* of cell's radius
*/
void
CellBase
::Grow(void)
{
if( m_GrowthLatencyTime )
{
m_GrowthLatencyTime--;
return;
}
if ( m_NutrientsReserveLevel > NutrientSelfRepairLevel &&
m_EnergyReserveLevel > EnergySelfRepairLevel )
{
m_Radius += GrowthRadiusIncrement;
if( m_Radius > GrowthRadiusLimit )
{
m_Radius = GrowthRadiusLimit;
}
}
}
/**
* Set Growth Latency Time
*/
void
CellBase
::SetGrowthMaximumLatencyTime( unsigned long latency )
{
CellBase::GrowthMaximumLatencyTime = latency;
}
/**
* Get Growth Latency Time
*/
unsigned long
CellBase
::GetGrowthMaximumLatencyTime( void )
{
return CellBase::GrowthMaximumLatencyTime;
}
/**
* Return the ID of this cell
*/
CellBase::IdentifierType
CellBase
::GetSelfIdentifier(void) const
{
return m_SelfIdentifier;
}
/**
* Return the ID of the parent cell
*/
CellBase::IdentifierType
CellBase
::GetParentIdentifier(void) const
{
return m_ParentIdentifier;
}
/**
* Return the radius
*/
double
CellBase
::GetRadius(void) const
{
return m_Radius;
}
/**
* Return the Color
*/
CellBase::ColorType
CellBase
::GetColor(void) const
{
return m_Color;
}
/**
* Set the value of the initial cell radius.
*/
void
CellBase
::SetDefaultRadius( double value )
{
DefaultRadius = value;
}
/**
* Set the value of the limiting cell radius
* this is a static value used for the whole
* cellular aggregate
*/
void
CellBase
::SetGrowthRadiusLimit( double value )
{
GrowthRadiusLimit = value;
}
/**
* Set the amount of Energy that is needed for Self-repair.
* Cells that go below this level will degrade and enter
* termination stage.
*/
void
CellBase
::SetEnergySelfRepairLevel( double value )
{
EnergySelfRepairLevel = value;
}
/**
* Set the amount of Nutrients that are needed for Self-repair.
* Cells that go below this level will degrade and enter
* termination stage.
*/
void
CellBase
::SetNutrientSelfRepairLevel( double value )
{
NutrientSelfRepairLevel = value;
}
/**
* Set the value of the limit of cell generation.
* After this generation cells will stop dividing
* A mechanism similar to the inhibition of Telomerase
* that impose a limit to the maximum number of times
* that the genome can be replicated.
*/
void
CellBase
::SetMaximumGenerationLimit( unsigned long generationLimit )
{
MaximumGenerationLimit = generationLimit;
}
/**
* Get the value of the limiting cell radius
* this is a static value used for the whole
* cellular aggregate
*/
double
CellBase
::GetGrowthRadiusLimit( void )
{
return GrowthRadiusLimit;
}
/**
* Set the value of the increment in cellular
* radius at each time step
* this is a static value used for the whole
* cellular aggregate
*/
void
CellBase
::SetGrowthRadiusIncrement( double value )
{
GrowthRadiusIncrement = value;
}
/**
* Ingestion of nutrients
*/
void
CellBase
::NutrientsIntake(void)
{
m_NutrientsReserveLevel += DefaultNutrientsIntake;
}
/**
* Acquisition of energy
*/
void
CellBase
::EnergyIntake(void)
{
m_EnergyReserveLevel += DefaultEnergyIntake;
}
/**
* Compute the Gene Network
* This method update the level of expression of
* all the genes in the cell's genome.
* see: http://www.ingeneue.org for details
*/
void
CellBase
::ComputeGeneNetwork(void)
{
// Default level of pigments
m_Genome->SetExpressionLevel( CellBase::RedGene, 1.0 );
m_Genome->SetExpressionLevel( CellBase::GreenGene, 1.0 );
m_Genome->SetExpressionLevel( CellBase::BlueGene, 1.0 );
// Color the cell acording to pressure.
// This is done by generating pigments under
// the influence of presure.
const double pressurinLevel = m_Genome->GetExpressionLevel( Pressurin );
const double red = GenomeType::Sigmoide( 5.0, 1.0, pressurinLevel );
m_Genome->SetExpressionLevel( RedGene, red );
m_Genome->SetExpressionLevel( BlueGene, 1.0-red );
m_Genome->SetExpressionLevel( GreenGene, 0.0 );
// Color the Cell acording to the substrate.
// This is done by generating pigments.
// This color overrides the selection of the Presure...
if( m_ChemoAttractantLevel > ChemoAttractantHighThreshold )
{
m_Genome->SetExpressionLevel( RedGene, WellNourishedColor.GetRed() );
m_Genome->SetExpressionLevel( GreenGene, WellNourishedColor.GetGreen() );
m_Genome->SetExpressionLevel( BlueGene, WellNourishedColor.GetBlue() );
}
else if( m_ChemoAttractantLevel > ChemoAttractantLowThreshold )
{
m_Genome->SetExpressionLevel( RedGene, HopefullColor.GetRed() );
m_Genome->SetExpressionLevel( GreenGene, HopefullColor.GetGreen() );
m_Genome->SetExpressionLevel( BlueGene, HopefullColor.GetBlue() );
}
else
{
m_Genome->SetExpressionLevel( RedGene, StarvingColor.GetRed() );
m_Genome->SetExpressionLevel( GreenGene, StarvingColor.GetGreen() );
m_Genome->SetExpressionLevel( BlueGene, StarvingColor.GetBlue() );
}
// Prevent cells from replicating if they are in a high pressure zone
const double cdk2E = GenomeType::Sigmoide( 2.0, -0.5, pressurinLevel );
m_Genome->SetExpressionLevel( Cdk2E, cdk2E );
// If the pressure is really high, then commit suicide
const double caspase = GenomeType::Sigmoide( 3.0, 90.0, pressurinLevel );
m_Genome->SetExpressionLevel( Caspase, caspase );
}
/**
* Secrete synthetized products resulting from
* the gene network update
*/
void
CellBase
::SecreteProducts(void)
{
typedef ColorType::ValueType ColorValueType;
m_Color.SetRed( ColorValueType( m_Genome->GetExpressionLevel( RedGene ) ) );
m_Color.SetGreen( ColorValueType( m_Genome->GetExpressionLevel( GreenGene ) ) );
m_Color.SetBlue( ColorValueType( m_Genome->GetExpressionLevel( BlueGene ) ) );
}
/**
* Set default Color
*/
void
CellBase
::SetDefaultColor( const ColorType & color )
{
DefaultColor = color;
}
/**
* Reset the counter
*/
void
CellBase
::ResetCounter( void )
{
Counter = 0;
}
/**
* Set Division Latency Time
*/
void
CellBase
::SetDivisionMaximumLatencyTime( unsigned long latency )
{
CellBase::DivisionMaximumLatencyTime = latency;
}
/**
* Get Division Latency Time
*/
unsigned long
CellBase
::GetDivisionMaximumLatencyTime( void )
{
return CellBase::DivisionMaximumLatencyTime;
}
/**
* Set ChemoAttractantLowThreshold
*/
void
CellBase
::SetChemoAttractantLowThreshold( double lowvalue )
{
CellBase::ChemoAttractantLowThreshold = lowvalue;
}
/**
* Set ChemoAttractantHighThreshold
*/
void
CellBase
::SetChemoAttractantHighThreshold( double highvalue )
{
CellBase::ChemoAttractantHighThreshold = highvalue;
}
} // end namespace bio
} // end namespace itk
|