File size: 3,518 Bytes
7a85021 cd201c7 0586937 3aac6f5 12f29a7 cd201c7 7a85021 cd201c7 0586937 cd201c7 0586937 cd201c7 3aac6f5 cd201c7 8b1565d cd201c7 8b1565d cd201c7 8b1565d cd201c7 8b1565d cd201c7 8b1565d cd201c7 8b1565d 0586937 8b1565d 3aac6f5 12f29a7 3aac6f5 717eea4 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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
import { ProviderInfo } from "../types/heatmap";
// Scientific area tags
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"]
}
];
|