Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e6e38b31 authored by FOLEY Marco's avatar FOLEY Marco
Browse files

[aevol_post_change_size_neutral_mut.cpp] output file individual has now the...

[aevol_post_change_size_neutral_mut.cpp] output file individual has now the genetique sequence of the last individual of the post treatement simulation
parent 317c8f0e
No related branches found
No related tags found
No related merge requests found
......@@ -1877,6 +1877,9 @@ void IOJson::setIndividuals(const vector<Individual*> &individuals){
std::string IOJson::getIndividualSequence(int32_t index, int32_t gu) const{
return json_file_["indivs"][index]["GU"][gu]["seq"];
}
void IOJson::setIndividualSequence(int32_t index, int32_t gu, const char* seq){
json_file_["indivs"][index]["GU"][gu]["seq"] = seq;
}
int32_t IOJson::getNbrIndividuals() const {
return json_file_["indivs"].size();
}
......@@ -349,6 +349,7 @@ class IOJson {
bool isWellMixed() const;
void setWellMixed(bool wellMixed);
std::string getIndividualSequence(int32_t index, int32_t gu) const;
void setIndividualSequence(int32_t index, int32_t gu, const char* seq);
int32_t getNbrIndividuals() const;
private:
int world_heigth_;
......
......@@ -140,11 +140,7 @@ int main(int argc, char ** argv) {
Individual ancestor = Individual(inputJson.getIndividuals()[0], 0, mut_prng, stoch_prng);
Individual* indiv = run_to_size(wanted_size, &ancestor);
std::vector<Individual*> indiv_vector;
indiv_vector.push_back(indiv);
inputJson.setIndividuals(indiv_vector);
inputJson.setIndividualSequence(0,0,indiv->genetic_unit_sequence(0));
inputJson.write(outputFile);
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment