-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
87 lines (87 loc) · 2.84 KB
/
data.json
File metadata and controls
87 lines (87 loc) · 2.84 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
79
80
81
82
83
84
85
86
87
{
"site": {
"title": "Research Lab Dashboard",
"subtitle": "Ongoing & Completed Experiments",
"institution": "Your Institution · Your Lab Name",
"updated": "2026-03-23"
},
"stats": [
{ "label": "Active Experiments", "value": "4" },
{ "label": "Datasets Collected", "value": "12" },
{ "label": "Publications", "value": "3" },
{ "label": "Collaborators", "value": "8" }
],
"experiments": [
{
"id": "EXP-001",
"title": "Protein Folding Under Variable pH",
"status": "ongoing",
"start": "2025-09",
"end": null,
"progress": 65,
"description": "Investigating conformational changes in target protein across pH range 4–9 using circular dichroism spectroscopy.",
"tags": ["biochemistry", "spectroscopy"]
},
{
"id": "EXP-002",
"title": "Thermal Stability Assay — Variant A",
"status": "completed",
"start": "2025-01",
"end": "2025-06",
"progress": 100,
"description": "Differential scanning fluorimetry used to determine Tm values for 24 protein variants. All replicates finalized.",
"tags": ["thermodynamics", "DSF"]
},
{
"id": "EXP-003",
"title": "Inhibitor Screen — Library B",
"status": "ongoing",
"start": "2026-01",
"end": null,
"progress": 30,
"description": "High-throughput screening of 480-compound library against target enzyme. IC50 determination in progress.",
"tags": ["drug discovery", "HTS"]
},
{
"id": "EXP-004",
"title": "Cryo-EM Structure Determination",
"status": "planned",
"start": "2026-05",
"end": null,
"progress": 0,
"description": "Structural characterization of purified complex at near-atomic resolution. Beam time allocated.",
"tags": ["structural biology", "cryo-EM"]
}
],
"chart": {
"label": "Samples Processed per Month",
"months": ["Oct", "Nov", "Dec", "Jan", "Feb", "Mar"],
"values": [18, 24, 14, 31, 27, 35]
},
"publications": [
{
"year": 2025,
"title": "Conformational dynamics of target protein family under physiological stress conditions",
"authors": "Smith J, Lee A, Patel R, et al.",
"journal": "Journal of Molecular Biology",
"doi": "10.1016/j.jmb.2025.00000",
"status": "published"
},
{
"year": 2025,
"title": "High-throughput thermal profiling reveals novel stabilizing mutations",
"authors": "Lee A, Smith J, et al.",
"journal": "ACS Chemical Biology",
"doi": "10.1021/acschembio.5b00000",
"status": "published"
},
{
"year": 2026,
"title": "Cryo-EM structure of inhibitor-bound complex at 2.4 Å resolution",
"authors": "Patel R, Smith J, et al.",
"journal": "Nature Structural & Molecular Biology",
"doi": null,
"status": "preprint"
}
]
}