File size: 2,127 Bytes
7a85021 cd201c7 7a85021 cd201c7 7a85021 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
import { ProviderInfo } from "../types/heatmap";
// Scientific area tags
export const SCIENTIFIC_TAGS = [
{ id: "antibody", label: "antibody" },
{ id: "hormones", label: "hormones" },
{ 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: "data", label: "data" },
{ id: "education", label: "education" },
];
export const ORGANIZATIONS: ProviderInfo[] = [
{
color: "#ff7000",
authors: ["LeMaterial", "Entalpic"],
tags: ["materials-science", "drug-discovery"]
},
{
color: "#1877F2",
authors: ["arcinstitute"],
tags: ["biology", "medicine", "drug-discovery"]
},
{
color: "#10A37F",
authors: ["SandboxAQ"],
tags: ["physics", "materials-science", "drug-discovery"]
},
{
color: "#cc785c",
authors: ["Anthropic"],
tags: ["data", "education"]
},
{
color: "#DB4437",
authors: ["polymathic-ai"],
tags: ["physics", "data"]
},
{
color: "#F45098",
authors: ["NASA-AIML", "nasa-ibm-ai4science", "nasa-impact"],
tags: ["physics", "data", "education"]
},
{
color: "#FEB800",
authors: ["facebook"],
tags: ["data", "education"]
},
{
color: "#76B900",
authors: ["nvidia"],
tags: ["data", "physics", "materials-science"]
},
{
color: "#0088cc",
authors: ["Merck"],
tags: ["drug-discovery", "medicine", "biology"]
},
{
color: "#0088cc",
authors: ["wanglab"],
tags: ["biology", "medicine"]
},
{
color: "#0088cc",
authors: ["jablonkagroup"],
tags: ["materials-science", "drug-discovery"]
},
{
color: "#4C6EE6",
authors: ["Orbital-Materials"],
tags: ["materials-science", "physics"]
},
{
color: "#4C6EE6",
authors: ["Xaira-Therapeutics"],
tags: ["drug-discovery", "medicine", "biology", "antibody"]
},
{
color: "#FEC912",
authors: ["hugging-science"],
tags: ["data", "education", "biology", "physics"]
},
];
|