Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Maintenance - Mise à jour mensuelle Lundi 6 Février entre 7h00 et 9h00
Open sidebar
genotoul-bioinfo
ng6
Commits
435b6fa0
Commit
435b6fa0
authored
Jul 09, 2014
by
Penom Nom
Browse files
Fix bug on min sample search.
parent
2e206f29
Changes
1
Hide whitespace changes
Inline
Side-by-side
workflows/components/demultiplexstats.py
View file @
435b6fa0
...
...
@@ -71,7 +71,7 @@ class DemultiplexStats (Analysis):
min_determined
=
-
1
indices_stat
=
self
.
_merged_indices_stats
(
self
.
determined_idx_count_files
)
for
index_seq
in
indices_stat
.
keys
():
if
min_determined
==
-
1
or
min
>
indices_stat
[
index_seq
][
"number"
]
:
if
min_determined
==
-
1
or
min
_determined
>
indices_stat
[
index_seq
][
"number"
]
:
min_determined
=
indices_stat
[
index_seq
][
"number"
]
self
.
_add_result_element
(
index_seq
,
"number"
,
str
(
indices_stat
[
index_seq
][
"number"
]),
"determined"
)
self
.
_add_result_element
(
index_seq
,
"passing_filter"
,
str
(
indices_stat
[
index_seq
][
"passing_filter"
]),
"determined"
)
...
...
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