Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/logo-ave-alliance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 17 additions & 1 deletion src/components/screens/AboutView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,20 @@ import {useHead} from '@unhead/vue'

import MvLayout from '@/components/layout/MvLayout.vue'
import MvPageHeader from '@/components/layout/MvPageHeader.vue'
import aveAllianceLogo from '@/assets/logo-ave-alliance.png'
import igvfLogo from '@/assets/igvf-tag.png'
import maveRegistryLogo from '@/assets/mave-registry-logo.png'
import zulipLogo from '@/assets/zulip-logo.png'
import {GITHUB_API_URL, GITHUB_UI_URL, MAVE_REGISTRY, IGVF_URL, CLINGEN_URL, GA4GH_URL, CLINVAR_URL} from '@/lib/links'
import {
GITHUB_API_URL,
GITHUB_UI_URL,
MAVE_REGISTRY,
AVE_ALLIANCE_URL,
IGVF_URL,
CLINGEN_URL,
GA4GH_URL,
CLINVAR_URL
} from '@/lib/links'

const DATA_MODEL_STEPS = [
{
Expand All @@ -230,6 +240,12 @@ const DATA_MODEL_STEPS = [

// TODO: Add more partners and collaborators, and include links to their websites and/or logos where available
const PARTNERS = [
{
name: 'AVE Alliance',
description: 'A global community dedicated to systematically measuring and interpreting genetic variant effects.',
logoSrc: aveAllianceLogo,
url: AVE_ALLIANCE_URL
},
{
name: 'IGVF Consortium',
description: 'Functional genomics data from the Impact of Genomic Variation on Function consortium.',
Expand Down
1 change: 1 addition & 0 deletions src/lib/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const GITHUB_API_ISSUES = `${GITHUB_API_URL}/issues`

export const MAVEDB_PRODUCTION = 'https://mavedb.org'

export const AVE_ALLIANCE_URL = 'https://www.varianteffect.org/'
export const AVE_CLINICAL_APPLICATION = 'https://www.varianteffect.org/clinical-application/'
export const MAVE_REGISTRY = 'https://registry.varianteffect.org/'

Expand Down
Loading