Nemo  2.4.2
Simulate forward-in-time genetic evolution in a spatially explicit, individual-based stochastic simulator
LCE_Breed_Quanti Class Reference

Implementation of the basic breeding and mating procedures, does not link to any trait. More...

#include <LCEquanti.h>

+ Inheritance diagram for LCE_Breed_Quanti:
+ Collaboration diagram for LCE_Breed_Quanti:

Public Member Functions

 LCE_Breed_Quanti ()
 
virtual ~LCE_Breed_Quanti ()
 
void setVefromVa (Patch *patch, age_idx AGE)
 
void setIndPhenotype (Patch *patch, sex_t SEX, age_idx AGE)
 
void NonWrightFisherPopulation ()
 
void WrightFisherPopulation ()
 
Implementations
virtual bool setParameters ()
 
virtual void execute ()
 
virtual LifeCycleEventclone ()
 
virtual void loadFileServices (FileServices *loader)
 
virtual void loadStatServices (StatServices *loader)
 
virtual bool resetParameterFromSource (std::string param, SimComponent *cmpt)
 
virtual age_t removeAgeClass ()
 
virtual age_t addAgeClass ()
 
virtual age_t requiredAgeClass ()
 
- Public Member Functions inherited from LCE_Breed_base
 LCE_Breed_base ()
 
virtual ~LCE_Breed_base ()
 
virtual IndividualgetFatherPtr (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Calls the mating function according to the model chosen using the function pointer, used to get the father from the mother in a patch. More...
 
void NonWrightFisherPopulation ()
 
void WrightFisherPopulation ()
 
void doAgingInWFpop ()
 
Individualbreed (Individual *mother, Individual *father, unsigned int LocalPatch)
 Makes a new individual with the right parents. More...
 
Individualbreed_cloning (Individual *mother, Individual *father, unsigned int LocalPatch)
 Makes a new individual by doing a deep copy of the mother (copies the mother's genes into the offspring). More...
 
IndividualmakeOffspring (Individual *ind)
 Last step of the breeding process, does inheritance and mutation of the parents' genes. More...
 
IndividualmakeOffspring (Individual *newind, Individual *mother, Individual *father, unsigned int natalPatch)
 Overloads previous function when a new offspring is created "in-place", that is from existing pointer in a patch. More...
 
Individualdo_breed (Individual *mother, Individual *father, unsigned int LocalPatch)
 Calls the breeding function unsing its pointer. More...
 
bool checkMatingCondition (Patch *thePatch)
 Checks if any mating will take place in the patch passed as argument. More...
 
bool checkNoSelfing (Patch *thePatch)
 Checks whether mating will take place in the current patch when mating is not selfing or cloning. More...
 
bool checkPolygyny (Patch *thePatch)
 Checks whether mating will take place in the current patch when mating is polygynous. More...
 
bool checkSelfing (Patch *thePatch)
 Checks whether mating will take place in the current patch when mating is selfing. More...
 
bool checkCloning (Patch *thePatch)
 Checks whether mating will take place in the current patch when mating is cloning. More...
 
bool setMatingSystem ()
 
bool setFecundity ()
 
bool setSexRatio ()
 
double getMatingProportion ()
 
double getMeanFecundity (unsigned int patch)
 
int getMatingSystem ()
 
bool doInheritance ()
 
double getPoissonFecundity (double mean)
 
double getFixedFecundity (double mean)
 
double getGaussianFecundity (double mean)
 
double getLogNormalFecundity (double mean)
 
double getFecundity (unsigned int patch)
 
double getFecundity (double mean)
 
sex_t getOffsprgSex ()
 
sex_t getOffsprgSexRandom ()
 
sex_t getOffsprgSexFixed ()
 
sex_t getOffsprgSexSelfing ()
 
sex_t getOffsprgSexCloning ()
 
bool isWrightFisher ()
 
IndividualRandomMating (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a pointer to a male drawn randomly from a patch. More...
 
IndividualfullPolyginy (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a pointer to the alpha male of the patch. More...
 
IndividualfullPolyginy_manyMales (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a pointer to one of the first _mating_males males of the patch. More...
 
IndividualpartialPolyginy (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a pointer to a male from a patch chosen at random if _mating_proportion != 1, or the first male otherwise. More...
 
IndividualpartialPolyginy_manyMales (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a pointer to a male from a patch chosen at random if _mating_proportion != 1, or one of the _mating_males first males otherwise. More...
 
IndividualfullMonoginy (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a pointer to a male with same index as mother (if available) from the focal patch. More...
 
IndividualpartialMonoginy (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a pointer to a male with same index as mother (if available) from the focal patch. More...
 
IndividualfullSelfing (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns the mother pointer. More...
 
IndividualpartialSelfing (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns the mother pointer or a random female if _mating_proportion != 1. More...
 
Individualrandom_hermaphrodite (Patch *thePatch, Individual *mother, unsigned int motherIndex)
 Returns a random female from the patch, will be the same mother with probability 1/N (Wright-Fisher model). More...
 
- Public Member Functions inherited from LifeCycleEvent
 LifeCycleEvent (const char *name, const char *trait_link)
 Cstor. More...
 
virtual ~LifeCycleEvent ()
 
virtual void init (Metapop *popPtr)
 Sets the pointer to the current Metapop and the trait link if applicable. More...
 
virtual bool attach_trait (string trait)
 
virtual void set_paramset (std::string name, bool required, SimComponent *owner)
 
virtual void set_event_name (std::string &name)
 Set the name of the event (name of the ParamSet) and add the corresponding parameter to the set. More...
 
virtual void set_event_name (const char *name)
 
virtual string & get_event_name ()
 Accessor to the LCE's name. More...
 
virtual int get_rank ()
 Accessor to the LCE rank in the life cycle. More...
 
virtual void set_pop_ptr (Metapop *popPtr)
 Accessors for the population pointer. More...
 
virtual Metapopget_pop_ptr ()
 
- Public Member Functions inherited from SimComponent
 SimComponent ()
 
virtual ~SimComponent ()
 
virtual void loadUpdaters (UpdaterServices *loader)
 Loads the parameters and component updater onto the updater manager. More...
 
virtual void set_paramset (ParamSet *paramset)
 Sets the ParamSet member. More...
 
virtual void set_paramsetFromCopy (const ParamSet &PSet)
 Reset the set of parameters from a another set. More...
 
virtual ParamSetget_paramset ()
 ParamSet accessor. More...
 
virtual void add_parameter (Param *param)
 Interface to add a parameter to the set. More...
 
virtual void add_parameter (std::string Name, param_t Type, bool isRequired, bool isBounded, double low_bnd, double up_bnd)
 Interface to add a parameter to the set. More...
 
virtual void add_parameter (std::string Name, param_t Type, bool isRequired, bool isBounded, double low_bnd, double up_bnd, ParamUpdaterBase *updater)
 Interface to add a parameter and its updater to the set. More...
 
virtual Paramget_parameter (std::string name)
 Param getter. More...
 
virtual double get_parameter_value (std::string name)
 Param value getter. More...
 
virtual string get_name ()
 Returnd the name of the ParamSet, i.e. More...
 
virtual bool has_parameter (std::string name)
 Param getter. More...
 

Private Attributes

TProtoQuanti_QuantiProto
 
vector< double > _h2
 
vector< double >(TTQuantiSH::* _get_VA_func_ptr )(Patch *, const age_idx)
 
void(LCE_Breed_Quanti::* _myPopModelFuncPtr )(void)
 

Additional Inherited Members

- Protected Attributes inherited from LCE_Breed_base
TMatrix _mean_fecundity
 
Individual *(LCE_Breed_base::* MatingFuncPtr )(Patch *, Individual *, unsigned int)
 
Individual *(LCE_Breed_base::* DoBreedFuncPtr )(Individual *mother, Individual *father, unsigned int LocalPatch)
 
double(LCE_Breed_base::* FecundityFuncPtr )(double mean)
 
bool(LCE_Breed_base::* CheckMatingConditionFuncPtr )(Patch *thePatch)
 
sex_t(LCE_Breed_base::* GetOffsprgSex )()
 
void(LCE_Breed_base::* PopModelFuncPtr )(void)
 
- Protected Attributes inherited from LifeCycleEvent
std::string _event_name
 The param name to be read in the init file. More...
 
Metapop_popPtr
 The ptr to the current Metapop. More...
 
std::string _LCELinkedTraitType
 The name of the linked trait. More...
 
int _LCELinkedTraitIndex
 The index in the individual's trait table of the linked trait. More...
 
- Protected Attributes inherited from SimComponent
ParamSet_paramSet
 The parameters container. More...
 

Detailed Description

Implementation of the basic breeding and mating procedures, does not link to any trait.

Individuals mate according to the mating system chosen. The mated adults are not removed from the population. The offspring containers are filled with the new generation. Note that they are first emptied if still containing offspring individuals when starting the breeding process.

The population's age is set to ALL. The mating and realized fecundity counters of the reproducing males and females are updated.

See also
LCE_Breed_base

Constructor & Destructor Documentation

◆ LCE_Breed_Quanti()

LCE_Breed_Quanti::LCE_Breed_Quanti ( )
inline
141  : LifeCycleEvent("breed_quanti","quant"), _QuantiProto(0),
TProtoQuanti * _QuantiProto
Definition: LCEquanti.h:132
void(LCE_Breed_Quanti::* _myPopModelFuncPtr)(void)
Definition: LCEquanti.h:137
vector< double >(TTQuantiSH::* _get_VA_func_ptr)(Patch *, const age_idx)
Definition: LCEquanti.h:135
LifeCycleEvent(const char *name, const char *trait_link)
Cstor.
Definition: lifecycleevent.h:96

Referenced by clone().

+ Here is the caller graph for this function:

◆ ~LCE_Breed_Quanti()

virtual LCE_Breed_Quanti::~LCE_Breed_Quanti ( )
inlinevirtual
144 { }

Member Function Documentation

◆ addAgeClass()

virtual age_t LCE_Breed_Quanti::addAgeClass ( )
inlinevirtual

Implements LifeCycleEvent.

165 {return OFFSPRG;}
#define OFFSPRG
Offspring age class flag.
Definition: types.h:48

References OFFSPRG.

◆ clone()

virtual LifeCycleEvent* LCE_Breed_Quanti::clone ( )
inlinevirtual

Implements LifeCycleEvent.

159 {return new LCE_Breed_Quanti();}
LCE_Breed_Quanti()
Definition: LCEquanti.h:141

References LCE_Breed_Quanti().

◆ execute()

void LCE_Breed_Quanti::execute ( )
virtual

Implements LifeCycleEvent.

429 {
430 #ifdef _DEBUG_
431  message("LCE_Breed_Quanti::execute (Patch nb: %i offsprg nb: %i adlt nb: %i)\n"
433 #endif
434 
435  if(_popPtr->size(OFFSPRG) != 0) {
436  warning("offspring containers not empty at time of breeding, flushing.\n");
437  _popPtr->flush(OFFSx);
438  }
439 
440  //because mean fecundity can be patch-specific, we have to check whether the patch number changed
442 
443  // proceed with mating and breeding
444  (this->* _myPopModelFuncPtr)(); // calls either 'NonWrightFisherPopulation' or 'WrightFisherPopulation'
445 
446 }
bool setFecundity()
Definition: LCEbreed.cc:262
TMatrix _mean_fecundity
Definition: LCEbreed.h:66
Metapop * _popPtr
The ptr to the current Metapop.
Definition: lifecycleevent.h:79
unsigned int size()
Get the total number of individuals present in the population, all sex and age classes together.
Definition: metapop.h:310
unsigned int getPatchNbr()
Definition: metapop.h:274
void flush()
Removes all individual pointers and flush them into the recycling pool.
Definition: metapop.h:847
unsigned int ncols() const
Definition: tmatrix.h:214
void warning(const char *str,...)
Definition: output.cc:56
void message(const char *message,...)
Definition: output.cc:38
#define ADULTS
Adults age class flag (breeders).
Definition: types.h:52
@ OFFSx
Definition: types.h:40

References LCE_Breed_base::_mean_fecundity, _myPopModelFuncPtr, LifeCycleEvent::_popPtr, ADULTS, Metapop::flush(), Metapop::getPatchNbr(), message(), TMatrix::ncols(), OFFSPRG, OFFSx, LCE_Breed_base::setFecundity(), Metapop::size(), and warning().

◆ loadFileServices()

virtual void LCE_Breed_Quanti::loadFileServices ( FileServices loader)
inlinevirtual

Implements SimComponent.

161 {}

◆ loadStatServices()

virtual void LCE_Breed_Quanti::loadStatServices ( StatServices loader)
inlinevirtual

Implements SimComponent.

162 {}

◆ NonWrightFisherPopulation()

void LCE_Breed_Quanti::NonWrightFisherPopulation ( )
451 {
452  Patch* patch;
453  Individual* mother;
454  Individual* father;
455  Individual* NewOffsprg;
456  unsigned int nbBaby;
457 
458 #ifdef _DEBUG_
459  message("LCE_Breed_Quanti::execute::NonWrightFisherPopulation::mating system: %i; mean fecundity[0]: %f",
461 #endif
462 
463  _h2 = _QuantiProto->get_heritability(); //may have been reset during a run
464 
465  for(unsigned int i = 0; i < _popPtr->getPatchNbr(); i++) {
466 
467  patch = _popPtr->getPatch(i);
468 
469  if( !checkMatingCondition(patch) ) continue;
470 
471 
472  for(unsigned int size = patch->size(FEM, ADLTx), indexOfMother = 0;
473  indexOfMother < size;
474  indexOfMother++)
475  {
476  mother = patch->get(FEM, ADLTx, indexOfMother);
477 
478  nbBaby = (unsigned int)mother->setFecundity( getFecundity(i) ) ; //allows for patch-specific fec
479  //-----------------------------------------------------------------------
480  while(nbBaby != 0) {
481 
482  father = this->getFatherPtr(patch, mother, indexOfMother);
483 
484  NewOffsprg = makeOffspring( do_breed(mother, father, i) );
485 
486  patch->add(NewOffsprg->getSex(), OFFSx, NewOffsprg);
487 
488  nbBaby--;
489  }//_END__WHILE
490 
491  }// for female
492 
493  // compute Va in each patch to set Ve to match the h2 required
494  setVefromVa(patch,OFFSx);
495 
496  setIndPhenotype(patch, FEM, OFFSx);
497  setIndPhenotype(patch, MAL, OFFSx);
498 
499  } //for patch
500 
501 #ifdef _DEBUG_
502  message("done, new offsprg nb: %i \n",_popPtr->size( OFFSPRG ));
503 #endif
504 }
This class contains traits along with other individual information (sex, pedigree,...
Definition: individual.h:47
double setFecundity(double value)
Sets the fecundity to the value given and returns it.
Definition: individual.h:205
sex_t getSex()
Definition: individual.h:127
void setVefromVa(Patch *patch, age_idx AGE)
Definition: LCEquanti.cc:565
vector< double > _h2
Definition: LCEquanti.h:133
void setIndPhenotype(Patch *patch, sex_t SEX, age_idx AGE)
Definition: LCEquanti.cc:595
int getMatingSystem()
Definition: LCEbreed.h:100
virtual Individual * getFatherPtr(Patch *thePatch, Individual *mother, unsigned int motherIndex)
Calls the mating function according to the model chosen using the function pointer,...
Definition: LCEbreed.h:80
Individual * makeOffspring(Individual *ind)
Last step of the breeding process, does inheritance and mutation of the parents' genes.
Definition: LCEbreed.cc:349
Individual * do_breed(Individual *mother, Individual *father, unsigned int LocalPatch)
Calls the breeding function unsing its pointer.
Definition: LCEbreed.h:175
bool checkMatingCondition(Patch *thePatch)
Checks if any mating will take place in the patch passed as argument.
Definition: LCEbreed.h:184
double getFecundity(unsigned int patch)
Definition: LCEbreed.h:110
Patch * getPatch(unsigned int i)
Patch accessor, return the ith+1 patch in the metapop.
Definition: metapop.h:255
Second class in the metapopulation design structure, between the Metapop and Individual classes.
Definition: metapop.h:430
unsigned int size(age_t AGE)
Returns the size of the container of the appropriate age class(es) for both sexes.
Definition: metapop.h:496
Individual * get(sex_t SEX, age_idx AGE, unsigned int at)
Returns a pointer to the individual sitting at the index passed.
Definition: metapop.h:532
void add(sex_t SEX, age_idx AGE, Individual *ind)
Adds an individual to the appropriate container, increments its size, eventually resizing it.
Definition: metapop.h:549
double get(unsigned int i, unsigned int j) const
Accessor to element at row i and column j.
Definition: tmatrix.h:191
vector< double > get_heritability()
Definition: ttquanti.h:429
@ FEM
Definition: types.h:35
@ MAL
Definition: types.h:35
@ ADLTx
Definition: types.h:40

References _h2, LCE_Breed_base::_mean_fecundity, LifeCycleEvent::_popPtr, _QuantiProto, Patch::add(), ADLTx, LCE_Breed_base::checkMatingCondition(), LCE_Breed_base::do_breed(), FEM, Patch::get(), TMatrix::get(), TProtoQuanti::get_heritability(), LCE_Breed_base::getFatherPtr(), LCE_Breed_base::getFecundity(), LCE_Breed_base::getMatingSystem(), Metapop::getPatch(), Metapop::getPatchNbr(), Individual::getSex(), LCE_Breed_base::makeOffspring(), MAL, message(), OFFSPRG, OFFSx, Individual::setFecundity(), setIndPhenotype(), setVefromVa(), Metapop::size(), and Patch::size().

Referenced by setParameters().

+ Here is the caller graph for this function:

◆ removeAgeClass()

virtual age_t LCE_Breed_Quanti::removeAgeClass ( )
inlinevirtual

Implements LifeCycleEvent.

164 {return 0;}

◆ requiredAgeClass()

virtual age_t LCE_Breed_Quanti::requiredAgeClass ( )
inlinevirtual

Implements LifeCycleEvent.

166 {return ADULTS;}

References ADULTS.

◆ resetParameterFromSource()

virtual bool LCE_Breed_Quanti::resetParameterFromSource ( std::string  param,
SimComponent cmpt 
)
inlinevirtual

Implements SimComponent.

163 {return false;}

◆ setIndPhenotype()

void LCE_Breed_Quanti::setIndPhenotype ( Patch patch,
sex_t  SEX,
age_idx  AGE 
)
596 {
597  for(unsigned int i = 0; i < patch->size(SEX, AGE); ++i)
598  {
599  patch->get(SEX, AGE, i)->setTraitValue(_LCELinkedTraitIndex);
600  }
601 }
void setTraitValue(IDX T)
Calls the value setting procedure of a particular trait.
Definition: individual.h:259
int _LCELinkedTraitIndex
The index in the individual's trait table of the linked trait.
Definition: lifecycleevent.h:87

References LifeCycleEvent::_LCELinkedTraitIndex, Patch::get(), Individual::setTraitValue(), and Patch::size().

Referenced by NonWrightFisherPopulation(), and WrightFisherPopulation().

+ Here is the caller graph for this function:

◆ setParameters()

bool LCE_Breed_Quanti::setParameters ( )
virtual

Reimplemented from LCE_Breed_base.

405 {
406 
407  _QuantiProto = dynamic_cast<TProtoQuanti*> ( _popPtr->getTraitPrototype("quant") );
408 
409  //check for allele model
412  else
414 
415  if(!LCE_Breed_base::setParameters( )) return false;
416 
417  //by default, the population is not kept at constant size, ie not Wright-Fisher
419 
420  if(get_parameter("mating_isWrightFisher")->isSet())
422 
423  return true;
424 }
TraitPrototype * getTraitPrototype(trait_t type)
Accessor to a TraitPrototype.
Definition: indfactory.cc:138
void WrightFisherPopulation()
Definition: LCEquanti.cc:508
void NonWrightFisherPopulation()
Definition: LCEquanti.cc:450
virtual bool setParameters()
Definition: LCEbreed.cc:75
bool isSet()
Definition: param.h:146
virtual Param * get_parameter(std::string name)
Param getter.
Definition: simcomponent.h:137
TProtoQuanti.
Definition: ttquanti.h:413
unsigned int get_dominance_model()
Definition: ttquanti.h:476
vector< double > getVaNoDominance(Patch *curPop, const age_idx AGE)
Definition: ttquanti.cc:5386
vector< double > getVaWithDominance(Patch *curPop, const age_idx AGE)
computation of the additive genetic variance from the average excess of each allele exact under rando...
Definition: ttquanti.cc:5485

References _get_VA_func_ptr, _myPopModelFuncPtr, LifeCycleEvent::_popPtr, _QuantiProto, TProtoQuanti::get_dominance_model(), SimComponent::get_parameter(), IndFactory::getTraitPrototype(), TTQuantiSH::getVaNoDominance(), TTQuantiSH::getVaWithDominance(), Param::isSet(), NonWrightFisherPopulation(), LCE_Breed_base::setParameters(), and WrightFisherPopulation().

◆ setVefromVa()

void LCE_Breed_Quanti::setVefromVa ( Patch patch,
age_idx  AGE 
)
566 {
567  vector<double> Va;
568 
569  if(!(_popPtr->getCurrentGeneration()%_QuantiProto->get_h2_setTime())) // use setTime as periodicity
570  {
571 
572  Va = (_QuantiProto->get_stater()->*_get_VA_func_ptr)(patch, AGE); // compute Va
573 
574 // cout << "LCE_Breed_Quanti::setVefromVa:: Va/Ve = ";
575 
576  // we have to make sure that the phenotype will be calculated with Ve
577  // this is not guaranteed if Ve was not in input
579 
580  // set Ve to match h2 given computed value of Va
581  for(unsigned int j = 0; j < _QuantiProto->get_num_traits(); ++j) {
582 
583 // cout << Va[j] <<"/"<< Va[j] * (1 - _h2[j])/_h2[j] <<" ";
584 
585  _QuantiProto->set_eVarianceSD( j, sqrt(Va[j] * (1 - _h2[j])/_h2[j]) );
586  }
587 
588 // cout<<endl;
589  }
590 
591 }
unsigned int getCurrentGeneration()
Definition: metapop.h:294
void set_trait_value_func_ptr(bool withVe)
Definition: ttquanti.cc:677
TTQuantiSH * get_stater()
Definition: ttquanti.h:448
unsigned int get_h2_setTime()
Definition: ttquanti.h:430
unsigned int get_num_traits()
Definition: ttquanti.h:421
void set_eVarianceSD(unsigned int trait, double SD)
Definition: ttquanti.cc:2378

References _get_VA_func_ptr, _h2, LifeCycleEvent::_popPtr, _QuantiProto, TProtoQuanti::get_h2_setTime(), TProtoQuanti::get_num_traits(), TProtoQuanti::get_stater(), Metapop::getCurrentGeneration(), TProtoQuanti::set_eVarianceSD(), and TProtoQuanti::set_trait_value_func_ptr().

Referenced by NonWrightFisherPopulation(), and WrightFisherPopulation().

+ Here is the caller graph for this function:

◆ WrightFisherPopulation()

void LCE_Breed_Quanti::WrightFisherPopulation ( )
509 {
510  Patch* patch = 0;
511  Individual* mother = 0;
512  Individual* father = 0;
513  Individual* NewOffsprg = 0;
514  unsigned int indexOfMother = 0;
515  unsigned int size = 0;
516 
517 #ifdef _DEBUG_
518  message("LCE_Breed::execute::WrightFisherPopulation::\n");
519 #endif
520 
521 
522  _h2 = _QuantiProto->get_heritability(); //may have been reset during a run
523 
524  for(unsigned int i = 0; i < _popPtr->getPatchNbr(); i++) {
525 
526  patch = _popPtr->getPatch(i);
527 
528  if( !checkMatingCondition(patch) ) continue;
529 
530  size = patch->size(FEM, ADLTx);
531 
532  for(unsigned int s = 0; s < 2; ++s) { //filling male and female offspring containers
533  //-----------------------------------------------------------------------
534  for(unsigned int c = 0; c < patch->get_K(sex_t(s)); ++c)
535  {
536  indexOfMother = RAND::Uniform(size);
537 
538  mother = patch->get(FEM, ADLTx, indexOfMother );
539 
540  father = this->getFatherPtr(patch, mother, indexOfMother);
541 
542  NewOffsprg = makeOffspring( do_breed(mother, father, i) );
543 
544  NewOffsprg->setSex(sex_t(s));
545 
546  patch->add(sex_t(s), OFFSx, NewOffsprg);
547  }//END FOR ind
548  } //END FOR sex
549 
550  // compute Va in each patch to set Ve to match the h2 required
551  setVefromVa(patch, OFFSx);
552 
553  setIndPhenotype(patch, FEM, OFFSx);
554  setIndPhenotype(patch, MAL, OFFSx);
555 
556  } //END FOR patch
557 
558 #ifdef _DEBUG_
559  message("LCE_Breed::execute::WrightFisherPopulation::new offsprg nb: %i \n",_popPtr->size( OFFSPRG ));
560 #endif
561 }
void setSex(sex_t sex)
Definition: individual.h:110
unsigned int get_K()
Definition: metapop.h:480
static double Uniform()
Generates a random number from [0.0, 1.0[ uniformly distributed.
Definition: Uniform.h:125
sex_t
Sex types, males are always 0 and females 1!!
Definition: types.h:34

References _h2, LifeCycleEvent::_popPtr, _QuantiProto, Patch::add(), ADLTx, LCE_Breed_base::checkMatingCondition(), LCE_Breed_base::do_breed(), FEM, Patch::get(), TProtoQuanti::get_heritability(), Patch::get_K(), LCE_Breed_base::getFatherPtr(), Metapop::getPatch(), Metapop::getPatchNbr(), LCE_Breed_base::makeOffspring(), MAL, message(), OFFSPRG, OFFSx, setIndPhenotype(), Individual::setSex(), setVefromVa(), Metapop::size(), Patch::size(), and RAND::Uniform().

Referenced by setParameters().

+ Here is the caller graph for this function:

Member Data Documentation

◆ _get_VA_func_ptr

vector<double>(TTQuantiSH::* LCE_Breed_Quanti::_get_VA_func_ptr) (Patch *, const age_idx)
private

Referenced by setParameters(), and setVefromVa().

◆ _h2

vector<double> LCE_Breed_Quanti::_h2
private

◆ _myPopModelFuncPtr

void(LCE_Breed_Quanti::* LCE_Breed_Quanti::_myPopModelFuncPtr) (void)
private

Referenced by execute(), and setParameters().

◆ _QuantiProto

TProtoQuanti* LCE_Breed_Quanti::_QuantiProto
private

The documentation for this class was generated from the following files:

Generated for Nemo v2.4.2 by  doxygen 1.9.1

Catalogued on GSR