Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
QTL
spell-qtl
Commits
679163b5
Commit
679163b5
authored
Jun 25, 2018
by
Damien Leroux
Browse files
Version bump.
parent
98be4b2f
Changes
2
Show whitespace changes
Inline
Side-by-side
include/bayes/output.h
View file @
679163b5
...
...
@@ -1195,7 +1195,13 @@ struct gamete_LV_database {
for
(
size_t
i
=
0
;
i
<
db
->
data
.
size
();
++
i
,
++
di
)
{
size_t
mi
=
0
;
for
(
const
auto
&
m
:
marker_names
)
{
em_state_per_mark_per_ind
[
mi
][
i
].
binary
=
di
->
second
.
lv
.
find
(
m
)
->
second
.
binary
;
auto
dii
=
di
->
second
.
lv
.
find
(
m
);
if
(
dii
==
di
->
second
.
lv
.
end
())
{
std
::
string
msg
(
"Unknown marker "
);
msg
+=
m
;
throw
std
::
runtime_error
(
msg
);
}
em_state_per_mark_per_ind
[
mi
][
i
].
binary
=
dii
->
second
.
binary
;
++
mi
;
}
}
...
...
src/r-glue/DESCRIPTION
View file @
679163b5
Package: spellmaptools
Version: 0.
5
Version: 0.
6
Date: 2018-05-03
Title: SpellMapTools
Authors@R: c(person("Damien", "Leroux", role = c("aut", "cre"), email = "damien.leroux@inra.fr"),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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