-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample_project.json
More file actions
45 lines (45 loc) · 1.03 KB
/
example_project.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"_id": "project_001",
"type": "project",
"name": "Example Genomics Project",
"project_id": "P12345",
"application": "Whole Genome Sequencing",
"status": "ongoing",
"created": "2025-11-14T10:00:00Z",
"updated": "2025-11-14T10:00:00Z",
"contact": {
"name": "John Doe",
"email": "john.doe@example.com",
"affiliation": "Example University"
},
"samples": [
{
"sample_id": "S001",
"sample_name": "Sample_A",
"organism": "Homo sapiens",
"tissue": "blood",
"collection_date": "2025-10-01"
},
{
"sample_id": "S002",
"sample_name": "Sample_B",
"organism": "Homo sapiens",
"tissue": "tissue",
"collection_date": "2025-10-02"
}
],
"sequencing_runs": [
{
"run_id": "RUN001",
"instrument": "NovaSeq 6000",
"date": "2025-11-01",
"lanes": 2,
"read_length": "2x150"
}
],
"metadata": {
"budget_code": "GRANT-2025-001",
"priority": "normal",
"notes": "Initial test data for StatusDB development"
}
}