-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmco.ttl
614 lines (555 loc) · 23.1 KB
/
mco.ttl
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix faldo: <http://biohackathon.org/resource/faldo#> .
@prefix mco: <http://identifiers.org/mco/> .
# Base classes and properties
<http://identifiers.org/mco/>
rdf:type owl:Ontology ;
dct:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
rdfs:seeAlso <https://github.com/med2rdf/mco/> ;
rdfs:seeAlso <http://biohackathon.org/resource/mco/> ;
owl:versionInfo "2024-09-13"^^xsd:date .
mco:MouseChromosome
rdf:type owl:Class ;
rdfs:label "Mouse chromosome" ;
skos:definition "Collection of mouse chromosomes" ;
rdfs:seeAlso <http://identifiers.org/taxonomy/10090> ;
skos:broader obo:SO_0000340 . # chromosome
mco:MouseGenomeBuild
rdf:type owl:Class ;
rdfs:label "Mouse genome build" ;
skos:definition "Version of a mouse genome assembly" ;
skos:broader obo:SO_0001505 . # reference_genome
mco:build
rdf:type owl:ObjectProperty ;
rdfs:label "build" ;
rdfs:domain mco:MouseChromosome ;
rdfs:range mco:MouseGenomeBuild .
mco:insdc
rdf:type owl:ObjectProperty ;
rdfs:label "INSDC" ;
rdfs:domain mco:MouseChromosome ;
rdfs:range rdfs:Resource .
mco:refseq
rdf:type owl:ObjectProperty ;
rdfs:label "RefSeq" ;
rdfs:domain mco:MouseChromosome ;
rdfs:range rdfs:Resource .
mco:ucsc
rdf:type owl:ObjectProperty ;
rdfs:label "UCSC" ;
rdfs:domain mco:MouseChromosome ;
rdfs:range rdfs:Resource .
mco:ensembl
rdf:type owl:ObjectProperty ;
rdfs:label "Ensembl" ;
rdfs:domain mco:MouseChromosome ;
rdfs:range rdfs:Resource .
mco:length
rdf:type owl:DatatypeProperty ;
rdfs:label "length" ;
rdfs:domain mco:MouseGenomeBuild ;
rdfs:range xsd:integer .
# Mouse genome build classes and instances
mco:GRCm39
rdf:type owl:Class ;
rdfs:label "GRCm39" ;
skos:definition "Genome Reference Consortium Mouse Build 39" ;
skos:altLabel "mm39" ;
rdfs:subClassOf mco:MouseGenomeBuild .
mco:GRCm38
rdf:type owl:Class ;
rdfs:label "GRCm38" ;
skos:definition "Genome Reference Consortium Mouse Build 38" ;
skos:altLabel "mm10" ;
rdfs:subClassOf mco:MouseGenomeBuild .
# Mouse chromosome classes and instances
mco:1
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/1/GRCm39>
rdf:type mco:1 ;
mco:build mco:GRCm39 ;
mco:length 195154279 ;
mco:insdc <http://identifiers.org/insdc/CM000994.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000067.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr1> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/1> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=1> .
<http://identifiers.org/mco/1/GRCm38>
rdf:type mco:1 ;
mco:build mco:GRCm38 ;
mco:length 195471971 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/1> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=1> .
mco:2
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/2/GRCm39>
rdf:type mco:2 ;
mco:build mco:GRCm39 ;
mco:length 181755017 ;
mco:insdc <http://identifiers.org/insdc/CM000995.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000068.8> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr2> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/2> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=2> .
<http://identifiers.org/mco/2/GRCm38>
rdf:type mco:2 ;
mco:build mco:GRCm38 ;
mco:length 182113224 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/2> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=2> .
mco:3
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/3/GRCm39>
rdf:type mco:3 ;
mco:build mco:GRCm39 ;
mco:length 159745316 ;
mco:insdc <http://identifiers.org/insdc/CM000996.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000069.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr3> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/3> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=3> .
<http://identifiers.org/mco/3/GRCm38>
rdf:type mco:3 ;
mco:build mco:GRCm38 ;
mco:length 160039680 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/3> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=3> .
mco:4
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/4/GRCm39>
rdf:type mco:4 ;
mco:build mco:GRCm39 ;
mco:length 156860686 ;
mco:insdc <http://identifiers.org/insdc/CM000997.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000070.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr4> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/4> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=4> .
<http://identifiers.org/mco/4/GRCm38>
rdf:type mco:4 ;
mco:build mco:GRCm38 ;
mco:length 156508116 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/4> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=4> .
mco:5
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/5/GRCm39>
rdf:type mco:5 ;
mco:build mco:GRCm39 ;
mco:length 151758149 ;
mco:insdc <http://identifiers.org/insdc/CM000998.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000071.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr5> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/5> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=5> .
<http://identifiers.org/mco/5/GRCm38>
rdf:type mco:5 ;
mco:build mco:GRCm38 ;
mco:length 151834684 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/5> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=5> .
mco:6
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/6/GRCm39>
rdf:type mco:6 ;
mco:build mco:GRCm39 ;
mco:length 149588044 ;
mco:insdc <http://identifiers.org/insdc/CM000999.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000072.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr6> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/6> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=6> .
<http://identifiers.org/mco/6/GRCm38>
rdf:type mco:6 ;
mco:build mco:GRCm38 ;
mco:length 149736546 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/6> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=6> .
mco:7
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/7/GRCm39>
rdf:type mco:7 ;
mco:build mco:GRCm39 ;
mco:length 144995196 ;
mco:insdc <http://identifiers.org/insdc/CM001000.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000073.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr7> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/7> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=7> .
<http://identifiers.org/mco/7/GRCm38>
rdf:type mco:7 ;
mco:build mco:GRCm38 ;
mco:length 145441459 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/7> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=7> .
mco:8
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/8/GRCm39>
rdf:type mco:8 ;
mco:build mco:GRCm39 ;
mco:length 130127694 ;
mco:insdc <http://identifiers.org/insdc/CM001001.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000074.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr8> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/8> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=8> .
<http://identifiers.org/mco/8/GRCm38>
rdf:type mco:8 ;
mco:build mco:GRCm38 ;
mco:length 129401213 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/8> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=8> .
mco:9
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/9/GRCm39>
rdf:type mco:9 ;
mco:build mco:GRCm39 ;
mco:length 124359700 ;
mco:insdc <http://identifiers.org/insdc/CM001002.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000075.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr9> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/9> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=9> .
<http://identifiers.org/mco/9/GRCm38>
rdf:type mco:9 ;
mco:build mco:GRCm38 ;
mco:length 124595110 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/9> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=9> .
mco:10
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/10/GRCm39>
rdf:type mco:10 ;
mco:build mco:GRCm39 ;
mco:length 130530862 ;
mco:insdc <http://identifiers.org/insdc/CM001003.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000076.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr10> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/10> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=10> .
<http://identifiers.org/mco/10/GRCm38>
rdf:type mco:10 ;
mco:build mco:GRCm38 ;
mco:length 130694993 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/10> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=10> .
mco:11
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/11/GRCm39>
rdf:type mco:11 ;
mco:build mco:GRCm39 ;
mco:length 121973369 ;
mco:insdc <http://identifiers.org/insdc/CM001004.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000077.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr11> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/11> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=11> .
<http://identifiers.org/mco/11/GRCm38>
rdf:type mco:11 ;
mco:build mco:GRCm38 ;
mco:length 122082543 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/11> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=11> .
mco:12
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/12/GRCm39>
rdf:type mco:12 ;
mco:build mco:GRCm39 ;
mco:length 120092757 ;
mco:insdc <http://identifiers.org/insdc/CM001005.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000078.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr12> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/12> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=12> .
<http://identifiers.org/mco/12/GRCm38>
rdf:type mco:12 ;
mco:build mco:GRCm38 ;
mco:length 120129022 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/12> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=12> .
mco:13
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/13/GRCm39>
rdf:type mco:13 ;
mco:build mco:GRCm39 ;
mco:length 120883175 ;
mco:insdc <http://identifiers.org/insdc/CM001006.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000079.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr13> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/13> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=13> .
<http://identifiers.org/mco/13/GRCm38>
rdf:type mco:13 ;
mco:build mco:GRCm38 ;
mco:length 120421639 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/13> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=13> .
mco:14
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/14/GRCm39>
rdf:type mco:14 ;
mco:build mco:GRCm39 ;
mco:length 125139656 ;
mco:insdc <http://identifiers.org/insdc/CM001007.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000080.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr14> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/14> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=14> .
<http://identifiers.org/mco/14/GRCm38>
rdf:type mco:14 ;
mco:build mco:GRCm38 ;
mco:length 124902244 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/14> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=14> .
mco:15
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/15/GRCm39>
rdf:type mco:15 ;
mco:build mco:GRCm39 ;
mco:length 104073951 ;
mco:insdc <http://identifiers.org/insdc/CM001008.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000081.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr15> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/15> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=15> .
<http://identifiers.org/mco/15/GRCm38>
rdf:type mco:15 ;
mco:build mco:GRCm38 ;
mco:length 104043685 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/15> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=15> .
mco:16
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/16/GRCm39>
rdf:type mco:16 ;
mco:build mco:GRCm39 ;
mco:length 98008968 ;
mco:insdc <http://identifiers.org/insdc/CM001009.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000082.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr16> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/16> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=16> .
<http://identifiers.org/mco/16/GRCm38>
rdf:type mco:16 ;
mco:build mco:GRCm38 ;
mco:length 98207768 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/16> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=16> .
mco:17
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/17/GRCm39>
rdf:type mco:17 ;
mco:build mco:GRCm39 ;
mco:length 95294699 ;
mco:insdc <http://identifiers.org/insdc/CM001010.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000083.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr17> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/17> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=17> .
<http://identifiers.org/mco/17/GRCm38>
rdf:type mco:17 ;
mco:build mco:GRCm38 ;
mco:length 94987271 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/17> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=17> .
mco:18
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/18/GRCm39>
rdf:type mco:18 ;
mco:build mco:GRCm39 ;
mco:length 90720763 ;
mco:insdc <http://identifiers.org/insdc/CM001011.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000084.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr18> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/18> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=18> .
<http://identifiers.org/mco/18/GRCm38>
rdf:type mco:18 ;
mco:build mco:GRCm38 ;
mco:length 90702639 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/18> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=18> .
mco:19
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/19/GRCm39>
rdf:type mco:19 ;
mco:build mco:GRCm39 ;
mco:length 61420004 ;
mco:insdc <http://identifiers.org/insdc/CM001012.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000085.7> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chr19> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/19> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=19> .
<http://identifiers.org/mco/19/GRCm38>
rdf:type mco:19 ;
mco:build mco:GRCm38 ;
mco:length 61431566 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/19> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=19> .
mco:X
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/X/GRCm39>
rdf:type mco:X ;
mco:build mco:GRCm39 ;
mco:length 169476592 ;
mco:insdc <http://identifiers.org/insdc/CM001013.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000086.8> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chrX> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/X> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=X> .
<http://identifiers.org/mco/X/GRCm38>
rdf:type mco:X ;
mco:build mco:GRCm38 ;
mco:length 171031299 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/X> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=X> .
mco:Y
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/Y/GRCm39>
rdf:type mco:Y ;
mco:build mco:GRCm39 ;
mco:length 91455967 ;
mco:insdc <http://identifiers.org/insdc/CM001014.3> ;
mco:refseq <http://identifiers.org/refseq/NC_000087.8> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chrY> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/Y> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=Y> .
<http://identifiers.org/mco/Y/GRCm38>
rdf:type mco:Y ;
mco:build mco:GRCm38 ;
mco:length 91744698 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/Y> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=Y> .
mco:MT
rdf:type owl:Class ;
rdfs:label "Mouse chromosome 1" ;
rdfs:subClassOf mco:MouseChromosome .
<http://identifiers.org/mco/MT/GRCm39>
rdf:type mco:MT ;
mco:build mco:GRCm39 ;
mco:length 16299 ;
mco:insdc <http://identifiers.org/insdc/AY172335.1> ;
mco:refseq <http://identifiers.org/refseq/NC_005089.1> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=chrM> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm39/MT> ,
<http://ensembl.org/Mus_musculus/Location/Chromosome?r=MT> .
<http://identifiers.org/mco/MT/GRCm38>
rdf:type mco:MT ;
mco:build mco:GRCm38 ;
mco:length 16299 ;
mco:insdc <http://identifiers.org/insdc/> ;
mco:refseq <http://identifiers.org/refseq/> ;
mco:ucsc <http://genome.ucsc.edu/cgi-bin/hgTracks?db=mm39&position=> ;
mco:ensembl <http://rdf.ebi.ac.uk/resource/ensembl/mus_musculus/GRCm38/MT> ,
<http://nov2020.archive.ensembl.org/Mus_musculus/Location/Chromosome?r=MT> .