-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
78 lines (76 loc) · 2.63 KB
/
config.js
File metadata and controls
78 lines (76 loc) · 2.63 KB
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
/**
* Configuration for EBP visualization pages
*
* Each page object contains:
* @property {string} name - Display name for the link
* @property {string} file - Path to the HTML file
* @property {string} description - Tooltip description
* @property {string} category - Category for grouping related visualizations
* @property {string} icon - Font Awesome icon class (optional)
*/
const copyright = {
notice: "© 2025 THE EARTH BIOGENOME PROJECT",
holder: "Fang Chen",
year: "2025",
rights: "All content and visualizations in this dashboard are protected by copyright law. Any unauthorized use, reproduction, or distribution is prohibited."
};
const pages = [
{
category: "Assembly Progress",
pages: [
{
name: "Progress Over the Years",
file: "./source files/progress_Family_Species_v2.html",
description: "Annual assembly progress at the family and species level",
icon: "fa-chart-line"
},
{
name: "Progress at all Taxonomic Levels",
file: "./source files/StackedRainbow_v3.html",
description: "Animation display of assembly progress at main taxonomic ranks",
icon: "fa-dna"
},
{
name: "Phylogenomic Display of Progress at Order Level",
file: "./source files/PhyloTree_order.html",
description: "Phylogenomic tree of orders with at least one species sequenced by EBP",
icon: "fa-tree"
},
{
name: "Progress by Phylum Groups",
file: "./source files/progress_Phylum.html",
description: "Number of eukaryotic species sequenced by EBP grouped by phylum",
icon: "fa-chart-bar"
},
{
name: "Affiliate Progress",
file: "./source files/Affiliates_Progress_sorted.html",
description: "Assembly progress across EBP affiliate projects",
icon: "fa-project-diagram"
},
{
name: "EBP Contribution to Assemblies Meeting EBP Metrics",
file: "./source files/progress_EBPmetrics.html",
description: "EBP's contribution to assemblies meeting EBP quality metrics at species, genus, and family levels",
icon: "fa-chart-pie"
}
]
},
{
category: "Network Visualization",
pages: [
{
name: "Global Distribution",
file: "./source files/projectsMap_v6.html",
description: "Geographic distribution of EBP affiliates",
icon: "fa-globe"
},
{
name: "Affiliate Network",
file: "./source files/WireMaps_v6.html",
description: "Wired map showing EBP and affiliate network connections",
icon: "fa-network-wired"
}
]
}
];