Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
eafb88cb
Commit
eafb88cb
authored
Apr 07, 2015
by
Mikaël Salson
Browse files
KmerMultiSegmenter: Uniformisation (and better classification) of segmentation statuses
parent
40c17d5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
algo/core/segment.cpp
View file @
eafb88cb
...
...
@@ -373,13 +373,10 @@ KmerMultiSegmenter::KmerMultiSegmenter(Sequence seq, MultiGermline *multigermlin
&&
the_kseg
->
evalue_left
<=
threshold_nb_expected
&&
the_kseg
->
evalue_right
<=
threshold_nb_expected
)
{
the_kseg
->
setSegmentationStatus
(
UNSEG_TOO_FEW_ZERO
);
}
if
(
the_kseg
->
evalue_left
>
threshold_nb_expected
)
{
the_kseg
->
setSegmentationStatus
(
UNSEG_NOISY
);
// TOO_FEW_V ?
}
if
(
the_kseg
->
evalue_right
>
threshold_nb_expected
)
{
the_kseg
->
setSegmentationStatus
(
UNSEG_NOISY
);
// TOO_FEW_J ?
}
else
if
(
the_kseg
->
evalue_left
>
threshold_nb_expected
)
{
the_kseg
->
setSegmentationStatus
(
UNSEG_TOO_FEW_V
);
}
else
if
(
the_kseg
->
evalue_right
>
threshold_nb_expected
)
{
the_kseg
->
setSegmentationStatus
(
UNSEG_TOO_FEW_J
);
}
}
}
...
...
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