Skip to content
GitLab
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
2cb64106
Commit
2cb64106
authored
Mar 01, 2017
by
Mathieu Giraud
Browse files
model.js: do not take into account not-quantifiable clones in the computation of 'smaller clones'
parent
bbc6c6f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/model.js
View file @
2cb64106
...
...
@@ -1081,7 +1081,7 @@ changeCloneNotation: function(cloneNotationType) {
var
c
=
this
.
clone
(
pos
)
if
(
c
.
isVirtual
())
{
other_quantifiable_clones
.
push
(
pos
);
}
else
if
(
c
.
isActive
())
{
}
else
if
(
c
.
isActive
()
&&
c
.
quantifiable
)
{
for
(
var
sample
=
0
;
sample
<
this
.
samples
.
number
;
sample
++
)
{
for
(
var
k
=
0
;
k
<
this
.
clusters
[
pos
].
length
;
k
++
)
{
newOthers
[
c
.
germline
][
sample
]
-=
this
.
clone
(
this
.
clusters
[
pos
][
k
]).
get
(
'
reads
'
,
sample
);
...
...
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