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
vidjil
vidjil
Commits
6cb590bd
Commit
6cb590bd
authored
Jun 15, 2018
by
Mathieu Giraud
Committed by
Mikaël Salson
Jun 18, 2018
Browse files
js/model.js: remove debug commands
parent
a05b4383
Pipeline
#29003
passed with stages
in 6 minutes and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
browser/js/model.js
View file @
6cb590bd
...
...
@@ -881,17 +881,15 @@ changeAlleleNotation: function(alleleNotation) {
if
(
typeof
threshold
===
"
undefined
"
)
{
threshold
=
0.95
}
r
=
[]
refReads
=
this
.
clone
(
ref
).
getReadsAllSamples
(
logadd1
)
r
.
push
(
refReads
)
for
(
var
i
=
0
;
i
<
this
.
clones
.
length
;
i
++
){
var
clone
=
this
.
clone
(
i
);
var
coeff
=
pearsonCoeff
(
refReads
,
clone
.
getReadsAllSamples
(
logadd1
))
clone
.
select
=
(
Math
.
abs
(
coeff
)
>
threshold
)
r
.
push
([
i
,
coeff
,
threshold
,
clone
.
select
])
}
this
.
updateStyle
();
return
r
;
this
.
updateStyle
();
},
...
...
Write
Preview
Supports
Markdown
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