diff --git a/client/pages/gwas.vue b/client/pages/gwas.vue
index 8d9a397a802059c637049e6aac6b5422a7f5ada5..c9b643ddf8dbcef11b305cabf2d6e97e3c06214a 100644
--- a/client/pages/gwas.vue
+++ b/client/pages/gwas.vue
@@ -59,6 +59,10 @@
             class="mx-4">
           </v-text-field>
         </template>
+
+        <template v-slot:item.ref="{ item }">
+          <a class="ref-link" :href="item.ref_link" target="_blank" rel="noreferrer">{{ item.ref }}</a>
+        </template>
       </v-data-table>
       <div class="start-button">
         <v-btn class="button" color="primary" :disabled="selectedRows.length <= 1" @click="runAnalysis()">
@@ -182,4 +186,8 @@ section h2 {
   text-align: center;
   margin-top: 20px;
 }
+
+.ref-link {
+  font-size: inherit;
+}
 </style>