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

show assembly and ancestry

parent 748c87ef
No related branches found
No related tags found
1 merge request!99show assembly and ancestry
...@@ -17,16 +17,25 @@ ...@@ -17,16 +17,25 @@
:class="{ 'selected-table': selectedInitTable === table.tableName }" :class="{ 'selected-table': selectedInitTable === table.tableName }"
:color="selectedInitTable === table.tableName ? 'blue lighten-4' : ''"> :color="selectedInitTable === table.tableName ? 'blue lighten-4' : ''">
<v-card-title>{{ table.name }}</v-card-title> <v-card-title>{{ table.name }}</v-card-title>
<v-card-text v-sanitized-html="$md.render(table.desc)"></v-card-text> <v-card-text class="row">
<v-card-text> <div
<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> <strong>{{ table.nb_snps.toLocaleString() }}</strong>
SNPS SNPS
</div> </div>
<div> <div class="col-12 col-md-6 pt-0 order-2">
<strong>{{ table.nb_phenotypes.toLocaleString() }}</strong> <strong>{{ table.nb_phenotypes.toLocaleString() }}</strong>
phenotypes phenotypes
</div> </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-text>
<v-card-actions class="card-buttons"> <v-card-actions class="card-buttons">
<v-btn class="button" color="primary" @click="selectAncestry(table.tableName)"> <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.
Please register or to comment