Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
485c6f9b
Commit
485c6f9b
authored
Feb 26, 2015
by
Mathieu Giraud
Browse files
core/germline.{h,cpp}: 'clone_stats', storing statistics on clones
parent
9c64d4ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
algo/core/germline.cpp
View file @
485c6f9b
...
...
@@ -21,6 +21,7 @@ void Germline::init(string _code, char _shortcut,
delta_max
=
_delta_max
;
stats
.
setLabel
(
code
);
stats_clones
.
setLabel
(
code
+
"-clones"
);
}
Germline
::
Germline
(
string
_code
,
char
_shortcut
,
...
...
@@ -261,6 +262,7 @@ void MultiGermline::out_stats(ostream &out)
{
Germline
*
germline
=
*
it
;
out
<<
germline
->
stats
;
out
<<
germline
->
stats_clones
;
}
}
...
...
algo/core/germline.h
View file @
485c6f9b
...
...
@@ -68,6 +68,7 @@ class Germline {
int
delta_max
;
Stats
stats
;
Stats
stats_clones
;
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment