Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 4a4b16a7 authored by LUISELLI Juliette's avatar LUISELLI Juliette
Browse files

add nb_coding_RNAs function to Individual_7

parent d59b6f18
No related branches found
No related tags found
No related merge requests found
......@@ -2132,6 +2132,14 @@ int32_t Individual_7::find_alignment(int32_t nb_tries,
return cur_score;
}
int32_t Individual_7::nb_coding_RNAs(){
return annotated_chromosome_[A]->nb_coding_RNAs
#ifdef __EUKARYOTE
+ annotated_chromosome_[B]->nb_coding_RNAs
#endif
;
}
int32_t Individual_7::nb_non_coding_RNAs(){
return annotated_chromosome_[A]->nb_non_coding_RNAs
#ifdef __EUKARYOTE
......
......@@ -150,6 +150,7 @@ class Individual_7 : public Observable {
bool inverted_parents_;
int32_t dna_length();
int32_t nb_coding_RNAs();
int32_t nb_non_coding_RNAs();
#ifdef PHENOTYPE_VECTOR
......
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