Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
07d5cbbe
Commit
07d5cbbe
authored
Apr 05, 2017
by
Mathieu Giraud
Browse files
js/clone.js: .getHtmlInfo, remove spaces
If there need some space, we will do it through CSS See
#2338
.
parent
889adf77
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/clone.js
View file @
07d5cbbe
...
...
@@ -1030,7 +1030,7 @@ Clone.prototype = {
html
+=
row_1
(
"
clone name
"
,
this
.
getName
())
html
+=
row_1
(
"
clone short name
"
,
this
.
getShortName
())
html
+=
"
<tr><td>
clone size (n-reads (total reads)
)</td>
"
html
+=
"
<tr><td>clone size (n-reads (total reads))</td>
"
for
(
var
i
=
0
;
i
<
time_length
;
i
++
)
{
html
+=
"
<td>
"
html
+=
this
.
getReads
(
this
.
m
.
samples
.
order
[
i
])
+
"
(
"
+
this
.
m
.
reads
.
segmented
[
this
.
m
.
samples
.
order
[
i
]]
+
"
)
"
...
...
@@ -1045,7 +1045,7 @@ Clone.prototype = {
}
html
+=
"
</td>
"
}
html
+=
"
</tr><tr><td>
clone size (%)</td>
"
html
+=
"
</tr><tr><td>clone size (%)</td>
"
for
(
var
i
=
0
;
i
<
time_length
;
i
++
)
{
html
+=
"
<td>
"
+
this
.
getStrSize
(
this
.
m
.
samples
.
order
[
i
])
+
"
</td>
"
}
...
...
@@ -1073,19 +1073,19 @@ Clone.prototype = {
if
(
typeof
this
.
eValue
!=
'
undefined
'
)
{
html
+=
row_1
(
"
e-value
"
,
"
<span
"
+
(
this
.
eValue
<
this
.
EVALUE_WARN
?
"
class='warning'
"
:
""
)
+
(
this
.
eValue
>
this
.
EVALUE_WARN
?
"
class='warning'
"
:
""
)
+
"
>
"
+
this
.
eValue
+
"
</span>
"
)
}
// abundance info
html
+=
"
<tr><td>
size (n-reads (total reads)
)</td>
"
html
+=
"
<tr><td>size (n-reads (total reads))</td>
"
for
(
var
i
=
0
;
i
<
time_length
;
i
++
)
{
html
+=
"
<td>
"
+
this
.
get
(
'
reads
'
,
this
.
m
.
samples
.
order
[
i
])
+
"
(
"
+
this
.
m
.
reads
.
segmented
[
this
.
m
.
samples
.
order
[
i
]]
+
"
)</td>
"
}
html
+=
"
</tr>
"
html
+=
"
<tr><td>
size (%)</td>
"
html
+=
"
<tr><td>size (%)</td>
"
for
(
var
i
=
0
;
i
<
time_length
;
i
++
)
{
html
+=
"
<td>
"
+
this
.
getStrSequenceSize
(
this
.
m
.
samples
.
order
[
i
])
+
"
</td>
"
}
...
...
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