bio-publisci 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. data/.document +5 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +13 -0
  4. data/Gemfile +24 -0
  5. data/LICENSE.txt +20 -0
  6. data/README.md +47 -0
  7. data/README.rdoc +48 -0
  8. data/Rakefile +70 -0
  9. data/bin/bio-publisci +83 -0
  10. data/features/create_generator.feature +25 -0
  11. data/features/integration.feature +12 -0
  12. data/features/integration_steps.rb +10 -0
  13. data/features/orm.feature +60 -0
  14. data/features/orm_steps.rb +74 -0
  15. data/features/reader.feature +25 -0
  16. data/features/reader_steps.rb +60 -0
  17. data/features/step_definitions/bio-publisci_steps.rb +0 -0
  18. data/features/store.feature +27 -0
  19. data/features/store_steps.rb +42 -0
  20. data/features/support/env.rb +13 -0
  21. data/features/writer.feature +9 -0
  22. data/features/writer_steps.rb +17 -0
  23. data/lib/bio-publisci/analyzer.rb +57 -0
  24. data/lib/bio-publisci/dataset/ORM/data_cube_orm.rb +219 -0
  25. data/lib/bio-publisci/dataset/ORM/observation.rb +20 -0
  26. data/lib/bio-publisci/dataset/data_cube.rb +308 -0
  27. data/lib/bio-publisci/dataset/interactive.rb +57 -0
  28. data/lib/bio-publisci/loader.rb +36 -0
  29. data/lib/bio-publisci/metadata/metadata.rb +105 -0
  30. data/lib/bio-publisci/parser.rb +64 -0
  31. data/lib/bio-publisci/query/query_helper.rb +114 -0
  32. data/lib/bio-publisci/r_client.rb +54 -0
  33. data/lib/bio-publisci/readers/arff.rb +87 -0
  34. data/lib/bio-publisci/readers/big_cross.rb +119 -0
  35. data/lib/bio-publisci/readers/cross.rb +72 -0
  36. data/lib/bio-publisci/readers/csv.rb +54 -0
  37. data/lib/bio-publisci/readers/dataframe.rb +66 -0
  38. data/lib/bio-publisci/readers/r_matrix.rb +152 -0
  39. data/lib/bio-publisci/store.rb +56 -0
  40. data/lib/bio-publisci/writers/arff.rb +66 -0
  41. data/lib/bio-publisci/writers/dataframe.rb +81 -0
  42. data/lib/bio-publisci.rb +36 -0
  43. data/lib/r2rdf.rb +226 -0
  44. data/lib/template_bak/publisci.rb +3 -0
  45. data/lib/template_bak.rb +12 -0
  46. data/lib/vocabs/cc.rb +18 -0
  47. data/lib/vocabs/cert.rb +13 -0
  48. data/lib/vocabs/dc.rb +63 -0
  49. data/lib/vocabs/dc11.rb +23 -0
  50. data/lib/vocabs/doap.rb +45 -0
  51. data/lib/vocabs/exif.rb +168 -0
  52. data/lib/vocabs/foaf.rb +69 -0
  53. data/lib/vocabs/geo.rb +13 -0
  54. data/lib/vocabs/http.rb +26 -0
  55. data/lib/vocabs/ma.rb +78 -0
  56. data/lib/vocabs/owl.rb +59 -0
  57. data/lib/vocabs/rdfs.rb +17 -0
  58. data/lib/vocabs/rsa.rb +12 -0
  59. data/lib/vocabs/rss.rb +14 -0
  60. data/lib/vocabs/sioc.rb +93 -0
  61. data/lib/vocabs/skos.rb +36 -0
  62. data/lib/vocabs/wot.rb +21 -0
  63. data/lib/vocabs/xhtml.rb +9 -0
  64. data/lib/vocabs/xsd.rb +58 -0
  65. data/resources/queries/codes.rq +13 -0
  66. data/resources/queries/dataset.rq +7 -0
  67. data/resources/queries/dimension_ranges.rq +8 -0
  68. data/resources/queries/dimensions.rq +7 -0
  69. data/resources/queries/measures.rq +7 -0
  70. data/resources/queries/observations.rq +12 -0
  71. data/resources/queries/test.rq +3 -0
  72. data/resources/weather.numeric.arff +23 -0
  73. data/spec/analyzer_spec.rb +36 -0
  74. data/spec/bio-publisci_spec.rb +7 -0
  75. data/spec/csv/bacon.csv +4 -0
  76. data/spec/csv/moar_bacon.csv +11 -0
  77. data/spec/data_cube_spec.rb +166 -0
  78. data/spec/generators/csv_spec.rb +44 -0
  79. data/spec/generators/dataframe_spec.rb +44 -0
  80. data/spec/generators/r_matrix_spec.rb +35 -0
  81. data/spec/queries/integrity/1.rq +21 -0
  82. data/spec/queries/integrity/11.rq +29 -0
  83. data/spec/queries/integrity/12.rq +37 -0
  84. data/spec/queries/integrity/14.rq +25 -0
  85. data/spec/queries/integrity/19_1.rq +21 -0
  86. data/spec/queries/integrity/19_2.rq +15 -0
  87. data/spec/queries/integrity/2.rq +22 -0
  88. data/spec/queries/integrity/3.rq +19 -0
  89. data/spec/queries/integrity/4.rq +13 -0
  90. data/spec/queries/integrity/5.rq +14 -0
  91. data/spec/r_builder_spec.rb +33 -0
  92. data/spec/spec_helper.rb +17 -0
  93. data/spec/turtle/bacon +149 -0
  94. data/spec/turtle/reference +2066 -0
  95. metadata +259 -0
@@ -0,0 +1,2066 @@
1
+ @base <http://www.rqtl.org/ns/dc/> .
2
+ @prefix ns: <http://www.rqtl.org/ns/dataset/mr#> .
3
+ @prefix qb: <http://purl.org/linked-data/cube#> .
4
+ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
5
+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
6
+ @prefix prop: <http://www.rqtl.org/dc/properties/> .
7
+ @prefix dct: <http://purl.org/dc/terms/> .
8
+ @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9
+ @prefix cs: <http://www.rqtl.org/dc/dataset/mr/cs/> .
10
+ @prefix code: <http://www.rqtl.org/dc/dataset/mr/code/> .
11
+ @prefix class: <http://www.rqtl.org/dc/dataset/mr/class/> .
12
+ @prefix owl: <http://www.w3.org/2002/07/owl#> .
13
+ @prefix skos: <http://www.w3.org/2004/02/skos/core#> .
14
+ @prefix foaf: <http://xmlns.com/foaf/0.1/> .
15
+ @prefix org: <http://www.w3.org/ns/org#> .
16
+ @prefix prov: <http://www.w3.org/ns/prov#> .
17
+
18
+ ns:dsd-mr a qb:DataStructureDefinition;
19
+ qb:component
20
+ cs:chr ,
21
+ cs:pos ,
22
+ cs:lod ,
23
+ cs:refRow .
24
+
25
+ ns:dataset-mr a qb:DataSet ;
26
+ rdfs:label "mr"@en ;
27
+ qb:structure ns:dsd-mr .
28
+
29
+ cs:refRow a qb:ComponentSpecification ;
30
+ rdfs:label "refRow Component" ;
31
+ qb:dimension prop:refRow .
32
+
33
+ cs:chr a qb:ComponentSpecification ;
34
+ rdfs:label "chr Component" ;
35
+ qb:measure prop:chr .
36
+
37
+ cs:pos a qb:ComponentSpecification ;
38
+ rdfs:label "pos Component" ;
39
+ qb:measure prop:pos .
40
+
41
+ cs:lod a qb:ComponentSpecification ;
42
+ rdfs:label "lod Component" ;
43
+ qb:measure prop:lod .
44
+
45
+ prop:refRow a rdf:Property, qb:DimensionProperty ;
46
+ rdfs:label "refRow"@en ;
47
+ qb:codeList code:refrow ;
48
+ rdfs:range code:Refrow .
49
+
50
+ prop:chr a rdf:Property, qb:MeasureProperty ;
51
+ rdfs:label "chr"@en .
52
+
53
+ prop:pos a rdf:Property, qb:MeasureProperty ;
54
+ rdfs:label "pos"@en .
55
+
56
+ prop:lod a rdf:Property, qb:MeasureProperty ;
57
+ rdfs:label "lod"@en .
58
+
59
+ code:Refrow a rdfs:Class, owl:Class;
60
+ rdfs:subClassOf skos:Concept ;
61
+ rdfs:label "Code list for refRow - codelist class"@en;
62
+ rdfs:comment "Specifies the refRow for each observation";
63
+ rdfs:seeAlso code:refrow .
64
+
65
+ code:refrow a skos:ConceptScheme;
66
+ skos:prefLabel "Code list for refRow - codelist scheme"@en;
67
+ rdfs:label "Code list for refRow - codelist scheme"@en;
68
+ skos:notation "CL_REFROW";
69
+ skos:note "Specifies the refRow for each observation";
70
+ skos:hasTopConcept <code/refrow/D10M44> ;
71
+ skos:hasTopConcept <code/refrow/D1M3> ;
72
+ skos:hasTopConcept <code/refrow/D1M75> ;
73
+ skos:hasTopConcept <code/refrow/D1M215> ;
74
+ skos:hasTopConcept <code/refrow/D1M309> ;
75
+ skos:hasTopConcept <code/refrow/D1M218> ;
76
+ skos:hasTopConcept <code/refrow/D1M451> ;
77
+ skos:hasTopConcept <code/refrow/D1M504> ;
78
+ skos:hasTopConcept <code/refrow/D1M113> ;
79
+ skos:hasTopConcept <code/refrow/D1M355> ;
80
+ skos:hasTopConcept <code/refrow/D1M291> ;
81
+ skos:hasTopConcept <code/refrow/D1M209> ;
82
+ skos:hasTopConcept <code/refrow/D1M155> ;
83
+ skos:hasTopConcept <code/refrow/D2M365> ;
84
+ skos:hasTopConcept <code/refrow/D2M37> ;
85
+ skos:hasTopConcept <code/refrow/D2M396> ;
86
+ skos:hasTopConcept <code/refrow/D2M493> ;
87
+ skos:hasTopConcept <code/refrow/D2M226> ;
88
+ skos:hasTopConcept <code/refrow/D2M148> ;
89
+ skos:hasTopConcept <code/refrow/D3M265> ;
90
+ skos:hasTopConcept <code/refrow/D3M51> ;
91
+ skos:hasTopConcept <code/refrow/D3M106> ;
92
+ skos:hasTopConcept <code/refrow/D3M257> ;
93
+ skos:hasTopConcept <code/refrow/D3M147> ;
94
+ skos:hasTopConcept <code/refrow/D3M19> ;
95
+ skos:hasTopConcept <code/refrow/D4M2> ;
96
+ skos:hasTopConcept <code/refrow/D4M178> ;
97
+ skos:hasTopConcept <code/refrow/D4M187> ;
98
+ skos:hasTopConcept <code/refrow/D4M251> ;
99
+ skos:hasTopConcept <code/refrow/D5M148> ;
100
+ skos:hasTopConcept <code/refrow/D5M232> ;
101
+ skos:hasTopConcept <code/refrow/D5M257> ;
102
+ skos:hasTopConcept <code/refrow/D5M83> ;
103
+ skos:hasTopConcept <code/refrow/D5M307> ;
104
+ skos:hasTopConcept <code/refrow/D5M357> ;
105
+ skos:hasTopConcept <code/refrow/D5M205> ;
106
+ skos:hasTopConcept <code/refrow/D5M398> ;
107
+ skos:hasTopConcept <code/refrow/D5M91> ;
108
+ skos:hasTopConcept <code/refrow/D5M338> ;
109
+ skos:hasTopConcept <code/refrow/D5M188> ;
110
+ skos:hasTopConcept <code/refrow/D5M29> ;
111
+ skos:hasTopConcept <code/refrow/D5M168> ;
112
+ skos:hasTopConcept <code/refrow/D6M223> ;
113
+ skos:hasTopConcept <code/refrow/D6M188> ;
114
+ skos:hasTopConcept <code/refrow/D6M284> ;
115
+ skos:hasTopConcept <code/refrow/D6M39> ;
116
+ skos:hasTopConcept <code/refrow/D6M254> ;
117
+ skos:hasTopConcept <code/refrow/D6M194> ;
118
+ skos:hasTopConcept <code/refrow/D6M290> ;
119
+ skos:hasTopConcept <code/refrow/D6M25> ;
120
+ skos:hasTopConcept <code/refrow/D6M339> ;
121
+ skos:hasTopConcept <code/refrow/D6M59_> ;
122
+ skos:hasTopConcept <code/refrow/D6M201> ;
123
+ skos:hasTopConcept <code/refrow/D6M15> ;
124
+ skos:hasTopConcept <code/refrow/D6M294> ;
125
+ skos:hasTopConcept <code/refrow/D7M246> ;
126
+ skos:hasTopConcept <code/refrow/D7M145> ;
127
+ skos:hasTopConcept <code/refrow/D7M62> ;
128
+ skos:hasTopConcept <code/refrow/D7M126> ;
129
+ skos:hasTopConcept <code/refrow/D7M105> ;
130
+ skos:hasTopConcept <code/refrow/D7M259> ;
131
+ skos:hasTopConcept <code/refrow/D8M94> ;
132
+ skos:hasTopConcept <code/refrow/D8M339> ;
133
+ skos:hasTopConcept <code/refrow/D8M178> ;
134
+ skos:hasTopConcept <code/refrow/D8M242> ;
135
+ skos:hasTopConcept <code/refrow/D8M213> ;
136
+ skos:hasTopConcept <code/refrow/D8M156> ;
137
+ skos:hasTopConcept <code/refrow/D9M247> ;
138
+ skos:hasTopConcept <code/refrow/D9M328> ;
139
+ skos:hasTopConcept <code/refrow/D9M106> ;
140
+ skos:hasTopConcept <code/refrow/D9M269> ;
141
+ skos:hasTopConcept <code/refrow/D9M346> ;
142
+ skos:hasTopConcept <code/refrow/D9M55> ;
143
+ skos:hasTopConcept <code/refrow/D9M18> ;
144
+ skos:hasTopConcept <code/refrow/D10M298> ;
145
+ skos:hasTopConcept <code/refrow/D10M294> ;
146
+ skos:hasTopConcept <code/refrow/D10M42_> ;
147
+ skos:hasTopConcept <code/refrow/D10M10> ;
148
+ skos:hasTopConcept <code/refrow/D10M233> ;
149
+ skos:hasTopConcept <code/refrow/D11M78> ;
150
+ skos:hasTopConcept <code/refrow/D11M20> ;
151
+ skos:hasTopConcept <code/refrow/D11M242> ;
152
+ skos:hasTopConcept <code/refrow/D11M356> ;
153
+ skos:hasTopConcept <code/refrow/D11M327> ;
154
+ skos:hasTopConcept <code/refrow/D11M333> ;
155
+ skos:hasTopConcept <code/refrow/D12M105> ;
156
+ skos:hasTopConcept <code/refrow/D12M46> ;
157
+ skos:hasTopConcept <code/refrow/D12M34> ;
158
+ skos:hasTopConcept <code/refrow/D12M5> ;
159
+ skos:hasTopConcept <code/refrow/D12M99> ;
160
+ skos:hasTopConcept <code/refrow/D12M150> ;
161
+ skos:hasTopConcept <code/refrow/D13M59> ;
162
+ skos:hasTopConcept <code/refrow/D13M88> ;
163
+ skos:hasTopConcept <code/refrow/D13M21> ;
164
+ skos:hasTopConcept <code/refrow/D13M39> ;
165
+ skos:hasTopConcept <code/refrow/D13M167> ;
166
+ skos:hasTopConcept <code/refrow/D13M99> ;
167
+ skos:hasTopConcept <code/refrow/D13M233> ;
168
+ skos:hasTopConcept <code/refrow/D13M106> ;
169
+ skos:hasTopConcept <code/refrow/D13M147> ;
170
+ skos:hasTopConcept <code/refrow/D13M226> ;
171
+ skos:hasTopConcept <code/refrow/D13M290> ;
172
+ skos:hasTopConcept <code/refrow/D13M151> ;
173
+ skos:hasTopConcept <code/refrow/D14M14> ;
174
+ skos:hasTopConcept <code/refrow/D14M115> ;
175
+ skos:hasTopConcept <code/refrow/D14M265> ;
176
+ skos:hasTopConcept <code/refrow/D14M266> ;
177
+ skos:hasTopConcept <code/refrow/D15M226> ;
178
+ skos:hasTopConcept <code/refrow/D15M100> ;
179
+ skos:hasTopConcept <code/refrow/D15M209> ;
180
+ skos:hasTopConcept <code/refrow/D15M144> ;
181
+ skos:hasTopConcept <code/refrow/D15M68> ;
182
+ skos:hasTopConcept <code/refrow/D15M239> ;
183
+ skos:hasTopConcept <code/refrow/D15M241> ;
184
+ skos:hasTopConcept <code/refrow/D15M34> ;
185
+ skos:hasTopConcept <code/refrow/D16M154> ;
186
+ skos:hasTopConcept <code/refrow/D16M4> ;
187
+ skos:hasTopConcept <code/refrow/D16M139> ;
188
+ skos:hasTopConcept <code/refrow/D16M86> ;
189
+ skos:hasTopConcept <code/refrow/D17M260> ;
190
+ skos:hasTopConcept <code/refrow/D17M66> ;
191
+ skos:hasTopConcept <code/refrow/D17M88> ;
192
+ skos:hasTopConcept <code/refrow/D17M129> ;
193
+ skos:hasTopConcept <code/refrow/D18M94> ;
194
+ skos:hasTopConcept <code/refrow/D18M58> ;
195
+ skos:hasTopConcept <code/refrow/D18M106> ;
196
+ skos:hasTopConcept <code/refrow/D18M186> ;
197
+ skos:hasTopConcept <code/refrow/D19M68> ;
198
+ skos:hasTopConcept <code/refrow/D19M117> ;
199
+ skos:hasTopConcept <code/refrow/D19M65> ;
200
+ skos:hasTopConcept <code/refrow/D19M10> ;
201
+ skos:hasTopConcept <code/refrow/DXM186> ;
202
+ skos:hasTopConcept <code/refrow/DXM64> ;
203
+ .
204
+
205
+ <code/refrow/D10M44> a skos:Concept, code:Refrow;
206
+ skos:topConceptOf code:refrow ;
207
+ skos:prefLabel "D10M44" ;
208
+ skos:inScheme code:refrow .
209
+
210
+ <code/refrow/D1M3> a skos:Concept, code:Refrow;
211
+ skos:topConceptOf code:refrow ;
212
+ skos:prefLabel "D1M3" ;
213
+ skos:inScheme code:refrow .
214
+
215
+ <code/refrow/D1M75> a skos:Concept, code:Refrow;
216
+ skos:topConceptOf code:refrow ;
217
+ skos:prefLabel "D1M75" ;
218
+ skos:inScheme code:refrow .
219
+
220
+ <code/refrow/D1M215> a skos:Concept, code:Refrow;
221
+ skos:topConceptOf code:refrow ;
222
+ skos:prefLabel "D1M215" ;
223
+ skos:inScheme code:refrow .
224
+
225
+ <code/refrow/D1M309> a skos:Concept, code:Refrow;
226
+ skos:topConceptOf code:refrow ;
227
+ skos:prefLabel "D1M309" ;
228
+ skos:inScheme code:refrow .
229
+
230
+ <code/refrow/D1M218> a skos:Concept, code:Refrow;
231
+ skos:topConceptOf code:refrow ;
232
+ skos:prefLabel "D1M218" ;
233
+ skos:inScheme code:refrow .
234
+
235
+ <code/refrow/D1M451> a skos:Concept, code:Refrow;
236
+ skos:topConceptOf code:refrow ;
237
+ skos:prefLabel "D1M451" ;
238
+ skos:inScheme code:refrow .
239
+
240
+ <code/refrow/D1M504> a skos:Concept, code:Refrow;
241
+ skos:topConceptOf code:refrow ;
242
+ skos:prefLabel "D1M504" ;
243
+ skos:inScheme code:refrow .
244
+
245
+ <code/refrow/D1M113> a skos:Concept, code:Refrow;
246
+ skos:topConceptOf code:refrow ;
247
+ skos:prefLabel "D1M113" ;
248
+ skos:inScheme code:refrow .
249
+
250
+ <code/refrow/D1M355> a skos:Concept, code:Refrow;
251
+ skos:topConceptOf code:refrow ;
252
+ skos:prefLabel "D1M355" ;
253
+ skos:inScheme code:refrow .
254
+
255
+ <code/refrow/D1M291> a skos:Concept, code:Refrow;
256
+ skos:topConceptOf code:refrow ;
257
+ skos:prefLabel "D1M291" ;
258
+ skos:inScheme code:refrow .
259
+
260
+ <code/refrow/D1M209> a skos:Concept, code:Refrow;
261
+ skos:topConceptOf code:refrow ;
262
+ skos:prefLabel "D1M209" ;
263
+ skos:inScheme code:refrow .
264
+
265
+ <code/refrow/D1M155> a skos:Concept, code:Refrow;
266
+ skos:topConceptOf code:refrow ;
267
+ skos:prefLabel "D1M155" ;
268
+ skos:inScheme code:refrow .
269
+
270
+ <code/refrow/D2M365> a skos:Concept, code:Refrow;
271
+ skos:topConceptOf code:refrow ;
272
+ skos:prefLabel "D2M365" ;
273
+ skos:inScheme code:refrow .
274
+
275
+ <code/refrow/D2M37> a skos:Concept, code:Refrow;
276
+ skos:topConceptOf code:refrow ;
277
+ skos:prefLabel "D2M37" ;
278
+ skos:inScheme code:refrow .
279
+
280
+ <code/refrow/D2M396> a skos:Concept, code:Refrow;
281
+ skos:topConceptOf code:refrow ;
282
+ skos:prefLabel "D2M396" ;
283
+ skos:inScheme code:refrow .
284
+
285
+ <code/refrow/D2M493> a skos:Concept, code:Refrow;
286
+ skos:topConceptOf code:refrow ;
287
+ skos:prefLabel "D2M493" ;
288
+ skos:inScheme code:refrow .
289
+
290
+ <code/refrow/D2M226> a skos:Concept, code:Refrow;
291
+ skos:topConceptOf code:refrow ;
292
+ skos:prefLabel "D2M226" ;
293
+ skos:inScheme code:refrow .
294
+
295
+ <code/refrow/D2M148> a skos:Concept, code:Refrow;
296
+ skos:topConceptOf code:refrow ;
297
+ skos:prefLabel "D2M148" ;
298
+ skos:inScheme code:refrow .
299
+
300
+ <code/refrow/D3M265> a skos:Concept, code:Refrow;
301
+ skos:topConceptOf code:refrow ;
302
+ skos:prefLabel "D3M265" ;
303
+ skos:inScheme code:refrow .
304
+
305
+ <code/refrow/D3M51> a skos:Concept, code:Refrow;
306
+ skos:topConceptOf code:refrow ;
307
+ skos:prefLabel "D3M51" ;
308
+ skos:inScheme code:refrow .
309
+
310
+ <code/refrow/D3M106> a skos:Concept, code:Refrow;
311
+ skos:topConceptOf code:refrow ;
312
+ skos:prefLabel "D3M106" ;
313
+ skos:inScheme code:refrow .
314
+
315
+ <code/refrow/D3M257> a skos:Concept, code:Refrow;
316
+ skos:topConceptOf code:refrow ;
317
+ skos:prefLabel "D3M257" ;
318
+ skos:inScheme code:refrow .
319
+
320
+ <code/refrow/D3M147> a skos:Concept, code:Refrow;
321
+ skos:topConceptOf code:refrow ;
322
+ skos:prefLabel "D3M147" ;
323
+ skos:inScheme code:refrow .
324
+
325
+ <code/refrow/D3M19> a skos:Concept, code:Refrow;
326
+ skos:topConceptOf code:refrow ;
327
+ skos:prefLabel "D3M19" ;
328
+ skos:inScheme code:refrow .
329
+
330
+ <code/refrow/D4M2> a skos:Concept, code:Refrow;
331
+ skos:topConceptOf code:refrow ;
332
+ skos:prefLabel "D4M2" ;
333
+ skos:inScheme code:refrow .
334
+
335
+ <code/refrow/D4M178> a skos:Concept, code:Refrow;
336
+ skos:topConceptOf code:refrow ;
337
+ skos:prefLabel "D4M178" ;
338
+ skos:inScheme code:refrow .
339
+
340
+ <code/refrow/D4M187> a skos:Concept, code:Refrow;
341
+ skos:topConceptOf code:refrow ;
342
+ skos:prefLabel "D4M187" ;
343
+ skos:inScheme code:refrow .
344
+
345
+ <code/refrow/D4M251> a skos:Concept, code:Refrow;
346
+ skos:topConceptOf code:refrow ;
347
+ skos:prefLabel "D4M251" ;
348
+ skos:inScheme code:refrow .
349
+
350
+ <code/refrow/D5M148> a skos:Concept, code:Refrow;
351
+ skos:topConceptOf code:refrow ;
352
+ skos:prefLabel "D5M148" ;
353
+ skos:inScheme code:refrow .
354
+
355
+ <code/refrow/D5M232> a skos:Concept, code:Refrow;
356
+ skos:topConceptOf code:refrow ;
357
+ skos:prefLabel "D5M232" ;
358
+ skos:inScheme code:refrow .
359
+
360
+ <code/refrow/D5M257> a skos:Concept, code:Refrow;
361
+ skos:topConceptOf code:refrow ;
362
+ skos:prefLabel "D5M257" ;
363
+ skos:inScheme code:refrow .
364
+
365
+ <code/refrow/D5M83> a skos:Concept, code:Refrow;
366
+ skos:topConceptOf code:refrow ;
367
+ skos:prefLabel "D5M83" ;
368
+ skos:inScheme code:refrow .
369
+
370
+ <code/refrow/D5M307> a skos:Concept, code:Refrow;
371
+ skos:topConceptOf code:refrow ;
372
+ skos:prefLabel "D5M307" ;
373
+ skos:inScheme code:refrow .
374
+
375
+ <code/refrow/D5M357> a skos:Concept, code:Refrow;
376
+ skos:topConceptOf code:refrow ;
377
+ skos:prefLabel "D5M357" ;
378
+ skos:inScheme code:refrow .
379
+
380
+ <code/refrow/D5M205> a skos:Concept, code:Refrow;
381
+ skos:topConceptOf code:refrow ;
382
+ skos:prefLabel "D5M205" ;
383
+ skos:inScheme code:refrow .
384
+
385
+ <code/refrow/D5M398> a skos:Concept, code:Refrow;
386
+ skos:topConceptOf code:refrow ;
387
+ skos:prefLabel "D5M398" ;
388
+ skos:inScheme code:refrow .
389
+
390
+ <code/refrow/D5M91> a skos:Concept, code:Refrow;
391
+ skos:topConceptOf code:refrow ;
392
+ skos:prefLabel "D5M91" ;
393
+ skos:inScheme code:refrow .
394
+
395
+ <code/refrow/D5M338> a skos:Concept, code:Refrow;
396
+ skos:topConceptOf code:refrow ;
397
+ skos:prefLabel "D5M338" ;
398
+ skos:inScheme code:refrow .
399
+
400
+ <code/refrow/D5M188> a skos:Concept, code:Refrow;
401
+ skos:topConceptOf code:refrow ;
402
+ skos:prefLabel "D5M188" ;
403
+ skos:inScheme code:refrow .
404
+
405
+ <code/refrow/D5M29> a skos:Concept, code:Refrow;
406
+ skos:topConceptOf code:refrow ;
407
+ skos:prefLabel "D5M29" ;
408
+ skos:inScheme code:refrow .
409
+
410
+ <code/refrow/D5M168> a skos:Concept, code:Refrow;
411
+ skos:topConceptOf code:refrow ;
412
+ skos:prefLabel "D5M168" ;
413
+ skos:inScheme code:refrow .
414
+
415
+ <code/refrow/D6M223> a skos:Concept, code:Refrow;
416
+ skos:topConceptOf code:refrow ;
417
+ skos:prefLabel "D6M223" ;
418
+ skos:inScheme code:refrow .
419
+
420
+ <code/refrow/D6M188> a skos:Concept, code:Refrow;
421
+ skos:topConceptOf code:refrow ;
422
+ skos:prefLabel "D6M188" ;
423
+ skos:inScheme code:refrow .
424
+
425
+ <code/refrow/D6M284> a skos:Concept, code:Refrow;
426
+ skos:topConceptOf code:refrow ;
427
+ skos:prefLabel "D6M284" ;
428
+ skos:inScheme code:refrow .
429
+
430
+ <code/refrow/D6M39> a skos:Concept, code:Refrow;
431
+ skos:topConceptOf code:refrow ;
432
+ skos:prefLabel "D6M39" ;
433
+ skos:inScheme code:refrow .
434
+
435
+ <code/refrow/D6M254> a skos:Concept, code:Refrow;
436
+ skos:topConceptOf code:refrow ;
437
+ skos:prefLabel "D6M254" ;
438
+ skos:inScheme code:refrow .
439
+
440
+ <code/refrow/D6M194> a skos:Concept, code:Refrow;
441
+ skos:topConceptOf code:refrow ;
442
+ skos:prefLabel "D6M194" ;
443
+ skos:inScheme code:refrow .
444
+
445
+ <code/refrow/D6M290> a skos:Concept, code:Refrow;
446
+ skos:topConceptOf code:refrow ;
447
+ skos:prefLabel "D6M290" ;
448
+ skos:inScheme code:refrow .
449
+
450
+ <code/refrow/D6M25> a skos:Concept, code:Refrow;
451
+ skos:topConceptOf code:refrow ;
452
+ skos:prefLabel "D6M25" ;
453
+ skos:inScheme code:refrow .
454
+
455
+ <code/refrow/D6M339> a skos:Concept, code:Refrow;
456
+ skos:topConceptOf code:refrow ;
457
+ skos:prefLabel "D6M339" ;
458
+ skos:inScheme code:refrow .
459
+
460
+ <code/refrow/D6M59_> a skos:Concept, code:Refrow;
461
+ skos:topConceptOf code:refrow ;
462
+ skos:prefLabel "D6M59_" ;
463
+ skos:inScheme code:refrow .
464
+
465
+ <code/refrow/D6M201> a skos:Concept, code:Refrow;
466
+ skos:topConceptOf code:refrow ;
467
+ skos:prefLabel "D6M201" ;
468
+ skos:inScheme code:refrow .
469
+
470
+ <code/refrow/D6M15> a skos:Concept, code:Refrow;
471
+ skos:topConceptOf code:refrow ;
472
+ skos:prefLabel "D6M15" ;
473
+ skos:inScheme code:refrow .
474
+
475
+ <code/refrow/D6M294> a skos:Concept, code:Refrow;
476
+ skos:topConceptOf code:refrow ;
477
+ skos:prefLabel "D6M294" ;
478
+ skos:inScheme code:refrow .
479
+
480
+ <code/refrow/D7M246> a skos:Concept, code:Refrow;
481
+ skos:topConceptOf code:refrow ;
482
+ skos:prefLabel "D7M246" ;
483
+ skos:inScheme code:refrow .
484
+
485
+ <code/refrow/D7M145> a skos:Concept, code:Refrow;
486
+ skos:topConceptOf code:refrow ;
487
+ skos:prefLabel "D7M145" ;
488
+ skos:inScheme code:refrow .
489
+
490
+ <code/refrow/D7M62> a skos:Concept, code:Refrow;
491
+ skos:topConceptOf code:refrow ;
492
+ skos:prefLabel "D7M62" ;
493
+ skos:inScheme code:refrow .
494
+
495
+ <code/refrow/D7M126> a skos:Concept, code:Refrow;
496
+ skos:topConceptOf code:refrow ;
497
+ skos:prefLabel "D7M126" ;
498
+ skos:inScheme code:refrow .
499
+
500
+ <code/refrow/D7M105> a skos:Concept, code:Refrow;
501
+ skos:topConceptOf code:refrow ;
502
+ skos:prefLabel "D7M105" ;
503
+ skos:inScheme code:refrow .
504
+
505
+ <code/refrow/D7M259> a skos:Concept, code:Refrow;
506
+ skos:topConceptOf code:refrow ;
507
+ skos:prefLabel "D7M259" ;
508
+ skos:inScheme code:refrow .
509
+
510
+ <code/refrow/D8M94> a skos:Concept, code:Refrow;
511
+ skos:topConceptOf code:refrow ;
512
+ skos:prefLabel "D8M94" ;
513
+ skos:inScheme code:refrow .
514
+
515
+ <code/refrow/D8M339> a skos:Concept, code:Refrow;
516
+ skos:topConceptOf code:refrow ;
517
+ skos:prefLabel "D8M339" ;
518
+ skos:inScheme code:refrow .
519
+
520
+ <code/refrow/D8M178> a skos:Concept, code:Refrow;
521
+ skos:topConceptOf code:refrow ;
522
+ skos:prefLabel "D8M178" ;
523
+ skos:inScheme code:refrow .
524
+
525
+ <code/refrow/D8M242> a skos:Concept, code:Refrow;
526
+ skos:topConceptOf code:refrow ;
527
+ skos:prefLabel "D8M242" ;
528
+ skos:inScheme code:refrow .
529
+
530
+ <code/refrow/D8M213> a skos:Concept, code:Refrow;
531
+ skos:topConceptOf code:refrow ;
532
+ skos:prefLabel "D8M213" ;
533
+ skos:inScheme code:refrow .
534
+
535
+ <code/refrow/D8M156> a skos:Concept, code:Refrow;
536
+ skos:topConceptOf code:refrow ;
537
+ skos:prefLabel "D8M156" ;
538
+ skos:inScheme code:refrow .
539
+
540
+ <code/refrow/D9M247> a skos:Concept, code:Refrow;
541
+ skos:topConceptOf code:refrow ;
542
+ skos:prefLabel "D9M247" ;
543
+ skos:inScheme code:refrow .
544
+
545
+ <code/refrow/D9M328> a skos:Concept, code:Refrow;
546
+ skos:topConceptOf code:refrow ;
547
+ skos:prefLabel "D9M328" ;
548
+ skos:inScheme code:refrow .
549
+
550
+ <code/refrow/D9M106> a skos:Concept, code:Refrow;
551
+ skos:topConceptOf code:refrow ;
552
+ skos:prefLabel "D9M106" ;
553
+ skos:inScheme code:refrow .
554
+
555
+ <code/refrow/D9M269> a skos:Concept, code:Refrow;
556
+ skos:topConceptOf code:refrow ;
557
+ skos:prefLabel "D9M269" ;
558
+ skos:inScheme code:refrow .
559
+
560
+ <code/refrow/D9M346> a skos:Concept, code:Refrow;
561
+ skos:topConceptOf code:refrow ;
562
+ skos:prefLabel "D9M346" ;
563
+ skos:inScheme code:refrow .
564
+
565
+ <code/refrow/D9M55> a skos:Concept, code:Refrow;
566
+ skos:topConceptOf code:refrow ;
567
+ skos:prefLabel "D9M55" ;
568
+ skos:inScheme code:refrow .
569
+
570
+ <code/refrow/D9M18> a skos:Concept, code:Refrow;
571
+ skos:topConceptOf code:refrow ;
572
+ skos:prefLabel "D9M18" ;
573
+ skos:inScheme code:refrow .
574
+
575
+ <code/refrow/D10M298> a skos:Concept, code:Refrow;
576
+ skos:topConceptOf code:refrow ;
577
+ skos:prefLabel "D10M298" ;
578
+ skos:inScheme code:refrow .
579
+
580
+ <code/refrow/D10M294> a skos:Concept, code:Refrow;
581
+ skos:topConceptOf code:refrow ;
582
+ skos:prefLabel "D10M294" ;
583
+ skos:inScheme code:refrow .
584
+
585
+ <code/refrow/D10M42_> a skos:Concept, code:Refrow;
586
+ skos:topConceptOf code:refrow ;
587
+ skos:prefLabel "D10M42_" ;
588
+ skos:inScheme code:refrow .
589
+
590
+ <code/refrow/D10M10> a skos:Concept, code:Refrow;
591
+ skos:topConceptOf code:refrow ;
592
+ skos:prefLabel "D10M10" ;
593
+ skos:inScheme code:refrow .
594
+
595
+ <code/refrow/D10M233> a skos:Concept, code:Refrow;
596
+ skos:topConceptOf code:refrow ;
597
+ skos:prefLabel "D10M233" ;
598
+ skos:inScheme code:refrow .
599
+
600
+ <code/refrow/D11M78> a skos:Concept, code:Refrow;
601
+ skos:topConceptOf code:refrow ;
602
+ skos:prefLabel "D11M78" ;
603
+ skos:inScheme code:refrow .
604
+
605
+ <code/refrow/D11M20> a skos:Concept, code:Refrow;
606
+ skos:topConceptOf code:refrow ;
607
+ skos:prefLabel "D11M20" ;
608
+ skos:inScheme code:refrow .
609
+
610
+ <code/refrow/D11M242> a skos:Concept, code:Refrow;
611
+ skos:topConceptOf code:refrow ;
612
+ skos:prefLabel "D11M242" ;
613
+ skos:inScheme code:refrow .
614
+
615
+ <code/refrow/D11M356> a skos:Concept, code:Refrow;
616
+ skos:topConceptOf code:refrow ;
617
+ skos:prefLabel "D11M356" ;
618
+ skos:inScheme code:refrow .
619
+
620
+ <code/refrow/D11M327> a skos:Concept, code:Refrow;
621
+ skos:topConceptOf code:refrow ;
622
+ skos:prefLabel "D11M327" ;
623
+ skos:inScheme code:refrow .
624
+
625
+ <code/refrow/D11M333> a skos:Concept, code:Refrow;
626
+ skos:topConceptOf code:refrow ;
627
+ skos:prefLabel "D11M333" ;
628
+ skos:inScheme code:refrow .
629
+
630
+ <code/refrow/D12M105> a skos:Concept, code:Refrow;
631
+ skos:topConceptOf code:refrow ;
632
+ skos:prefLabel "D12M105" ;
633
+ skos:inScheme code:refrow .
634
+
635
+ <code/refrow/D12M46> a skos:Concept, code:Refrow;
636
+ skos:topConceptOf code:refrow ;
637
+ skos:prefLabel "D12M46" ;
638
+ skos:inScheme code:refrow .
639
+
640
+ <code/refrow/D12M34> a skos:Concept, code:Refrow;
641
+ skos:topConceptOf code:refrow ;
642
+ skos:prefLabel "D12M34" ;
643
+ skos:inScheme code:refrow .
644
+
645
+ <code/refrow/D12M5> a skos:Concept, code:Refrow;
646
+ skos:topConceptOf code:refrow ;
647
+ skos:prefLabel "D12M5" ;
648
+ skos:inScheme code:refrow .
649
+
650
+ <code/refrow/D12M99> a skos:Concept, code:Refrow;
651
+ skos:topConceptOf code:refrow ;
652
+ skos:prefLabel "D12M99" ;
653
+ skos:inScheme code:refrow .
654
+
655
+ <code/refrow/D12M150> a skos:Concept, code:Refrow;
656
+ skos:topConceptOf code:refrow ;
657
+ skos:prefLabel "D12M150" ;
658
+ skos:inScheme code:refrow .
659
+
660
+ <code/refrow/D13M59> a skos:Concept, code:Refrow;
661
+ skos:topConceptOf code:refrow ;
662
+ skos:prefLabel "D13M59" ;
663
+ skos:inScheme code:refrow .
664
+
665
+ <code/refrow/D13M88> a skos:Concept, code:Refrow;
666
+ skos:topConceptOf code:refrow ;
667
+ skos:prefLabel "D13M88" ;
668
+ skos:inScheme code:refrow .
669
+
670
+ <code/refrow/D13M21> a skos:Concept, code:Refrow;
671
+ skos:topConceptOf code:refrow ;
672
+ skos:prefLabel "D13M21" ;
673
+ skos:inScheme code:refrow .
674
+
675
+ <code/refrow/D13M39> a skos:Concept, code:Refrow;
676
+ skos:topConceptOf code:refrow ;
677
+ skos:prefLabel "D13M39" ;
678
+ skos:inScheme code:refrow .
679
+
680
+ <code/refrow/D13M167> a skos:Concept, code:Refrow;
681
+ skos:topConceptOf code:refrow ;
682
+ skos:prefLabel "D13M167" ;
683
+ skos:inScheme code:refrow .
684
+
685
+ <code/refrow/D13M99> a skos:Concept, code:Refrow;
686
+ skos:topConceptOf code:refrow ;
687
+ skos:prefLabel "D13M99" ;
688
+ skos:inScheme code:refrow .
689
+
690
+ <code/refrow/D13M233> a skos:Concept, code:Refrow;
691
+ skos:topConceptOf code:refrow ;
692
+ skos:prefLabel "D13M233" ;
693
+ skos:inScheme code:refrow .
694
+
695
+ <code/refrow/D13M106> a skos:Concept, code:Refrow;
696
+ skos:topConceptOf code:refrow ;
697
+ skos:prefLabel "D13M106" ;
698
+ skos:inScheme code:refrow .
699
+
700
+ <code/refrow/D13M147> a skos:Concept, code:Refrow;
701
+ skos:topConceptOf code:refrow ;
702
+ skos:prefLabel "D13M147" ;
703
+ skos:inScheme code:refrow .
704
+
705
+ <code/refrow/D13M226> a skos:Concept, code:Refrow;
706
+ skos:topConceptOf code:refrow ;
707
+ skos:prefLabel "D13M226" ;
708
+ skos:inScheme code:refrow .
709
+
710
+ <code/refrow/D13M290> a skos:Concept, code:Refrow;
711
+ skos:topConceptOf code:refrow ;
712
+ skos:prefLabel "D13M290" ;
713
+ skos:inScheme code:refrow .
714
+
715
+ <code/refrow/D13M151> a skos:Concept, code:Refrow;
716
+ skos:topConceptOf code:refrow ;
717
+ skos:prefLabel "D13M151" ;
718
+ skos:inScheme code:refrow .
719
+
720
+ <code/refrow/D14M14> a skos:Concept, code:Refrow;
721
+ skos:topConceptOf code:refrow ;
722
+ skos:prefLabel "D14M14" ;
723
+ skos:inScheme code:refrow .
724
+
725
+ <code/refrow/D14M115> a skos:Concept, code:Refrow;
726
+ skos:topConceptOf code:refrow ;
727
+ skos:prefLabel "D14M115" ;
728
+ skos:inScheme code:refrow .
729
+
730
+ <code/refrow/D14M265> a skos:Concept, code:Refrow;
731
+ skos:topConceptOf code:refrow ;
732
+ skos:prefLabel "D14M265" ;
733
+ skos:inScheme code:refrow .
734
+
735
+ <code/refrow/D14M266> a skos:Concept, code:Refrow;
736
+ skos:topConceptOf code:refrow ;
737
+ skos:prefLabel "D14M266" ;
738
+ skos:inScheme code:refrow .
739
+
740
+ <code/refrow/D15M226> a skos:Concept, code:Refrow;
741
+ skos:topConceptOf code:refrow ;
742
+ skos:prefLabel "D15M226" ;
743
+ skos:inScheme code:refrow .
744
+
745
+ <code/refrow/D15M100> a skos:Concept, code:Refrow;
746
+ skos:topConceptOf code:refrow ;
747
+ skos:prefLabel "D15M100" ;
748
+ skos:inScheme code:refrow .
749
+
750
+ <code/refrow/D15M209> a skos:Concept, code:Refrow;
751
+ skos:topConceptOf code:refrow ;
752
+ skos:prefLabel "D15M209" ;
753
+ skos:inScheme code:refrow .
754
+
755
+ <code/refrow/D15M144> a skos:Concept, code:Refrow;
756
+ skos:topConceptOf code:refrow ;
757
+ skos:prefLabel "D15M144" ;
758
+ skos:inScheme code:refrow .
759
+
760
+ <code/refrow/D15M68> a skos:Concept, code:Refrow;
761
+ skos:topConceptOf code:refrow ;
762
+ skos:prefLabel "D15M68" ;
763
+ skos:inScheme code:refrow .
764
+
765
+ <code/refrow/D15M239> a skos:Concept, code:Refrow;
766
+ skos:topConceptOf code:refrow ;
767
+ skos:prefLabel "D15M239" ;
768
+ skos:inScheme code:refrow .
769
+
770
+ <code/refrow/D15M241> a skos:Concept, code:Refrow;
771
+ skos:topConceptOf code:refrow ;
772
+ skos:prefLabel "D15M241" ;
773
+ skos:inScheme code:refrow .
774
+
775
+ <code/refrow/D15M34> a skos:Concept, code:Refrow;
776
+ skos:topConceptOf code:refrow ;
777
+ skos:prefLabel "D15M34" ;
778
+ skos:inScheme code:refrow .
779
+
780
+ <code/refrow/D16M154> a skos:Concept, code:Refrow;
781
+ skos:topConceptOf code:refrow ;
782
+ skos:prefLabel "D16M154" ;
783
+ skos:inScheme code:refrow .
784
+
785
+ <code/refrow/D16M4> a skos:Concept, code:Refrow;
786
+ skos:topConceptOf code:refrow ;
787
+ skos:prefLabel "D16M4" ;
788
+ skos:inScheme code:refrow .
789
+
790
+ <code/refrow/D16M139> a skos:Concept, code:Refrow;
791
+ skos:topConceptOf code:refrow ;
792
+ skos:prefLabel "D16M139" ;
793
+ skos:inScheme code:refrow .
794
+
795
+ <code/refrow/D16M86> a skos:Concept, code:Refrow;
796
+ skos:topConceptOf code:refrow ;
797
+ skos:prefLabel "D16M86" ;
798
+ skos:inScheme code:refrow .
799
+
800
+ <code/refrow/D17M260> a skos:Concept, code:Refrow;
801
+ skos:topConceptOf code:refrow ;
802
+ skos:prefLabel "D17M260" ;
803
+ skos:inScheme code:refrow .
804
+
805
+ <code/refrow/D17M66> a skos:Concept, code:Refrow;
806
+ skos:topConceptOf code:refrow ;
807
+ skos:prefLabel "D17M66" ;
808
+ skos:inScheme code:refrow .
809
+
810
+ <code/refrow/D17M88> a skos:Concept, code:Refrow;
811
+ skos:topConceptOf code:refrow ;
812
+ skos:prefLabel "D17M88" ;
813
+ skos:inScheme code:refrow .
814
+
815
+ <code/refrow/D17M129> a skos:Concept, code:Refrow;
816
+ skos:topConceptOf code:refrow ;
817
+ skos:prefLabel "D17M129" ;
818
+ skos:inScheme code:refrow .
819
+
820
+ <code/refrow/D18M94> a skos:Concept, code:Refrow;
821
+ skos:topConceptOf code:refrow ;
822
+ skos:prefLabel "D18M94" ;
823
+ skos:inScheme code:refrow .
824
+
825
+ <code/refrow/D18M58> a skos:Concept, code:Refrow;
826
+ skos:topConceptOf code:refrow ;
827
+ skos:prefLabel "D18M58" ;
828
+ skos:inScheme code:refrow .
829
+
830
+ <code/refrow/D18M106> a skos:Concept, code:Refrow;
831
+ skos:topConceptOf code:refrow ;
832
+ skos:prefLabel "D18M106" ;
833
+ skos:inScheme code:refrow .
834
+
835
+ <code/refrow/D18M186> a skos:Concept, code:Refrow;
836
+ skos:topConceptOf code:refrow ;
837
+ skos:prefLabel "D18M186" ;
838
+ skos:inScheme code:refrow .
839
+
840
+ <code/refrow/D19M68> a skos:Concept, code:Refrow;
841
+ skos:topConceptOf code:refrow ;
842
+ skos:prefLabel "D19M68" ;
843
+ skos:inScheme code:refrow .
844
+
845
+ <code/refrow/D19M117> a skos:Concept, code:Refrow;
846
+ skos:topConceptOf code:refrow ;
847
+ skos:prefLabel "D19M117" ;
848
+ skos:inScheme code:refrow .
849
+
850
+ <code/refrow/D19M65> a skos:Concept, code:Refrow;
851
+ skos:topConceptOf code:refrow ;
852
+ skos:prefLabel "D19M65" ;
853
+ skos:inScheme code:refrow .
854
+
855
+ <code/refrow/D19M10> a skos:Concept, code:Refrow;
856
+ skos:topConceptOf code:refrow ;
857
+ skos:prefLabel "D19M10" ;
858
+ skos:inScheme code:refrow .
859
+
860
+ <code/refrow/DXM186> a skos:Concept, code:Refrow;
861
+ skos:topConceptOf code:refrow ;
862
+ skos:prefLabel "DXM186" ;
863
+ skos:inScheme code:refrow .
864
+
865
+ <code/refrow/DXM64> a skos:Concept, code:Refrow;
866
+ skos:topConceptOf code:refrow ;
867
+ skos:prefLabel "DXM64" ;
868
+ skos:inScheme code:refrow .
869
+
870
+ ns:obsD10M44 a qb:Observation ;
871
+ qb:dataSet ns:dataset-mr ;
872
+ rdfs:label "D10M44" ;
873
+ prop:refRow <code/refrow/D10M44> ;
874
+ prop:chr 1 ;
875
+ prop:pos 0.0 ;
876
+ prop:lod 0.4572564427044421 ;
877
+ .
878
+
879
+ ns:obsD1M3 a qb:Observation ;
880
+ qb:dataSet ns:dataset-mr ;
881
+ rdfs:label "D1M3" ;
882
+ prop:refRow <code/refrow/D1M3> ;
883
+ prop:chr 1 ;
884
+ prop:pos 0.996753647567893 ;
885
+ prop:lod 0.6873776921321628 ;
886
+ .
887
+
888
+ ns:obsD1M75 a qb:Observation ;
889
+ qb:dataSet ns:dataset-mr ;
890
+ rdfs:label "D1M75" ;
891
+ prop:refRow <code/refrow/D1M75> ;
892
+ prop:chr 1 ;
893
+ prop:pos 24.847732890288828 ;
894
+ prop:lod 0.24450030297803593 ;
895
+ .
896
+
897
+ ns:obsD1M215 a qb:Observation ;
898
+ qb:dataSet ns:dataset-mr ;
899
+ rdfs:label "D1M215" ;
900
+ prop:refRow <code/refrow/D1M215> ;
901
+ prop:chr 1 ;
902
+ prop:pos 40.41360872065924 ;
903
+ prop:lod 0.07012015768917834 ;
904
+ .
905
+
906
+ ns:obsD1M309 a qb:Observation ;
907
+ qb:dataSet ns:dataset-mr ;
908
+ rdfs:label "D1M309" ;
909
+ prop:refRow <code/refrow/D1M309> ;
910
+ prop:chr 1 ;
911
+ prop:pos 49.99467930200616 ;
912
+ prop:lod 0.4032170493563756 ;
913
+ .
914
+
915
+ ns:obsD1M218 a qb:Observation ;
916
+ qb:dataSet ns:dataset-mr ;
917
+ rdfs:label "D1M218" ;
918
+ prop:refRow <code/refrow/D1M218> ;
919
+ prop:chr 1 ;
920
+ prop:pos 52.80019885867756 ;
921
+ prop:lod 0.4281293810730613 ;
922
+ .
923
+
924
+ ns:obsD1M451 a qb:Observation ;
925
+ qb:dataSet ns:dataset-mr ;
926
+ rdfs:label "D1M451" ;
927
+ prop:refRow <code/refrow/D1M451> ;
928
+ prop:chr 1 ;
929
+ prop:pos 70.11203798145173 ;
930
+ prop:lod 1.2433878916529917 ;
931
+ .
932
+
933
+ ns:obsD1M504 a qb:Observation ;
934
+ qb:dataSet ns:dataset-mr ;
935
+ rdfs:label "D1M504" ;
936
+ prop:refRow <code/refrow/D1M504> ;
937
+ prop:chr 1 ;
938
+ prop:pos 70.80641563063762 ;
939
+ prop:lod 1.6701779153118643 ;
940
+ .
941
+
942
+ ns:obsD1M113 a qb:Observation ;
943
+ qb:dataSet ns:dataset-mr ;
944
+ rdfs:label "D1M113" ;
945
+ prop:refRow <code/refrow/D1M113> ;
946
+ prop:chr 1 ;
947
+ prop:pos 80.62323562923214 ;
948
+ prop:lod 2.0726083948737966 ;
949
+ .
950
+
951
+ ns:obsD1M355 a qb:Observation ;
952
+ qb:dataSet ns:dataset-mr ;
953
+ rdfs:label "D1M355" ;
954
+ prop:refRow <code/refrow/D1M355> ;
955
+ prop:chr 1 ;
956
+ prop:pos 81.3962314214364 ;
957
+ prop:lod 2.099546061330326 ;
958
+ .
959
+
960
+ ns:obsD1M291 a qb:Observation ;
961
+ qb:dataSet ns:dataset-mr ;
962
+ rdfs:label "D1M291" ;
963
+ prop:refRow <code/refrow/D1M291> ;
964
+ prop:chr 1 ;
965
+ prop:pos 84.93474250272789 ;
966
+ prop:lod 1.2076362223161428 ;
967
+ .
968
+
969
+ ns:obsD1M209 a qb:Observation ;
970
+ qb:dataSet ns:dataset-mr ;
971
+ rdfs:label "D1M209" ;
972
+ prop:refRow <code/refrow/D1M209> ;
973
+ prop:chr 1 ;
974
+ prop:pos 92.68393779641761 ;
975
+ prop:lod 1.0770292807569852 ;
976
+ .
977
+
978
+ ns:obsD1M155 a qb:Observation ;
979
+ qb:dataSet ns:dataset-mr ;
980
+ rdfs:label "D1M155" ;
981
+ prop:refRow <code/refrow/D1M155> ;
982
+ prop:chr 1 ;
983
+ prop:pos 93.64343584009433 ;
984
+ prop:lod 1.1873613330194863 ;
985
+ .
986
+
987
+ ns:obsD2M365 a qb:Observation ;
988
+ qb:dataSet ns:dataset-mr ;
989
+ rdfs:label "D2M365" ;
990
+ prop:refRow <code/refrow/D2M365> ;
991
+ prop:chr 2 ;
992
+ prop:pos 0.0 ;
993
+ prop:lod 0.6501811858001183 ;
994
+ .
995
+
996
+ ns:obsD2M37 a qb:Observation ;
997
+ qb:dataSet ns:dataset-mr ;
998
+ rdfs:label "D2M37" ;
999
+ prop:refRow <code/refrow/D2M37> ;
1000
+ prop:chr 2 ;
1001
+ prop:pos 27.94170641466299 ;
1002
+ prop:lod 0.9663804650027674 ;
1003
+ .
1004
+
1005
+ ns:obsD2M396 a qb:Observation ;
1006
+ qb:dataSet ns:dataset-mr ;
1007
+ rdfs:label "D2M396" ;
1008
+ prop:refRow <code/refrow/D2M396> ;
1009
+ prop:chr 2 ;
1010
+ prop:pos 47.10541257826182 ;
1011
+ prop:lod 0.7084571745427817 ;
1012
+ .
1013
+
1014
+ ns:obsD2M493 a qb:Observation ;
1015
+ qb:dataSet ns:dataset-mr ;
1016
+ rdfs:label "D2M493" ;
1017
+ prop:refRow <code/refrow/D2M493> ;
1018
+ prop:chr 2 ;
1019
+ prop:pos 67.26184857615587 ;
1020
+ prop:lod 0.9706943337686202 ;
1021
+ .
1022
+
1023
+ ns:obsD2M226 a qb:Observation ;
1024
+ qb:dataSet ns:dataset-mr ;
1025
+ rdfs:label "D2M226" ;
1026
+ prop:refRow <code/refrow/D2M226> ;
1027
+ prop:chr 2 ;
1028
+ prop:pos 77.39805314810678 ;
1029
+ prop:lod 0.09912972565608236 ;
1030
+ .
1031
+
1032
+ ns:obsD2M148 a qb:Observation ;
1033
+ qb:dataSet ns:dataset-mr ;
1034
+ rdfs:label "D2M148" ;
1035
+ prop:refRow <code/refrow/D2M148> ;
1036
+ prop:chr 2 ;
1037
+ prop:pos 90.8562972402448 ;
1038
+ prop:lod 1.050081026536665 ;
1039
+ .
1040
+
1041
+ ns:obsD3M265 a qb:Observation ;
1042
+ qb:dataSet ns:dataset-mr ;
1043
+ rdfs:label "D3M265" ;
1044
+ prop:refRow <code/refrow/D3M265> ;
1045
+ prop:chr 3 ;
1046
+ prop:pos 0.0 ;
1047
+ prop:lod 1.6120906204520224 ;
1048
+ .
1049
+
1050
+ ns:obsD3M51 a qb:Observation ;
1051
+ qb:dataSet ns:dataset-mr ;
1052
+ rdfs:label "D3M51" ;
1053
+ prop:refRow <code/refrow/D3M51> ;
1054
+ prop:chr 3 ;
1055
+ prop:pos 32.478388246044496 ;
1056
+ prop:lod 0.010489620696790158 ;
1057
+ .
1058
+
1059
+ ns:obsD3M106 a qb:Observation ;
1060
+ qb:dataSet ns:dataset-mr ;
1061
+ rdfs:label "D3M106" ;
1062
+ prop:refRow <code/refrow/D3M106> ;
1063
+ prop:chr 3 ;
1064
+ prop:pos 43.938030995679 ;
1065
+ prop:lod 0.45374023883481307 ;
1066
+ .
1067
+
1068
+ ns:obsD3M257 a qb:Observation ;
1069
+ qb:dataSet ns:dataset-mr ;
1070
+ rdfs:label "D3M257" ;
1071
+ prop:refRow <code/refrow/D3M257> ;
1072
+ prop:chr 3 ;
1073
+ prop:pos 57.59337779057423 ;
1074
+ prop:lod 0.35066254780174066 ;
1075
+ .
1076
+
1077
+ ns:obsD3M147 a qb:Observation ;
1078
+ qb:dataSet ns:dataset-mr ;
1079
+ rdfs:label "D3M147" ;
1080
+ prop:refRow <code/refrow/D3M147> ;
1081
+ prop:chr 3 ;
1082
+ prop:pos 63.185399937679335 ;
1083
+ prop:lod 1.7222298738351585 ;
1084
+ .
1085
+
1086
+ ns:obsD3M19 a qb:Observation ;
1087
+ qb:dataSet ns:dataset-mr ;
1088
+ rdfs:label "D3M19" ;
1089
+ prop:refRow <code/refrow/D3M19> ;
1090
+ prop:chr 3 ;
1091
+ prop:pos 70.83899918659391 ;
1092
+ prop:lod 0.5681404735365145 ;
1093
+ .
1094
+
1095
+ ns:obsD4M2 a qb:Observation ;
1096
+ qb:dataSet ns:dataset-mr ;
1097
+ rdfs:label "D4M2" ;
1098
+ prop:refRow <code/refrow/D4M2> ;
1099
+ prop:chr 4 ;
1100
+ prop:pos 0.0 ;
1101
+ prop:lod 0.24331723281215023 ;
1102
+ .
1103
+
1104
+ ns:obsD4M178 a qb:Observation ;
1105
+ qb:dataSet ns:dataset-mr ;
1106
+ rdfs:label "D4M178" ;
1107
+ prop:refRow <code/refrow/D4M178> ;
1108
+ prop:chr 4 ;
1109
+ prop:pos 19.160720639706692 ;
1110
+ prop:lod 0.1688257385299181 ;
1111
+ .
1112
+
1113
+ ns:obsD4M187 a qb:Observation ;
1114
+ qb:dataSet ns:dataset-mr ;
1115
+ rdfs:label "D4M187" ;
1116
+ prop:refRow <code/refrow/D4M187> ;
1117
+ prop:chr 4 ;
1118
+ prop:pos 35.32085637897066 ;
1119
+ prop:lod 0.08949770136010748 ;
1120
+ .
1121
+
1122
+ ns:obsD4M251 a qb:Observation ;
1123
+ qb:dataSet ns:dataset-mr ;
1124
+ rdfs:label "D4M251" ;
1125
+ prop:refRow <code/refrow/D4M251> ;
1126
+ prop:chr 4 ;
1127
+ prop:pos 68.10315769609147 ;
1128
+ prop:lod 1.1744313367512351 ;
1129
+ .
1130
+
1131
+ ns:obsD5M148 a qb:Observation ;
1132
+ qb:dataSet ns:dataset-mr ;
1133
+ rdfs:label "D5M148" ;
1134
+ prop:refRow <code/refrow/D5M148> ;
1135
+ prop:chr 5 ;
1136
+ prop:pos 0.0 ;
1137
+ prop:lod 1.4381450383809002 ;
1138
+ .
1139
+
1140
+ ns:obsD5M232 a qb:Observation ;
1141
+ qb:dataSet ns:dataset-mr ;
1142
+ rdfs:label "D5M232" ;
1143
+ prop:refRow <code/refrow/D5M232> ;
1144
+ prop:chr 5 ;
1145
+ prop:pos 6.10396051323126 ;
1146
+ prop:lod 1.9098398492179869 ;
1147
+ .
1148
+
1149
+ ns:obsD5M257 a qb:Observation ;
1150
+ qb:dataSet ns:dataset-mr ;
1151
+ rdfs:label "D5M257" ;
1152
+ prop:refRow <code/refrow/D5M257> ;
1153
+ prop:chr 5 ;
1154
+ prop:pos 19.22335384274434 ;
1155
+ prop:lod 5.592881582276208 ;
1156
+ .
1157
+
1158
+ ns:obsD5M83 a qb:Observation ;
1159
+ qb:dataSet ns:dataset-mr ;
1160
+ rdfs:label "D5M83" ;
1161
+ prop:refRow <code/refrow/D5M83> ;
1162
+ prop:chr 5 ;
1163
+ prop:pos 19.548825668220704 ;
1164
+ prop:lod 6.044957582198162 ;
1165
+ .
1166
+
1167
+ ns:obsD5M307 a qb:Observation ;
1168
+ qb:dataSet ns:dataset-mr ;
1169
+ rdfs:label "D5M307" ;
1170
+ prop:refRow <code/refrow/D5M307> ;
1171
+ prop:chr 5 ;
1172
+ prop:pos 23.717141429396477 ;
1173
+ prop:lod 5.352222137940444 ;
1174
+ .
1175
+
1176
+ ns:obsD5M357 a qb:Observation ;
1177
+ qb:dataSet ns:dataset-mr ;
1178
+ rdfs:label "D5M357" ;
1179
+ prop:refRow <code/refrow/D5M357> ;
1180
+ prop:chr 5 ;
1181
+ prop:pos 25.50009231817498 ;
1182
+ prop:lod 6.373633192046489 ;
1183
+ .
1184
+
1185
+ ns:obsD5M205 a qb:Observation ;
1186
+ qb:dataSet ns:dataset-mr ;
1187
+ rdfs:label "D5M205" ;
1188
+ prop:refRow <code/refrow/D5M205> ;
1189
+ prop:chr 5 ;
1190
+ prop:pos 30.896651923893483 ;
1191
+ prop:lod 5.72843784026729 ;
1192
+ .
1193
+
1194
+ ns:obsD5M398 a qb:Observation ;
1195
+ qb:dataSet ns:dataset-mr ;
1196
+ rdfs:label "D5M398" ;
1197
+ prop:refRow <code/refrow/D5M398> ;
1198
+ prop:chr 5 ;
1199
+ prop:pos 30.897651923893616 ;
1200
+ prop:lod 3.180821290624097 ;
1201
+ .
1202
+
1203
+ ns:obsD5M91 a qb:Observation ;
1204
+ qb:dataSet ns:dataset-mr ;
1205
+ rdfs:label "D5M91" ;
1206
+ prop:refRow <code/refrow/D5M91> ;
1207
+ prop:chr 5 ;
1208
+ prop:pos 32.90521868039253 ;
1209
+ prop:lod 5.839359207234997 ;
1210
+ .
1211
+
1212
+ ns:obsD5M338 a qb:Observation ;
1213
+ qb:dataSet ns:dataset-mr ;
1214
+ rdfs:label "D5M338" ;
1215
+ prop:refRow <code/refrow/D5M338> ;
1216
+ prop:chr 5 ;
1217
+ prop:pos 38.068074035487925 ;
1218
+ prop:lod 4.805622469413521 ;
1219
+ .
1220
+
1221
+ ns:obsD5M188 a qb:Observation ;
1222
+ qb:dataSet ns:dataset-mr ;
1223
+ rdfs:label "D5M188" ;
1224
+ prop:refRow <code/refrow/D5M188> ;
1225
+ prop:chr 5 ;
1226
+ prop:pos 44.02376273652883 ;
1227
+ prop:lod 3.249708646147218 ;
1228
+ .
1229
+
1230
+ ns:obsD5M29 a qb:Observation ;
1231
+ qb:dataSet ns:dataset-mr ;
1232
+ rdfs:label "D5M29" ;
1233
+ prop:refRow <code/refrow/D5M29> ;
1234
+ prop:chr 5 ;
1235
+ prop:pos 50.98470690342796 ;
1236
+ prop:lod 1.715029879021328 ;
1237
+ .
1238
+
1239
+ ns:obsD5M168 a qb:Observation ;
1240
+ qb:dataSet ns:dataset-mr ;
1241
+ rdfs:label "D5M168" ;
1242
+ prop:refRow <code/refrow/D5M168> ;
1243
+ prop:chr 5 ;
1244
+ prop:pos 61.87613423071475 ;
1245
+ prop:lod 2.3744160326009247 ;
1246
+ .
1247
+
1248
+ ns:obsD6M223 a qb:Observation ;
1249
+ qb:dataSet ns:dataset-mr ;
1250
+ rdfs:label "D6M223" ;
1251
+ prop:refRow <code/refrow/D6M223> ;
1252
+ prop:chr 6 ;
1253
+ prop:pos 10.000000000000126 ;
1254
+ prop:lod 1.4168863942775922 ;
1255
+ .
1256
+
1257
+ ns:obsD6M188 a qb:Observation ;
1258
+ qb:dataSet ns:dataset-mr ;
1259
+ rdfs:label "D6M188" ;
1260
+ prop:refRow <code/refrow/D6M188> ;
1261
+ prop:chr 6 ;
1262
+ prop:pos 18.187535696625936 ;
1263
+ prop:lod 1.296092065769776 ;
1264
+ .
1265
+
1266
+ ns:obsD6M284 a qb:Observation ;
1267
+ qb:dataSet ns:dataset-mr ;
1268
+ rdfs:label "D6M284" ;
1269
+ prop:refRow <code/refrow/D6M284> ;
1270
+ prop:chr 6 ;
1271
+ prop:pos 23.872181428820788 ;
1272
+ prop:lod 0.24192444717407469 ;
1273
+ .
1274
+
1275
+ ns:obsD6M39 a qb:Observation ;
1276
+ qb:dataSet ns:dataset-mr ;
1277
+ rdfs:label "D6M39" ;
1278
+ prop:refRow <code/refrow/D6M39> ;
1279
+ prop:chr 6 ;
1280
+ prop:pos 31.094102102282264 ;
1281
+ prop:lod 1.3349411842020444 ;
1282
+ .
1283
+
1284
+ ns:obsD6M254 a qb:Observation ;
1285
+ qb:dataSet ns:dataset-mr ;
1286
+ rdfs:label "D6M254" ;
1287
+ prop:refRow <code/refrow/D6M254> ;
1288
+ prop:chr 6 ;
1289
+ prop:pos 41.79505510631914 ;
1290
+ prop:lod 1.6767494559753846 ;
1291
+ .
1292
+
1293
+ ns:obsD6M194 a qb:Observation ;
1294
+ qb:dataSet ns:dataset-mr ;
1295
+ rdfs:label "D6M194" ;
1296
+ prop:refRow <code/refrow/D6M194> ;
1297
+ prop:chr 6 ;
1298
+ prop:pos 45.14579226981843 ;
1299
+ prop:lod 1.4515021912783288 ;
1300
+ .
1301
+
1302
+ ns:obsD6M290 a qb:Observation ;
1303
+ qb:dataSet ns:dataset-mr ;
1304
+ rdfs:label "D6M290" ;
1305
+ prop:refRow <code/refrow/D6M290> ;
1306
+ prop:chr 6 ;
1307
+ prop:pos 47.52989927750034 ;
1308
+ prop:lod 1.242429436134472 ;
1309
+ .
1310
+
1311
+ ns:obsD6M25 a qb:Observation ;
1312
+ qb:dataSet ns:dataset-mr ;
1313
+ rdfs:label "D6M25" ;
1314
+ prop:refRow <code/refrow/D6M25> ;
1315
+ prop:chr 6 ;
1316
+ prop:pos 51.24735985444739 ;
1317
+ prop:lod 2.32017455388506 ;
1318
+ .
1319
+
1320
+ ns:obsD6M339 a qb:Observation ;
1321
+ qb:dataSet ns:dataset-mr ;
1322
+ rdfs:label "D6M339" ;
1323
+ prop:refRow <code/refrow/D6M339> ;
1324
+ prop:chr 6 ;
1325
+ prop:pos 51.65072762143285 ;
1326
+ prop:lod 1.8195326427080012 ;
1327
+ .
1328
+
1329
+ ns:obsD6M59_ a qb:Observation ;
1330
+ qb:dataSet ns:dataset-mr ;
1331
+ rdfs:label "D6M59_" ;
1332
+ prop:refRow <code/refrow/D6M59_> ;
1333
+ prop:chr 6 ;
1334
+ prop:pos 55.304776117994045 ;
1335
+ prop:lod 2.9298420181331597 ;
1336
+ .
1337
+
1338
+ ns:obsD6M201 a qb:Observation ;
1339
+ qb:dataSet ns:dataset-mr ;
1340
+ rdfs:label "D6M201" ;
1341
+ prop:refRow <code/refrow/D6M201> ;
1342
+ prop:chr 6 ;
1343
+ prop:pos 59.00988149697124 ;
1344
+ prop:lod 3.5205007379631392 ;
1345
+ .
1346
+
1347
+ ns:obsD6M15 a qb:Observation ;
1348
+ qb:dataSet ns:dataset-mr ;
1349
+ rdfs:label "D6M15" ;
1350
+ prop:refRow <code/refrow/D6M15> ;
1351
+ prop:chr 6 ;
1352
+ prop:pos 59.37089284827384 ;
1353
+ prop:lod 3.2422267198698007 ;
1354
+ .
1355
+
1356
+ ns:obsD6M294 a qb:Observation ;
1357
+ qb:dataSet ns:dataset-mr ;
1358
+ rdfs:label "D6M294" ;
1359
+ prop:refRow <code/refrow/D6M294> ;
1360
+ prop:chr 6 ;
1361
+ prop:pos 60.76243814165359 ;
1362
+ prop:lod 2.8980645724111866 ;
1363
+ .
1364
+
1365
+ ns:obsD7M246 a qb:Observation ;
1366
+ qb:dataSet ns:dataset-mr ;
1367
+ rdfs:label "D7M246" ;
1368
+ prop:refRow <code/refrow/D7M246> ;
1369
+ prop:chr 7 ;
1370
+ prop:pos 0.0 ;
1371
+ prop:lod 0.20312269025993768 ;
1372
+ .
1373
+
1374
+ ns:obsD7M145 a qb:Observation ;
1375
+ qb:dataSet ns:dataset-mr ;
1376
+ rdfs:label "D7M145" ;
1377
+ prop:refRow <code/refrow/D7M145> ;
1378
+ prop:chr 7 ;
1379
+ prop:pos 18.788508741097438 ;
1380
+ prop:lod 0.033912923484038515 ;
1381
+ .
1382
+
1383
+ ns:obsD7M62 a qb:Observation ;
1384
+ qb:dataSet ns:dataset-mr ;
1385
+ rdfs:label "D7M62" ;
1386
+ prop:refRow <code/refrow/D7M62> ;
1387
+ prop:chr 7 ;
1388
+ prop:pos 34.91062062393962 ;
1389
+ prop:lod 0.06888969610636098 ;
1390
+ .
1391
+
1392
+ ns:obsD7M126 a qb:Observation ;
1393
+ qb:dataSet ns:dataset-mr ;
1394
+ rdfs:label "D7M126" ;
1395
+ prop:refRow <code/refrow/D7M126> ;
1396
+ prop:chr 7 ;
1397
+ prop:pos 41.03047690133129 ;
1398
+ prop:lod 0.10584819661874967 ;
1399
+ .
1400
+
1401
+ ns:obsD7M105 a qb:Observation ;
1402
+ qb:dataSet ns:dataset-mr ;
1403
+ rdfs:label "D7M105" ;
1404
+ prop:refRow <code/refrow/D7M105> ;
1405
+ prop:chr 7 ;
1406
+ prop:pos 60.11408780418235 ;
1407
+ prop:lod 0.5714172476745532 ;
1408
+ .
1409
+
1410
+ ns:obsD7M259 a qb:Observation ;
1411
+ qb:dataSet ns:dataset-mr ;
1412
+ rdfs:label "D7M259" ;
1413
+ prop:refRow <code/refrow/D7M259> ;
1414
+ prop:chr 7 ;
1415
+ prop:pos 72.084242243197 ;
1416
+ prop:lod 0.10483451594920368 ;
1417
+ .
1418
+
1419
+ ns:obsD8M94 a qb:Observation ;
1420
+ qb:dataSet ns:dataset-mr ;
1421
+ rdfs:label "D8M94" ;
1422
+ prop:refRow <code/refrow/D8M94> ;
1423
+ prop:chr 8 ;
1424
+ prop:pos 0.0 ;
1425
+ prop:lod 0.69374638860387 ;
1426
+ .
1427
+
1428
+ ns:obsD8M339 a qb:Observation ;
1429
+ qb:dataSet ns:dataset-mr ;
1430
+ rdfs:label "D8M339" ;
1431
+ prop:refRow <code/refrow/D8M339> ;
1432
+ prop:chr 8 ;
1433
+ prop:pos 1.3398698853272393 ;
1434
+ prop:lod 0.5508803120345327 ;
1435
+ .
1436
+
1437
+ ns:obsD8M178 a qb:Observation ;
1438
+ qb:dataSet ns:dataset-mr ;
1439
+ rdfs:label "D8M178" ;
1440
+ prop:refRow <code/refrow/D8M178> ;
1441
+ prop:chr 8 ;
1442
+ prop:pos 11.42091158412444 ;
1443
+ prop:lod 0.3540673333621722 ;
1444
+ .
1445
+
1446
+ ns:obsD8M242 a qb:Observation ;
1447
+ qb:dataSet ns:dataset-mr ;
1448
+ rdfs:label "D8M242" ;
1449
+ prop:refRow <code/refrow/D8M242> ;
1450
+ prop:chr 8 ;
1451
+ prop:pos 27.140658391256373 ;
1452
+ prop:lod 0.018444232219069434 ;
1453
+ .
1454
+
1455
+ ns:obsD8M213 a qb:Observation ;
1456
+ qb:dataSet ns:dataset-mr ;
1457
+ rdfs:label "D8M213" ;
1458
+ prop:refRow <code/refrow/D8M213> ;
1459
+ prop:chr 8 ;
1460
+ prop:pos 32.986245919139265 ;
1461
+ prop:lod 0.03416921446230203 ;
1462
+ .
1463
+
1464
+ ns:obsD8M156 a qb:Observation ;
1465
+ qb:dataSet ns:dataset-mr ;
1466
+ rdfs:label "D8M156" ;
1467
+ prop:refRow <code/refrow/D8M156> ;
1468
+ prop:chr 8 ;
1469
+ prop:pos 50.8636380045854 ;
1470
+ prop:lod 0.02846649364377729 ;
1471
+ .
1472
+
1473
+ ns:obsD9M247 a qb:Observation ;
1474
+ qb:dataSet ns:dataset-mr ;
1475
+ rdfs:label "D9M247" ;
1476
+ prop:refRow <code/refrow/D9M247> ;
1477
+ prop:chr 9 ;
1478
+ prop:pos 0.0 ;
1479
+ prop:lod 0.9988640050209474 ;
1480
+ .
1481
+
1482
+ ns:obsD9M328 a qb:Observation ;
1483
+ qb:dataSet ns:dataset-mr ;
1484
+ rdfs:label "D9M328" ;
1485
+ prop:refRow <code/refrow/D9M328> ;
1486
+ prop:chr 9 ;
1487
+ prop:pos 4.218231827209805 ;
1488
+ prop:lod 0.7945275103924594 ;
1489
+ .
1490
+
1491
+ ns:obsD9M106 a qb:Observation ;
1492
+ qb:dataSet ns:dataset-mr ;
1493
+ rdfs:label "D9M106" ;
1494
+ prop:refRow <code/refrow/D9M106> ;
1495
+ prop:chr 9 ;
1496
+ prop:pos 14.715648995860544 ;
1497
+ prop:lod 0.7623691668989903 ;
1498
+ .
1499
+
1500
+ ns:obsD9M269 a qb:Observation ;
1501
+ qb:dataSet ns:dataset-mr ;
1502
+ rdfs:label "D9M269" ;
1503
+ prop:refRow <code/refrow/D9M269> ;
1504
+ prop:chr 9 ;
1505
+ prop:pos 27.324165906766122 ;
1506
+ prop:lod 0.6881242583427829 ;
1507
+ .
1508
+
1509
+ ns:obsD9M346 a qb:Observation ;
1510
+ qb:dataSet ns:dataset-mr ;
1511
+ rdfs:label "D9M346" ;
1512
+ prop:refRow <code/refrow/D9M346> ;
1513
+ prop:chr 9 ;
1514
+ prop:pos 32.95643946351727 ;
1515
+ prop:lod 0.37223400725767464 ;
1516
+ .
1517
+
1518
+ ns:obsD9M55 a qb:Observation ;
1519
+ qb:dataSet ns:dataset-mr ;
1520
+ rdfs:label "D9M55" ;
1521
+ prop:refRow <code/refrow/D9M55> ;
1522
+ prop:chr 9 ;
1523
+ prop:pos 45.335668616330956 ;
1524
+ prop:lod 0.48324303581163264 ;
1525
+ .
1526
+
1527
+ ns:obsD9M18 a qb:Observation ;
1528
+ qb:dataSet ns:dataset-mr ;
1529
+ rdfs:label "D9M18" ;
1530
+ prop:refRow <code/refrow/D9M18> ;
1531
+ prop:chr 9 ;
1532
+ prop:pos 52.504037355687565 ;
1533
+ prop:lod 0.2559094007707392 ;
1534
+ .
1535
+
1536
+ ns:obsD10M298 a qb:Observation ;
1537
+ qb:dataSet ns:dataset-mr ;
1538
+ rdfs:label "D10M298" ;
1539
+ prop:refRow <code/refrow/D10M298> ;
1540
+ prop:chr 10 ;
1541
+ prop:pos 0.0 ;
1542
+ prop:lod 0.08267993612162794 ;
1543
+ .
1544
+
1545
+ ns:obsD10M294 a qb:Observation ;
1546
+ qb:dataSet ns:dataset-mr ;
1547
+ rdfs:label "D10M294" ;
1548
+ prop:refRow <code/refrow/D10M294> ;
1549
+ prop:chr 10 ;
1550
+ prop:pos 24.747450377130114 ;
1551
+ prop:lod 0.7596876212377977 ;
1552
+ .
1553
+
1554
+ ns:obsD10M42_ a qb:Observation ;
1555
+ qb:dataSet ns:dataset-mr ;
1556
+ rdfs:label "D10M42_" ;
1557
+ prop:refRow <code/refrow/D10M42_> ;
1558
+ prop:chr 10 ;
1559
+ prop:pos 40.70982704854181 ;
1560
+ prop:lod 0.5367205872908158 ;
1561
+ .
1562
+
1563
+ ns:obsD10M10 a qb:Observation ;
1564
+ qb:dataSet ns:dataset-mr ;
1565
+ rdfs:label "D10M10" ;
1566
+ prop:refRow <code/refrow/D10M10> ;
1567
+ prop:chr 10 ;
1568
+ prop:pos 48.73004422022059 ;
1569
+ prop:lod 0.5849459462473847 ;
1570
+ .
1571
+
1572
+ ns:obsD10M233 a qb:Observation ;
1573
+ qb:dataSet ns:dataset-mr ;
1574
+ rdfs:label "D10M233" ;
1575
+ prop:refRow <code/refrow/D10M233> ;
1576
+ prop:chr 10 ;
1577
+ prop:pos 61.056212909075484 ;
1578
+ prop:lod 0.2544276756864683 ;
1579
+ .
1580
+
1581
+ ns:obsD11M78 a qb:Observation ;
1582
+ qb:dataSet ns:dataset-mr ;
1583
+ rdfs:label "D11M78" ;
1584
+ prop:refRow <code/refrow/D11M78> ;
1585
+ prop:chr 11 ;
1586
+ prop:pos 0.0 ;
1587
+ prop:lod 0.18398849359838465 ;
1588
+ .
1589
+
1590
+ ns:obsD11M20 a qb:Observation ;
1591
+ qb:dataSet ns:dataset-mr ;
1592
+ rdfs:label "D11M20" ;
1593
+ prop:refRow <code/refrow/D11M20> ;
1594
+ prop:chr 11 ;
1595
+ prop:pos 15.153943114478569 ;
1596
+ prop:lod 0.012474949457187634 ;
1597
+ .
1598
+
1599
+ ns:obsD11M242 a qb:Observation ;
1600
+ qb:dataSet ns:dataset-mr ;
1601
+ rdfs:label "D11M242" ;
1602
+ prop:refRow <code/refrow/D11M242> ;
1603
+ prop:chr 11 ;
1604
+ prop:pos 26.421486272619404 ;
1605
+ prop:lod 0.1868903884268378 ;
1606
+ .
1607
+
1608
+ ns:obsD11M356 a qb:Observation ;
1609
+ qb:dataSet ns:dataset-mr ;
1610
+ rdfs:label "D11M356" ;
1611
+ prop:refRow <code/refrow/D11M356> ;
1612
+ prop:chr 11 ;
1613
+ prop:pos 38.52145267695209 ;
1614
+ prop:lod 0.022762162170999467 ;
1615
+ .
1616
+
1617
+ ns:obsD11M327 a qb:Observation ;
1618
+ qb:dataSet ns:dataset-mr ;
1619
+ rdfs:label "D11M327" ;
1620
+ prop:refRow <code/refrow/D11M327> ;
1621
+ prop:chr 11 ;
1622
+ prop:pos 42.16139238269945 ;
1623
+ prop:lod 0.15984754171458881 ;
1624
+ .
1625
+
1626
+ ns:obsD11M333 a qb:Observation ;
1627
+ qb:dataSet ns:dataset-mr ;
1628
+ rdfs:label "D11M333" ;
1629
+ prop:refRow <code/refrow/D11M333> ;
1630
+ prop:chr 11 ;
1631
+ prop:pos 64.34480892316571 ;
1632
+ prop:lod 0.24702558277469988 ;
1633
+ .
1634
+
1635
+ ns:obsD12M105 a qb:Observation ;
1636
+ qb:dataSet ns:dataset-mr ;
1637
+ rdfs:label "D12M105" ;
1638
+ prop:refRow <code/refrow/D12M105> ;
1639
+ prop:chr 12 ;
1640
+ prop:pos 0.0 ;
1641
+ prop:lod 0.6422735562058088 ;
1642
+ .
1643
+
1644
+ ns:obsD12M46 a qb:Observation ;
1645
+ qb:dataSet ns:dataset-mr ;
1646
+ rdfs:label "D12M46" ;
1647
+ prop:refRow <code/refrow/D12M46> ;
1648
+ prop:chr 12 ;
1649
+ prop:pos 6.1792124024451525 ;
1650
+ prop:lod 0.15967418501828146 ;
1651
+ .
1652
+
1653
+ ns:obsD12M34 a qb:Observation ;
1654
+ qb:dataSet ns:dataset-mr ;
1655
+ rdfs:label "D12M34" ;
1656
+ prop:refRow <code/refrow/D12M34> ;
1657
+ prop:chr 12 ;
1658
+ prop:pos 21.580510847025586 ;
1659
+ prop:lod 0.10198034827422742 ;
1660
+ .
1661
+
1662
+ ns:obsD12M5 a qb:Observation ;
1663
+ qb:dataSet ns:dataset-mr ;
1664
+ rdfs:label "D12M5" ;
1665
+ prop:refRow <code/refrow/D12M5> ;
1666
+ prop:chr 12 ;
1667
+ prop:pos 29.08404347185078 ;
1668
+ prop:lod 0.9906362313915595 ;
1669
+ .
1670
+
1671
+ ns:obsD12M99 a qb:Observation ;
1672
+ qb:dataSet ns:dataset-mr ;
1673
+ rdfs:label "D12M99" ;
1674
+ prop:refRow <code/refrow/D12M99> ;
1675
+ prop:chr 12 ;
1676
+ prop:pos 41.79568874486233 ;
1677
+ prop:lod 1.1794642920048428 ;
1678
+ .
1679
+
1680
+ ns:obsD12M150 a qb:Observation ;
1681
+ qb:dataSet ns:dataset-mr ;
1682
+ rdfs:label "D12M150" ;
1683
+ prop:refRow <code/refrow/D12M150> ;
1684
+ prop:chr 12 ;
1685
+ prop:pos 54.455822223537126 ;
1686
+ prop:lod 1.3180198730541783 ;
1687
+ .
1688
+
1689
+ ns:obsD13M59 a qb:Observation ;
1690
+ qb:dataSet ns:dataset-mr ;
1691
+ rdfs:label "D13M59" ;
1692
+ prop:refRow <code/refrow/D13M59> ;
1693
+ prop:chr 13 ;
1694
+ prop:pos 0.0 ;
1695
+ prop:lod 1.9179728385246868 ;
1696
+ .
1697
+
1698
+ ns:obsD13M88 a qb:Observation ;
1699
+ qb:dataSet ns:dataset-mr ;
1700
+ rdfs:label "D13M88" ;
1701
+ prop:refRow <code/refrow/D13M88> ;
1702
+ prop:chr 13 ;
1703
+ prop:pos 0.2867510289197634 ;
1704
+ prop:lod 1.925915225450523 ;
1705
+ .
1706
+
1707
+ ns:obsD13M21 a qb:Observation ;
1708
+ qb:dataSet ns:dataset-mr ;
1709
+ rdfs:label "D13M21" ;
1710
+ prop:refRow <code/refrow/D13M21> ;
1711
+ prop:chr 13 ;
1712
+ prop:pos 10.365882919967524 ;
1713
+ prop:lod 2.8121111806924652 ;
1714
+ .
1715
+
1716
+ ns:obsD13M39 a qb:Observation ;
1717
+ qb:dataSet ns:dataset-mr ;
1718
+ rdfs:label "D13M39" ;
1719
+ prop:refRow <code/refrow/D13M39> ;
1720
+ prop:chr 13 ;
1721
+ prop:pos 13.04982719197114 ;
1722
+ prop:lod 2.4746720753187805 ;
1723
+ .
1724
+
1725
+ ns:obsD13M167 a qb:Observation ;
1726
+ qb:dataSet ns:dataset-mr ;
1727
+ rdfs:label "D13M167" ;
1728
+ prop:refRow <code/refrow/D13M167> ;
1729
+ prop:chr 13 ;
1730
+ prop:pos 13.050827191971273 ;
1731
+ prop:lod 2.9784279195419527 ;
1732
+ .
1733
+
1734
+ ns:obsD13M99 a qb:Observation ;
1735
+ qb:dataSet ns:dataset-mr ;
1736
+ rdfs:label "D13M99" ;
1737
+ prop:refRow <code/refrow/D13M99> ;
1738
+ prop:chr 13 ;
1739
+ prop:pos 18.908837721073297 ;
1740
+ prop:lod 4.408391605767683 ;
1741
+ .
1742
+
1743
+ ns:obsD13M233 a qb:Observation ;
1744
+ qb:dataSet ns:dataset-mr ;
1745
+ rdfs:label "D13M233" ;
1746
+ prop:refRow <code/refrow/D13M233> ;
1747
+ prop:chr 13 ;
1748
+ prop:pos 21.012584583720308 ;
1749
+ prop:lod 3.8697863595906288 ;
1750
+ .
1751
+
1752
+ ns:obsD13M106 a qb:Observation ;
1753
+ qb:dataSet ns:dataset-mr ;
1754
+ rdfs:label "D13M106" ;
1755
+ prop:refRow <code/refrow/D13M106> ;
1756
+ prop:chr 13 ;
1757
+ prop:pos 24.87530865054113 ;
1758
+ prop:lod 4.623139634092183 ;
1759
+ .
1760
+
1761
+ ns:obsD13M147 a qb:Observation ;
1762
+ qb:dataSet ns:dataset-mr ;
1763
+ rdfs:label "D13M147" ;
1764
+ prop:refRow <code/refrow/D13M147> ;
1765
+ prop:chr 13 ;
1766
+ prop:pos 26.159540535850454 ;
1767
+ prop:lod 5.8198508440297 ;
1768
+ .
1769
+
1770
+ ns:obsD13M226 a qb:Observation ;
1771
+ qb:dataSet ns:dataset-mr ;
1772
+ rdfs:label "D13M226" ;
1773
+ prop:refRow <code/refrow/D13M226> ;
1774
+ prop:chr 13 ;
1775
+ prop:pos 28.392702216955033 ;
1776
+ prop:lod 1.4305870489910504 ;
1777
+ .
1778
+
1779
+ ns:obsD13M290 a qb:Observation ;
1780
+ qb:dataSet ns:dataset-mr ;
1781
+ rdfs:label "D13M290" ;
1782
+ prop:refRow <code/refrow/D13M290> ;
1783
+ prop:chr 13 ;
1784
+ prop:pos 28.393702216955166 ;
1785
+ prop:lod 4.511683694519341 ;
1786
+ .
1787
+
1788
+ ns:obsD13M151 a qb:Observation ;
1789
+ qb:dataSet ns:dataset-mr ;
1790
+ rdfs:label "D13M151" ;
1791
+ prop:refRow <code/refrow/D13M151> ;
1792
+ prop:chr 13 ;
1793
+ prop:pos 35.98707196784438 ;
1794
+ prop:lod 1.38889130519108 ;
1795
+ .
1796
+
1797
+ ns:obsD14M14 a qb:Observation ;
1798
+ qb:dataSet ns:dataset-mr ;
1799
+ rdfs:label "D14M14" ;
1800
+ prop:refRow <code/refrow/D14M14> ;
1801
+ prop:chr 14 ;
1802
+ prop:pos 0.0 ;
1803
+ prop:lod 0.059602996362055904 ;
1804
+ .
1805
+
1806
+ ns:obsD14M115 a qb:Observation ;
1807
+ qb:dataSet ns:dataset-mr ;
1808
+ rdfs:label "D14M115" ;
1809
+ prop:refRow <code/refrow/D14M115> ;
1810
+ prop:chr 14 ;
1811
+ prop:pos 23.90747121355707 ;
1812
+ prop:lod 0.04193628028965257 ;
1813
+ .
1814
+
1815
+ ns:obsD14M265 a qb:Observation ;
1816
+ qb:dataSet ns:dataset-mr ;
1817
+ rdfs:label "D14M265" ;
1818
+ prop:refRow <code/refrow/D14M265> ;
1819
+ prop:chr 14 ;
1820
+ prop:pos 32.786788153054445 ;
1821
+ prop:lod 0.05689288973059092 ;
1822
+ .
1823
+
1824
+ ns:obsD14M266 a qb:Observation ;
1825
+ qb:dataSet ns:dataset-mr ;
1826
+ rdfs:label "D14M266" ;
1827
+ prop:refRow <code/refrow/D14M266> ;
1828
+ prop:chr 14 ;
1829
+ prop:pos 45.55021769882338 ;
1830
+ prop:lod 0.07253305417930189 ;
1831
+ .
1832
+
1833
+ ns:obsD15M226 a qb:Observation ;
1834
+ qb:dataSet ns:dataset-mr ;
1835
+ rdfs:label "D15M226" ;
1836
+ prop:refRow <code/refrow/D15M226> ;
1837
+ prop:chr 15 ;
1838
+ prop:pos 0.0 ;
1839
+ prop:lod 0.121657830004958 ;
1840
+ .
1841
+
1842
+ ns:obsD15M100 a qb:Observation ;
1843
+ qb:dataSet ns:dataset-mr ;
1844
+ rdfs:label "D15M100" ;
1845
+ prop:refRow <code/refrow/D15M100> ;
1846
+ prop:chr 15 ;
1847
+ prop:pos 13.461948511187233 ;
1848
+ prop:lod 1.3102819264380035 ;
1849
+ .
1850
+
1851
+ ns:obsD15M209 a qb:Observation ;
1852
+ qb:dataSet ns:dataset-mr ;
1853
+ rdfs:label "D15M209" ;
1854
+ prop:refRow <code/refrow/D15M209> ;
1855
+ prop:chr 15 ;
1856
+ prop:pos 18.79080940978689 ;
1857
+ prop:lod 2.713340673451924 ;
1858
+ .
1859
+
1860
+ ns:obsD15M144 a qb:Observation ;
1861
+ qb:dataSet ns:dataset-mr ;
1862
+ rdfs:label "D15M144" ;
1863
+ prop:refRow <code/refrow/D15M144> ;
1864
+ prop:chr 15 ;
1865
+ prop:pos 19.364726189578214 ;
1866
+ prop:lod 2.7393127601205203 ;
1867
+ .
1868
+
1869
+ ns:obsD15M68 a qb:Observation ;
1870
+ qb:dataSet ns:dataset-mr ;
1871
+ rdfs:label "D15M68" ;
1872
+ prop:refRow <code/refrow/D15M68> ;
1873
+ prop:chr 15 ;
1874
+ prop:pos 23.913727669119616 ;
1875
+ prop:lod 3.066473485173969 ;
1876
+ .
1877
+
1878
+ ns:obsD15M239 a qb:Observation ;
1879
+ qb:dataSet ns:dataset-mr ;
1880
+ rdfs:label "D15M239" ;
1881
+ prop:refRow <code/refrow/D15M239> ;
1882
+ prop:chr 15 ;
1883
+ prop:pos 25.126501547855497 ;
1884
+ prop:lod 2.745144966867713 ;
1885
+ .
1886
+
1887
+ ns:obsD15M241 a qb:Observation ;
1888
+ qb:dataSet ns:dataset-mr ;
1889
+ rdfs:label "D15M241" ;
1890
+ prop:refRow <code/refrow/D15M241> ;
1891
+ prop:chr 15 ;
1892
+ prop:pos 31.2760650745495 ;
1893
+ prop:lod 0.6066053766715527 ;
1894
+ .
1895
+
1896
+ ns:obsD15M34 a qb:Observation ;
1897
+ qb:dataSet ns:dataset-mr ;
1898
+ rdfs:label "D15M34" ;
1899
+ prop:refRow <code/refrow/D15M34> ;
1900
+ prop:chr 15 ;
1901
+ prop:pos 42.97206990510089 ;
1902
+ prop:lod 0.07562890331208605 ;
1903
+ .
1904
+
1905
+ ns:obsD16M154 a qb:Observation ;
1906
+ qb:dataSet ns:dataset-mr ;
1907
+ rdfs:label "D16M154" ;
1908
+ prop:refRow <code/refrow/D16M154> ;
1909
+ prop:chr 16 ;
1910
+ prop:pos 0.0 ;
1911
+ prop:lod 0.540067799954115 ;
1912
+ .
1913
+
1914
+ ns:obsD16M4 a qb:Observation ;
1915
+ qb:dataSet ns:dataset-mr ;
1916
+ rdfs:label "D16M4" ;
1917
+ prop:refRow <code/refrow/D16M4> ;
1918
+ prop:chr 16 ;
1919
+ prop:pos 16.76683994069748 ;
1920
+ prop:lod 0.9919607786416029 ;
1921
+ .
1922
+
1923
+ ns:obsD16M139 a qb:Observation ;
1924
+ qb:dataSet ns:dataset-mr ;
1925
+ rdfs:label "D16M139" ;
1926
+ prop:refRow <code/refrow/D16M139> ;
1927
+ prop:chr 16 ;
1928
+ prop:pos 26.23134733982274 ;
1929
+ prop:lod 0.2678520560882669 ;
1930
+ .
1931
+
1932
+ ns:obsD16M86 a qb:Observation ;
1933
+ qb:dataSet ns:dataset-mr ;
1934
+ rdfs:label "D16M86" ;
1935
+ prop:refRow <code/refrow/D16M86> ;
1936
+ prop:chr 16 ;
1937
+ prop:pos 41.79901031770399 ;
1938
+ prop:lod 0.7981309541993991 ;
1939
+ .
1940
+
1941
+ ns:obsD17M260 a qb:Observation ;
1942
+ qb:dataSet ns:dataset-mr ;
1943
+ rdfs:label "D17M260" ;
1944
+ prop:refRow <code/refrow/D17M260> ;
1945
+ prop:chr 17 ;
1946
+ prop:pos 0.0 ;
1947
+ prop:lod 0.1818872799948723 ;
1948
+ .
1949
+
1950
+ ns:obsD17M66 a qb:Observation ;
1951
+ qb:dataSet ns:dataset-mr ;
1952
+ rdfs:label "D17M66" ;
1953
+ prop:refRow <code/refrow/D17M66> ;
1954
+ prop:chr 17 ;
1955
+ prop:pos 11.728225830166531 ;
1956
+ prop:lod 0.41891147924973726 ;
1957
+ .
1958
+
1959
+ ns:obsD17M88 a qb:Observation ;
1960
+ qb:dataSet ns:dataset-mr ;
1961
+ rdfs:label "D17M88" ;
1962
+ prop:refRow <code/refrow/D17M88> ;
1963
+ prop:chr 17 ;
1964
+ prop:pos 17.33527419307332 ;
1965
+ prop:lod 0.4280847987903331 ;
1966
+ .
1967
+
1968
+ ns:obsD17M129 a qb:Observation ;
1969
+ qb:dataSet ns:dataset-mr ;
1970
+ rdfs:label "D17M129" ;
1971
+ prop:refRow <code/refrow/D17M129> ;
1972
+ prop:chr 17 ;
1973
+ prop:pos 38.84806501588106 ;
1974
+ prop:lod 0.08568022663231867 ;
1975
+ .
1976
+
1977
+ ns:obsD18M94 a qb:Observation ;
1978
+ qb:dataSet ns:dataset-mr ;
1979
+ rdfs:label "D18M94" ;
1980
+ prop:refRow <code/refrow/D18M94> ;
1981
+ prop:chr 18 ;
1982
+ prop:pos 0.0 ;
1983
+ prop:lod 1.2303365279615814 ;
1984
+ .
1985
+
1986
+ ns:obsD18M58 a qb:Observation ;
1987
+ qb:dataSet ns:dataset-mr ;
1988
+ rdfs:label "D18M58" ;
1989
+ prop:refRow <code/refrow/D18M58> ;
1990
+ prop:chr 18 ;
1991
+ prop:pos 0.6855994695743726 ;
1992
+ prop:lod 0.7022302604350172 ;
1993
+ .
1994
+
1995
+ ns:obsD18M106 a qb:Observation ;
1996
+ qb:dataSet ns:dataset-mr ;
1997
+ rdfs:label "D18M106" ;
1998
+ prop:refRow <code/refrow/D18M106> ;
1999
+ prop:chr 18 ;
2000
+ prop:pos 16.983862925458297 ;
2001
+ prop:lod 0.17402123306771156 ;
2002
+ .
2003
+
2004
+ ns:obsD18M186 a qb:Observation ;
2005
+ qb:dataSet ns:dataset-mr ;
2006
+ rdfs:label "D18M186" ;
2007
+ prop:refRow <code/refrow/D18M186> ;
2008
+ prop:chr 18 ;
2009
+ prop:pos 20.899897160619652 ;
2010
+ prop:lod 0.8164104819428726 ;
2011
+ .
2012
+
2013
+ ns:obsD19M68 a qb:Observation ;
2014
+ qb:dataSet ns:dataset-mr ;
2015
+ rdfs:label "D19M68" ;
2016
+ prop:refRow <code/refrow/D19M68> ;
2017
+ prop:chr 19 ;
2018
+ prop:pos 0.0 ;
2019
+ prop:lod 0.3769326271704294 ;
2020
+ .
2021
+
2022
+ ns:obsD19M117 a qb:Observation ;
2023
+ qb:dataSet ns:dataset-mr ;
2024
+ rdfs:label "D19M117" ;
2025
+ prop:refRow <code/refrow/D19M117> ;
2026
+ prop:chr 19 ;
2027
+ prop:pos 16.363982823746085 ;
2028
+ prop:lod 0.43667508947114086 ;
2029
+ .
2030
+
2031
+ ns:obsD19M65 a qb:Observation ;
2032
+ qb:dataSet ns:dataset-mr ;
2033
+ rdfs:label "D19M65" ;
2034
+ prop:refRow <code/refrow/D19M65> ;
2035
+ prop:chr 19 ;
2036
+ prop:pos 32.82934898998137 ;
2037
+ prop:lod 0.0073635980130237755 ;
2038
+ .
2039
+
2040
+ ns:obsD19M10 a qb:Observation ;
2041
+ qb:dataSet ns:dataset-mr ;
2042
+ rdfs:label "D19M10" ;
2043
+ prop:refRow <code/refrow/D19M10> ;
2044
+ prop:chr 19 ;
2045
+ prop:pos 44.494317407177526 ;
2046
+ prop:lod 0.0 ;
2047
+ .
2048
+
2049
+ ns:obsDXM186 a qb:Observation ;
2050
+ qb:dataSet ns:dataset-mr ;
2051
+ rdfs:label "DXM186" ;
2052
+ prop:refRow <code/refrow/DXM186> ;
2053
+ prop:chr "X" ;
2054
+ prop:pos 0.0 ;
2055
+ prop:lod 0.6784354605030529 ;
2056
+ .
2057
+
2058
+ ns:obsDXM64 a qb:Observation ;
2059
+ qb:dataSet ns:dataset-mr ;
2060
+ rdfs:label "DXM64" ;
2061
+ prop:refRow <code/refrow/DXM64> ;
2062
+ prop:chr "X" ;
2063
+ prop:pos 42.3459319513846 ;
2064
+ prop:lod 0.002756074343496895 ;
2065
+ .
2066
+