Skip to content
Snippets Groups Projects
Commit 321c1a94 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

Merge branch 'show-ancestry-assembly' into 'master'

show assembly and ancestry

See merge request statistical-genetics/jass!99
parents 054a7e2c a0de5f8d
No related branches found
No related tags found
1 merge request!99show assembly and ancestry
......@@ -17,16 +17,25 @@
:class="{ 'selected-table': selectedInitTable === table.tableName }"
:color="selectedInitTable === table.tableName ? 'blue lighten-4' : ''">
<v-card-title>{{ table.name }}</v-card-title>
<v-card-text v-sanitized-html="$md.render(table.desc)"></v-card-text>
<v-card-text>
<div>
<v-card-text class="row">
<div
v-sanitized-html="$md.render(table.desc)"
class="col-12 pt-0 pb-0"
></div>
<div class="col-12 col-md-6 pt-0">
<strong>{{ table.nb_snps.toLocaleString() }}</strong>
SNPS
</div>
<div>
<div class="col-12 col-md-6 pt-0 order-2">
<strong>{{ table.nb_phenotypes.toLocaleString() }}</strong>
phenotypes
</div>
<div class="col-12 col-md-6 pt-0 order-1">
assembly: <strong>{{ table.assembly.toLocaleString() }}</strong>
</div>
<div class="col-12 col-md-6 pt-0 order-2">
ancestry: <strong>{{ table.ancestry.toLocaleString() }}</strong>
</div>
</v-card-text>
<v-card-actions class="card-buttons">
<v-btn class="button" color="primary" @click="selectAncestry(table.tableName)">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment