Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aevol-eukaryotes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LUISELLI Juliette
aevol-eukaryotes
Commits
6ea07b20
Commit
6ea07b20
authored
1 year ago
by
LUISELLI Juliette
Browse files
Options
Downloads
Patches
Plain Diff
fix undefined var in prok mode
parent
06d8151b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/libaevol/mutation/Recombination.h
+7
-1
7 additions, 1 deletion
src/libaevol/mutation/Recombination.h
with
7 additions
and
1 deletion
src/libaevol/mutation/Recombination.h
+
7
−
1
View file @
6ea07b20
...
...
@@ -72,7 +72,13 @@ class Recombination : public Mutation {
// ==========================================================================
// Getters
// ==========================================================================
virtual
MutationType
mut_type
()
const
override
{
return
RECOMB
;
};
virtual
MutationType
mut_type
()
const
override
{
#ifdef __EUKARYOTE
return
RECOMB
;
#else
exit
(
1
);
#endif
};
int32_t
posA
()
const
{
return
posA_
;
}
int32_t
posB
()
const
{
return
posB_
;
}
int16_t
align_score
()
const
{
return
align_score_
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment