Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
STR
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Anne-Sophie Denommé-Pichon
STR
Commits
b79a0466
Commit
b79a0466
authored
Feb 09, 2020
by
Anne-Sophie Denommé-Pichon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keep only zscore >= 1.5 and dijen with outliers
parent
8ebd33d3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
triplets_outliers.py
plot/triplets_outliers.py
+3
-1
No files found.
plot/triplets_outliers.py
View file @
b79a0466
...
...
@@ -111,7 +111,7 @@ def display_outliers(locus, limits):
zscore_outliers
.
append
(
'.'
)
else
:
zscore_outliers
.
append
(
f
'{zscore:.3f}'
)
if
True
:
#zscore > 2
:
if
zscore
>=
1.5
:
actual_outlier
=
True
if
actual_outlier
:
dijen_outliers
[
tool
][
'Z score'
]
=
','
.
join
(
zscore_outliers
)
...
...
@@ -126,6 +126,8 @@ def display_outliers(locus, limits):
dijen_has_outliers
=
False
for
tool
,
tool_outliers
in
dijen_outliers
.
items
():
if
tool_outliers
:
for
tool_outlier_value
in
tool_outliers
.
values
():
if
tool_outlier_value
!=
'.'
:
dijen_has_outliers
=
True
all_outliers
.
extend
(
tool_outliers
.
values
())
else
:
...
...
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