Skip to content

Commit

Permalink
Fix sequence length presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Aug 30, 2023
1 parent f47f998 commit db4a5a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/show-results/DisplayAssembly.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<template v-if="bakta">
<tr>
<th scope="row">Genome size:</th>
<td>{{ bakta.stats.size.toLocaleString("gb") + "bp" }}</td>
<td>{{ bakta.stats.size.toLocaleString("gb") + " bp" }}</td>
</tr>
<tr>
<th scope="row">GC:</th>
Expand All @@ -17,7 +17,7 @@
<template v-if="bakta">
<tr>
<th scope="row">N50:</th>
<td>{{ bakta.stats.n50 }}</td>
<td>{{ bakta.stats.n50.toLocaleString("gb") + " bp" }}</td>
</tr>
</template>
<template v-else>
Expand Down

0 comments on commit db4a5a4

Please sign in to comment.