UNPKG

ucsc-xena-datapages

Version:
39 lines (36 loc) 1.54 kB
'use strict'; var defaultLocal = "https://local.xena.ucsc.edu:7223", defaultUCSC = "https://ucscpublic.xenahubs.net", defaultTCGA = "https://tcga.xenahubs.net", defaultICGC = "https://icgc.xenahubs.net", defaultTOIL = "https://toil.xenahubs.net", defaultPCAWG = "https://pcawg.xenahubs.net", defaultGDC = "https://gdc.xenahubs.net", defaultSinglecell = "https://singlecell.xenahubs.net", defaultPancanAtlas = "https://pancanatlas.xenahubs.net", defaultTreehouse = "https://treehouse.xenahubs.net", defaultNames = {}, defaultAllHubs = [defaultLocal, defaultUCSC, defaultTCGA, defaultICGC, defaultTOIL, defaultTreehouse, defaultGDC], defaultHosts = [defaultLocal, defaultTCGA, defaultUCSC, defaultICGC, defaultTOIL, defaultTreehouse, defaultGDC], defaultState = { activeHosts: defaultHosts, allHosts: defaultAllHubs, userHosts: defaultHosts, localHost: defaultLocal, metadataFilterHosts: defaultHosts }; defaultNames[defaultLocal] = "My computer hub"; defaultNames[defaultUCSC] = "UCSC public hub"; defaultNames[defaultTCGA] = "TCGA hub"; defaultNames[defaultICGC] = "ICGC hub"; defaultNames[defaultTOIL] = "GA4GH (TOIL) hub"; defaultNames[defaultGDC] = "GDC hub"; defaultNames[defaultPCAWG] = "PCAWG public hub"; defaultNames[defaultSinglecell] = "Single-cell RNAseq hub"; defaultNames[defaultPancanAtlas] = "PanCanAtlas hub"; defaultNames[defaultTreehouse] = "Treehouse Hub"; module.exports = { defaultHosts: defaultHosts, defaultState: defaultState, defaultNames: defaultNames };