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
GBCS
Je
Commits
1ff31085
Commit
1ff31085
authored
Jul 31, 2017
by
Charles Girardot
Browse files
corrected a case wher ambigous reads were still kept.
parent
59a47500
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/embl/gbcs/je/jemultiplexer/Jemultiplexer.java
View file @
1ff31085
...
...
@@ -772,10 +772,11 @@ public class Jemultiplexer extends AbstractJemultiplexer {
chosen_sample
=
spl1
;
}
else
{
//look int delta
if
(
bc1
.
mismatchesToSecondBest
!=
bc2
.
mismatchesToSecondBest
){
chosen_sample
=
bc1
.
mismatchesToSecondBest
>
bc2
.
mismatchesToSecondBest
?
spl1:
spl2
;
}
//look int delta : we don t do this anymore in v1.2
// this was a bug as it always resolve to the same sample when barcodes have no mismatches (see above)
// if(bc1.mismatchesToSecondBest!=bc2.mismatchesToSecondBest){
// chosen_sample = bc1.mismatchesToSecondBest>bc2.mismatchesToSecondBest? spl1:spl2;
// }
}
}
}
...
...
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