diff --git a/src/assets/mave-registry-logo.png b/src/assets/mave-registry-logo.png new file mode 100644 index 00000000..b4c33b8a Binary files /dev/null and b/src/assets/mave-registry-logo.png differ diff --git a/src/components/screens/AboutView.vue b/src/components/screens/AboutView.vue index 2d8c7a01..0612ca29 100644 --- a/src/components/screens/AboutView.vue +++ b/src/components/screens/AboutView.vue @@ -60,9 +60,18 @@ class="h-7 object-contain object-left" :src="partner.logoSrc" /> - -
{{ partner.name }}
+
{{ partner.name }}
{{ partner.description }}
+ + Visit site → + @@ -83,7 +92,7 @@
+ +
+

Clinical application

+

+ The Alliance for Variant Effects (AVE) maintains a + Clinical Application of Variant Effect Data + page covering how MAVE functional scores can be used in clinical genomics and for variant interpretation. +

+
+

Contact us

@@ -89,7 +106,7 @@ import AccordionContent from 'primevue/accordioncontent' import MvLayout from '@/components/layout/MvLayout.vue' import MvPageHeader from '@/components/layout/MvPageHeader.vue' -import {ZULIP_CHAT, GITHUB_UI_ISSUES} from '@/lib/links' +import {ZULIP_CHAT, GITHUB_UI_ISSUES, AVE_CLINICAL_APPLICATION} from '@/lib/links' const CHANNELS = [ { @@ -174,7 +191,8 @@ export default defineComponent({ channels: CHANNELS, faqs: FAQS, ZULIP_CHAT, - GITHUB_UI_ISSUES + GITHUB_UI_ISSUES, + AVE_CLINICAL_APPLICATION } } }) diff --git a/src/components/screens/SearchVariantsScreen.vue b/src/components/screens/SearchVariantsScreen.vue index 84882b07..de32bcee 100644 --- a/src/components/screens/SearchVariantsScreen.vue +++ b/src/components/screens/SearchVariantsScreen.vue @@ -12,6 +12,17 @@ calibrations, provide intuitive visualizations, and export structured evidence compatible with ACMG/AMP variant classification guidelines.

+

+ Learn more about + evaluating MAVE functional assays and integrating them into clinical practice. +

@@ -675,6 +686,7 @@ import {components} from '@/schema/openapi' import {getScoreSetShortName} from '@/lib/score-sets' import {clinVarHgvsSearchStringRegex, hgvsSearchStringRegex} from '@/lib/mave-hgvs' import {SEARCH_COLORS} from '@/data/search' +import {AVE_CLINICAL_APPLICATION} from '@/lib/links' import { HOW_IT_WORKS_STEPS, MAVEMD_COLLECTION_URN, @@ -714,7 +726,7 @@ export default defineComponent({ const router = useRouter() const toast = useToast() const {getEntity} = useEntityCache() - return {route, router, toast, getEntity, getScoreSetShortName, scoreSetUrnFromVariantUrn} + return {route, router, toast, getEntity, getScoreSetShortName, scoreSetUrnFromVariantUrn, AVE_CLINICAL_APPLICATION} }, data: function () { diff --git a/src/lib/links.ts b/src/lib/links.ts index 84d433cc..26a79c09 100644 --- a/src/lib/links.ts +++ b/src/lib/links.ts @@ -12,6 +12,14 @@ export const GITHUB_API_ISSUES = `${GITHUB_API_URL}/issues` export const MAVEDB_PRODUCTION = 'https://mavedb.org' +export const AVE_CLINICAL_APPLICATION = 'https://www.varianteffect.org/clinical-application/' +export const MAVE_REGISTRY = 'https://registry.varianteffect.org/' + +export const IGVF_URL = 'https://www.igvf.org/' +export const CLINGEN_URL = 'https://clinicalgenome.org/' +export const GA4GH_URL = 'https://www.ga4gh.org/' +export const CLINVAR_URL = 'https://www.ncbi.nlm.nih.gov/clinvar/' + /** * Build a Zulip link to report a dataset issue for a specific URN. */