From 00c5166df2c255516a4029116b5eec1744649a9a Mon Sep 17 00:00:00 2001 From: Rachel <rtorchet@pasteur.fr> Date: Mon, 25 Oct 2021 10:45:04 +0200 Subject: [PATCH] Update tiny stuffs --- client/assets/css/global.css | 10 ++++++++++ client/pages/index.vue | 17 ++++++++++++++++- client/pages/phenotypes.vue | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/client/assets/css/global.css b/client/assets/css/global.css index db428185..8249ae5f 100644 --- a/client/assets/css/global.css +++ b/client/assets/css/global.css @@ -60,6 +60,16 @@ h2 { font-family: 'PlayfairDisplayBld'; + font-size: 24px; + } + + h3 { + text-align: center; + font-size: 28px; + } + + h4 { + font-size: 22px; } /* WEBSITE HEADER */ diff --git a/client/pages/index.vue b/client/pages/index.vue index f79463c3..ffb2645c 100644 --- a/client/pages/index.vue +++ b/client/pages/index.vue @@ -1,6 +1,7 @@ <template> <div> - <h1 class="main_title"> Welcome to JASS v2.1, a web interface for the Joint Analysis of GWAS Summary Statistics</h1> + <h1 class="main_title"> Welcome to JASS v2.1</h1> + <h3>a web interface for the Joint Analysis of GWAS Summary Statistics</h3> <p class="main_intro"> The JASS web interface allows for a fast derivation of the joint tests of selected genome-wide association study (GWAS) summary statistics. The current version allows to perform two multivariate tests, <ol><li>an omnibus K degree of freedom test, and </li> @@ -10,7 +11,21 @@ <br> <br>The online version currently includes XXX publicly available GWAS classified into XX biological categories. All GWAS have been pre-processed using the <a href="https://gitlab.pasteur.fr/statistical-genetics/jass_suite_pipeline">JASS pre-processing pipeline</a> and imputation of missing statistics has been conducted using the <a href="https://gitlab.pasteur.fr/statistical-genetics/raiss">RAISS software</a>, resulting in a total of <b>{{initmeta.nb_snps}} SNPs</b>. </p> + <div style="text-align: center; background-color: #fbfbfb; padding: 20px; width: 80%; margin: 30px auto;"> + <h2> Citations </h2> + <p style="text-align:center; padding:20px;"> + <h4>When using JASS in publication, please use the following citation:</h4> + <b><i class="fas fa-quote-left"></i>JASS: command line and web interface for the joint analysis of GWAS results.</b> <i>NAR Genom Bioinform</i> 2020 Mar;2(1):lqaa003. +doi: 10.1093/nargab/lqaa003. Epub 2020 Jan 24. <a href="https://academic.oup.com/nargab/article/2/1/lqaa003/5715214" target="_blank">https://academic.oup.com/nargab/article/2/1/lqaa003/5715214</a><br> +<br> +<h4>When refereeing to the imputation of summary statistics, please use the following citation:</h4> +<b>RAISS: robust and accurate imputation from summary statistics.</b> <i>Bioinformatics</i> 2019 Nov 1;35(22):4837-4839. +doi: 10.1093/bioinformatics/btz466. <a href="https://academic.oup.com/bioinformatics/article/35/22/4837/5512360" target="_blank">https://academic.oup.com/bioinformatics/article/35/22/4837/5512360</a><br> +<br> +<h4>When refereeing to the proof of concept, please use the following citation:</h4> +</p> + </div> <v-container fluid> <v-row dense> <AnalysisCard v-for="analysis in analysis" :key="analysis.title" :title="analysis.title" :description="analysis.description" :short_btn="analysis.short_btn" :short_desc="analysis.short_desc" :link="analysis.link" :myStyle="analysis.myStyle" :myClass="analysis.myClass" :myImg="analysis.myImg" /> diff --git a/client/pages/phenotypes.vue b/client/pages/phenotypes.vue index 71047fcc..c808cee5 100644 --- a/client/pages/phenotypes.vue +++ b/client/pages/phenotypes.vue @@ -34,7 +34,7 @@ Please select the traits you want to analyze jointly with the omnibus test. A re </v-data-table> <div align="left" justify="start"> <v-btn depressed color="primary" v-on:click="runAnalysis()"> - Run analysis + Launch analysis </v-btn> </div> </v-app> -- GitLab