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
Metagenomics
metagenedb
Commits
925b5b5e
Commit
925b5b5e
authored
Dec 04, 2019
by
Kenzo-Hugo Hillion
♻
Browse files
add more values for gene length
parent
61af92b5
Pipeline
#19268
passed with stages
in 2 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
frontend/src/views/Stats.vue
View file @
925b5b5e
...
...
@@ -35,7 +35,7 @@
<v-flex
xs4
md2
>
<v-select
background-color=
"primary"
:items=
"this.
geneLength
Choice"
:items=
"this.
windowSize
Choice"
label=
"Window Length"
color=
"secondary"
v-model=
"geneLengthWindowSize"
...
...
@@ -98,7 +98,7 @@ export default {
geneCountFunctions
:
{},
geneCountTaxo
:
{},
geneCountFull
:
{},
geneLengthWindowSize
:
4
00
,
geneLengthWindowSize
:
2
00
,
stopAt
:
5000
,
taxoCounts
:
{},
taxLevel
:
'
phylum
'
,
...
...
@@ -106,10 +106,18 @@ export default {
},
computed
:
{
stopAtChoice
()
{
return
[
5000
,
10000
];
let
listStopAt
=
[];
for
(
let
i
=
4000
;
i
<=
10000
;
i
+=
1000
)
{
listStopAt
.
push
(
i
);
};
return
listStopAt
;
},
geneLengthChoice
()
{
return
[
200
,
400
,
500
,
1000
];
windowSizeChoice
()
{
let
listWindowSize
=
[
100
];
for
(
let
i
=
200
;
i
<=
1000
;
i
+=
200
)
{
listWindowSize
.
push
(
i
);
};
return
listWindowSize
;
},
selectLevel
()
{
return
[
'
kingdom
'
,
'
superkingdom
'
,
'
phylum
'
,
'
class
'
,
'
order
'
,
'
family
'
,
'
genus
'
];
...
...
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