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
61a24c7d
Commit
61a24c7d
authored
Mar 16, 2015
by
Mathieu Giraud
Browse files
core/germline.{h,cpp}: Germline constructor without rep5/rep3
Who wants to define Germlines without germlines ?
parent
7c403883
Changes
2
Hide whitespace changes
Inline
Side-by-side
algo/core/germline.cpp
View file @
61a24c7d
...
...
@@ -24,6 +24,14 @@ void Germline::init(string _code, char _shortcut,
stats_clones
.
setLabel
(
""
);
}
Germline
::
Germline
(
string
_code
,
char
_shortcut
,
int
_delta_min
,
int
_delta_max
)
{
init
(
_code
,
_shortcut
,
_delta_min
,
_delta_max
);
}
Germline
::
Germline
(
string
_code
,
char
_shortcut
,
string
f_rep_5
,
string
f_rep_4
,
string
f_rep_3
,
int
_delta_min
,
int
_delta_max
)
...
...
algo/core/germline.h
View file @
61a24c7d
...
...
@@ -40,6 +40,9 @@ class Germline {
Fasta
_rep_5
,
Fasta
_rep_4
,
Fasta
_rep_3
,
int
_delta_min
,
int
_delta_max
);
Germline
(
string
_code
,
char
_shortcut
,
int
_delta_min
,
int
_delta_max
);
~
Germline
();
string
code
;
...
...
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