Skip to content

Commit b3d9d6d

Browse files
authored
Merge pull request #719 from HLWeil/master
Prepare LabProtocol and LabProcess for Release
2 parents 4d55c90 + 43af44b commit b3d9d6d

File tree

7 files changed

+3372
-151
lines changed

7 files changed

+3372
-151
lines changed
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{
2+
"@context": [
3+
"http://schema.org/",
4+
{
5+
"LabProtocol": "https://bioschemas.org/LabProtocol",
6+
"LabProcess": "https://bioschemas.org/LabProcess",
7+
"executesLabProtocol": "https://bioschemas.org/properties/executesLabProtocol",
8+
"parameterValue": "https://bioschemas.org/properties/parameterValue",
9+
"additionalProperty": "https://bioschemas.org/properties/additionalProperty",
10+
"parameter": "https://bioschemas.org/properties/parameter",
11+
"labEquipment": "https://bioschemas.org/properties/labEquipment",
12+
"intendedUse": "https://bioschemas.org/properties/intendedUse"
13+
}
14+
],
15+
"@type": [
16+
"LabProcess"
17+
],
18+
"name": "Cell Cultivation",
19+
"executesProtocol": {
20+
"@type": [
21+
"LabProtocol"
22+
],
23+
"intendedUse": {
24+
"@type": "DefinedTerm",
25+
"name": "growth protocol",
26+
"termCode": "http://www.ebi.ac.uk/efo/EFO_0003789"
27+
},
28+
"labEquipment": {
29+
"@type": [
30+
"DefinedTerm"
31+
],
32+
"alternateName": "Photon System Instruments, FMT 150/400-RB",
33+
"name": "bioreactor",
34+
"termCode": "http://purl.obolibrary.org/obo/OBI_0001046"
35+
},
36+
"parameter": [
37+
{
38+
"@type": "PropertyValue",
39+
"name": "temperature",
40+
"propertyID": "http://purl.obolibrary.org/obo/PATO_0000146"
41+
},
42+
{
43+
"@type": "PropertyValue",
44+
"name": "culture medium",
45+
"propertyID": "http://purl.obolibrary.org/obo/OBI_0000079"
46+
}
47+
]
48+
},
49+
"parameterValue": [
50+
{
51+
"@type": "PropertyValue",
52+
"name": "temperature",
53+
"value": "20",
54+
"unitCode": "http://purl.obolibrary.org/obo/UO_0000027",
55+
"unitText": "degree Celsius",
56+
"propertyID": "http://purl.obolibrary.org/obo/PATO_0000146"
57+
},
58+
{
59+
"@type": "PropertyValue",
60+
"name": "culture medium",
61+
"value": "TAP medium",
62+
"valueReference": "https://bioregistry.io/dpbo:0000121",
63+
"propertyID": "http://purl.obolibrary.org/obo/OBI_0000079"
64+
}
65+
],
66+
"agent": {
67+
"@type": "Person",
68+
"givenName": "Benedikt",
69+
"familyName": "Venn"
70+
},
71+
"endTime": "2012-04-23T18:25:43.511Z",
72+
"object": [
73+
{
74+
"@type": [
75+
"Sample"
76+
],
77+
"name": "chlamy_source",
78+
"additionalProperty": [
79+
{
80+
"@type": "PropertyValue",
81+
"name": "organism",
82+
"value": "Chlamydomonas reinhardtii",
83+
"propertyID": "http://purl.obolibrary.org/obo/OBI_0100026",
84+
"valueReference": "http://purl.obolibrary.org/obo/NCBITaxon_3055"
85+
}
86+
]
87+
}
88+
],
89+
"result": [
90+
{
91+
"@type": [
92+
"Sample"
93+
],
94+
"name": "reactor_35_A",
95+
"additionalProperty": []
96+
}
97+
]
98+
}
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"@context": [
3+
"http://schema.org/",
4+
{
5+
"LabProtocol": "https://bioschemas.org/LabProtocol",
6+
"LabProcess": "https://bioschemas.org/LabProcess",
7+
"executesLabProtocol": "https://bioschemas.org/properties/executesLabProtocol",
8+
"parameterValue": "https://bioschemas.org/properties/parameterValue",
9+
"additionalProperty": "https://bioschemas.org/properties/additionalProperty",
10+
"parameter": "https://bioschemas.org/properties/parameter",
11+
"labEquipment": "https://bioschemas.org/properties/labEquipment",
12+
"intendedUse": "https://bioschemas.org/properties/intendedUse"
13+
}
14+
],
15+
"@type": [
16+
"LabProcess"
17+
],
18+
"name": "Mass Spectrometry",
19+
"executesProtocol": {
20+
"@type": [
21+
"LabProtocol"
22+
],
23+
"intendedUse": {
24+
"@type": "DefinedTerm",
25+
"name": "protein measurement",
26+
"termCode": "http://www.ebi.ac.uk/efo/EFO_0004747"
27+
},
28+
"labEquipment": {
29+
"@type": [
30+
"DefinedTerm"
31+
],
32+
"name": "mass spectrometer",
33+
"termCode": "http://purl.obolibrary.org/obo/OBI_0000049"
34+
},
35+
"parameter": [
36+
{
37+
"@type": "PropertyValue",
38+
"name": "flow rate",
39+
"propertyID": "http://purl.obolibrary.org/obo/PATO_0001574"
40+
},
41+
{
42+
"@type": "PropertyValue",
43+
"name": "instrument model",
44+
"propertyID": "http://purl.obolibrary.org/obo/MS_1000031"
45+
}
46+
]
47+
},
48+
"parameterValue": [
49+
{
50+
"@type": "PropertyValue",
51+
"name": "flow rate",
52+
"value": "500",
53+
"unitCode": "http://purl.obolibrary.org/obo/UO_0000271",
54+
"unitText": "microliters per minute",
55+
"propertyID": "http://purl.obolibrary.org/obo/PATO_0001574"
56+
},
57+
{
58+
"@type": "PropertyValue",
59+
"name": "instrument model",
60+
"value": "3200 QTRAP",
61+
"valueReference": "http://purl.obolibrary.org/obo/MS_1000651",
62+
"propertyID": "http://purl.obolibrary.org/obo/MS_1000031"
63+
}
64+
],
65+
"agent": {
66+
"@type": "Person",
67+
"givenName": "Fred",
68+
"familyName": "Sommer"
69+
},
70+
"endTime": "2012-04-23T18:25:43.511Z",
71+
"object": [
72+
{
73+
"@type": [
74+
"Sample"
75+
],
76+
"name": "reactor_35_A"
77+
}
78+
],
79+
"result": [
80+
{
81+
"@type": [
82+
"File"
83+
],
84+
"@id": "/rawData/35_A.wiff",
85+
"name": "/rawData/35_A.wiff"
86+
}
87+
]
88+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"@context": [
3+
"http://schema.org/",
4+
{
5+
"LabProtocol": "https://bioschemas.org/LabProtocol",
6+
"LabProcess": "https://bioschemas.org/LabProcess",
7+
"executesLabProtocol": "https://bioschemas.org/properties/executesLabProtocol",
8+
"parameterValue": "https://bioschemas.org/properties/parameterValue",
9+
"additionalProperty": "https://bioschemas.org/properties/additionalProperty",
10+
"parameter": "https://bioschemas.org/properties/parameter",
11+
"labEquipment": "https://bioschemas.org/properties/labEquipment",
12+
"intendedUse": "https://bioschemas.org/properties/intendedUse"
13+
}
14+
],
15+
"@type": [
16+
"LabProcess"
17+
],
18+
"name": "MS Processing",
19+
"executesProtocol": {
20+
"@type": [
21+
"LabProtocol"
22+
],
23+
"intendedUse": {
24+
"@type": "DefinedTerm",
25+
"name": "mass spectrometry analysis",
26+
"termCode": "http://purl.obolibrary.org/obo/OBI_0200085"
27+
},
28+
"labEquipment": {
29+
"@type": [
30+
"DefinedTerm"
31+
],
32+
"name": "computer",
33+
"termCode": "http://purl.obolibrary.org/obo/OBI_0400107"
34+
},
35+
"parameter": [
36+
{
37+
"@type": "PropertyValue",
38+
"name": "quantitation software name",
39+
"propertyID": "http://purl.obolibrary.org/obo/MS_1001139"
40+
}
41+
]
42+
},
43+
"parameterValue": [
44+
{
45+
"@type": "PropertyValue",
46+
"name": "quantitation software name",
47+
"value": "MaxQuant",
48+
"valueReference": "http://purl.obolibrary.org/obo/MS_1001583",
49+
"propertyID": "http://purl.obolibrary.org/obo/MS_1001139"
50+
}
51+
],
52+
"agent": {
53+
"@type": "Person",
54+
"givenName": "David",
55+
"familyName": "Zimmer"
56+
},
57+
"endTime": "2012-04-23T18:25:43.511Z",
58+
"object": [
59+
{
60+
"@type": [
61+
"File"
62+
],
63+
"@id": "/rawData/35_A.wiff",
64+
"name": "/rawData/35_A.wiff"
65+
}
66+
],
67+
"result": [
68+
{
69+
"@type": [
70+
"File"
71+
],
72+
"@id": "/results/35_A.tsv",
73+
"name": "/results/35_A.tsv"
74+
}
75+
]
76+
}

0 commit comments

Comments
 (0)