|
|
import { ProviderInfo } from "../types/heatmap"; |
|
|
|
|
|
|
|
|
export const SCIENTIFIC_TAGS = [ |
|
|
{ id: "materials-science", label: "materials-science" }, |
|
|
{ id: "drug-discovery", label: "drug-discovery" }, |
|
|
{ id: "biology", label: "biology" }, |
|
|
{ id: "medicine", label: "medicine" }, |
|
|
{ id: "physics", label: "physics" }, |
|
|
{ id: "chemistry", label: "chemistry" }, |
|
|
{ id: "quantum", label: "quantum" }, |
|
|
{ id: "climate", label: "climate" }, |
|
|
{ id: "math", label: "math" }, |
|
|
{ id: "astronomy", label: "astronomy" }, |
|
|
]; |
|
|
|
|
|
export const ORGANIZATIONS: ProviderInfo[] = [ |
|
|
{ |
|
|
color: "#ff7000", |
|
|
authors: ["LeMaterial", "Entalpic"], |
|
|
tags: ["materials-science", "chemistry"] |
|
|
}, |
|
|
{ |
|
|
color: "#1877F2", |
|
|
authors: ["arcinstitute"], |
|
|
tags: ["biology", "medicine", "drug-discovery"] |
|
|
}, |
|
|
{ |
|
|
color: "#10A37F", |
|
|
authors: ["SandboxAQ"], |
|
|
tags: ["physics", "materials-science", "quantum"] |
|
|
}, |
|
|
{ |
|
|
color: "#DB4437", |
|
|
authors: ["polymathic-ai"], |
|
|
tags: ["physics", "data"] |
|
|
}, |
|
|
{ |
|
|
color: "#F45098", |
|
|
authors: ["NASA-AIML", "nasa-ibm-ai4science", "nasa-impact"], |
|
|
tags: ["physics", "data", "education", "heliophysics", "astronomy", "climate"] |
|
|
}, |
|
|
{ |
|
|
color: "#FEB800", |
|
|
authors: ["facebook"], |
|
|
tags: ["data", "education", "chemistry"] |
|
|
}, |
|
|
{ |
|
|
color: "#76B900", |
|
|
authors: ["nvidia"], |
|
|
tags: ["data", "physics", "materials-science"] |
|
|
}, |
|
|
{ |
|
|
color: "#0088cc", |
|
|
authors: ["Merck"], |
|
|
tags: ["drug-discovery", "medicine", "biology"] |
|
|
}, |
|
|
{ |
|
|
color: "#cc785c", |
|
|
authors: ["wanglab"], |
|
|
tags: ["biology", "medicine"] |
|
|
}, |
|
|
{ |
|
|
color: "#0088cc", |
|
|
authors: ["jablonkagroup"], |
|
|
tags: ["materials-science", "chemistry"] |
|
|
}, |
|
|
{ |
|
|
color: "#4C6EE6", |
|
|
authors: ["Orbital-Materials"], |
|
|
tags: ["materials-science", "physics"] |
|
|
}, |
|
|
{ |
|
|
color: "#ff7000", |
|
|
authors: ["Xaira-Therapeutics"], |
|
|
tags: ["drug-discovery", "medicine", "biology", "antibody"] |
|
|
}, |
|
|
{ |
|
|
color: "#4C6EE6", |
|
|
authors: ["tahoebio"], |
|
|
tags: ["drug-discovery", "medicine", "biology", "single-cell"] |
|
|
}, |
|
|
{ |
|
|
color: "#FEC912", |
|
|
authors: ["hugging-science"], |
|
|
tags: ["data", "education", "biology", "physics"] |
|
|
}, |
|
|
{ |
|
|
color: "#ff7000", |
|
|
authors: ["miriad"], |
|
|
tags: ["data", "medicine", "biology"] |
|
|
}, |
|
|
{ |
|
|
color: "#76B900", |
|
|
authors: ["camlab-ethz"], |
|
|
tags: ["data", "physics"] |
|
|
}, |
|
|
{ |
|
|
color: "#FEC912", |
|
|
authors: ["atomind"], |
|
|
tags: ["materials-science", "chemistry"] |
|
|
}, |
|
|
{ |
|
|
color: "#FEB800", |
|
|
authors: ["futurehouse"], |
|
|
tags: ["science", "chemistry", "education"] |
|
|
}, |
|
|
{ |
|
|
color: "#ff7000", |
|
|
authors: ["ginkgo-datapoints"], |
|
|
tags: ["biology", "antibody", "medicine", "drug-discovery"] |
|
|
}, |
|
|
{ |
|
|
color: "#FEC912", |
|
|
authors: ["isp-uv-es"], |
|
|
tags: ["climate"] |
|
|
}, |
|
|
{ |
|
|
color: "#ff7000", |
|
|
authors: ["maomlab"], |
|
|
tags: ["medicine", "biology"] |
|
|
}, |
|
|
{ |
|
|
color: "#4C6EE6", |
|
|
authors: ["oxai4science"], |
|
|
tags: ["physics", "chemistry", "materials-science"] |
|
|
}, |
|
|
{ |
|
|
color: "#4C6EE6", |
|
|
authors: ["AI-MO"], |
|
|
tags: ["math"] |
|
|
}, |
|
|
{ |
|
|
color: "#DB4437", |
|
|
authors: ["AccelerationConsortium"], |
|
|
tags: ["materials-science"] |
|
|
}, |
|
|
{ |
|
|
color: "#10A37F", |
|
|
authors: ["UniverseTBD"], |
|
|
tags: ["physics", "astronomy"] |
|
|
}, |
|
|
{ |
|
|
color: "#0D87CA", |
|
|
authors: ["OpenFold"], |
|
|
tags: ["biology"] |
|
|
}, |
|
|
{ |
|
|
color: "#65B204", |
|
|
authors: ["boltzgen"], |
|
|
tags: ["biology"] |
|
|
} |
|
|
]; |
|
|
|