-
Notifications
You must be signed in to change notification settings - Fork 3
/
bdso-simple-non-classified.obo
12905 lines (11866 loc) · 794 KB
/
bdso-simple-non-classified.obo
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
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
data-version: pcl/releases/2024-07-11/bdso-simple-non-classified.owl
ontology: pcl/bdso-simple-non-classified
property_value: http://purl.org/dc/elements/1.1/title "Brain Data Standards Cell Ontology" xsd:string
property_value: http://purl.org/dc/terms/license http://creativecommons.org/licenses/by/4.0/
property_value: owl:versionInfo "2024-07-11" xsd:string
[Term]
id: CL:4023119
def: "A L2/3 pvalb-like sst GABAergic cortical interneuron (Mus musculus) that has basket morphology." [PMID:33184512]
synonym: "basket L2/3 PV-like SST (Mus)" EXACT []
relationship: RO:0000053 PATO:0070002
property_value: http://purl.org/dc/elements/1.1/contributor http://orcid.org/0000-0001-7258-9596
[Term]
id: PCL:0011001
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Pip5k1b (Mmus), Pax6 (Mmus). These cells also express Pax6 (Mmus). The reference data for this cell type is CS202002013_1." [PMID:34616062, PMID:34616066]
synonym: "Lamp5 Pax6" EXACT []
synonym: "Lamp5-like Pax6" EXACT []
synonym: "Lamp5_4" EXACT []
synonym: "Pip5k1b (Mmus), Pax6 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000024867 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027168 ! expresses
relationship: RO:0015004 PCL:0012501 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015154
relationship: RO:HOM0000007 PCL:0019007
property_value: IAO:0000028 "Lamp5-like Pax6 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Pax6 (Mmus)" xsd:string
property_value: PCL:0010058 "Pip5k1b (Mmus)" xsd:string
property_value: prefLabel "Lamp5-like Pax6" xsd:string
[Term]
id: PCL:0011002
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Fbn2 (Mmus), Chrna7 (Mmus), Fam19a1 (Mmus). These cells also express Egln3 (Mmus). The reference data for this cell type is CS202002013_2." [PMID:33184512, PMID:34616062, PMID:34616066]
synonym: "Alpha7 cell" EXACT []
synonym: "Fbn2 (Mmus), Chrna7 (Mmus), Fam19a1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Lamp5-like Egln3_1" EXACT []
synonym: "Sncg_4" EXACT []
is_a: CL:4023010 {xref="PMID:34616066"}
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000024598 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000030525 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000035105 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000059187 ! expresses
relationship: RO:0015004 PCL:0012502 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015158
relationship: RO:HOM0000007 PCL:0019123
property_value: IAO:0000028 "Lamp5-like Egln3_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Chrna7 (Mmus)" xsd:string
property_value: PCL:0010058 "Fam19a1 (Mmus)" xsd:string
property_value: PCL:0010058 "Fbn2 (Mmus)" xsd:string
property_value: prefLabel "Lamp5-like Egln3_1" xsd:string
[Term]
id: PCL:0011003
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Crim1 (Mmus), Zfp804b (Mmus). These cells also express Lamp5 (Mmus), Egln3 (Mmus). The reference data for this cell type is CS202002013_3." [PMID:33184512, PMID:34616066]
synonym: "Canopy cell" EXACT []
synonym: "Crim1 (Mmus), Zfp804b (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Lamp5 Egln3_2" EXACT []
is_a: CL:4023022 {xref="PMID:34616066"}
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000024074 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027270 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000035105 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000092094 ! expresses
relationship: RO:0015004 PCL:0012503 ! has characterizing marker set
property_value: IAO:0000028 "Lamp5 Egln3_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Crim1 (Mmus)" xsd:string
property_value: PCL:0010058 "Zfp804b (Mmus)" xsd:string
property_value: prefLabel "Lamp5 Egln3_2" xsd:string
[Term]
id: PCL:0011004
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Ntn1 (Mmus), Cxcl14 (Mmus), Reln (Mmus). These cells also express Lamp5 (Mmus), Egln3 (Mmus). The reference data for this cell type is CS202002013_4." [PMID:34616066]
synonym: "Lamp5 Egln3_3" EXACT []
synonym: "Ntn1 (Mmus), Cxcl14 (Mmus), Reln (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000020902 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000021508 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027270 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000035105 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000042453 ! expresses
relationship: RO:0015004 PCL:0012504 ! has characterizing marker set
property_value: IAO:0000028 "Lamp5 Egln3_3 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cxcl14 (Mmus)" xsd:string
property_value: PCL:0010058 "Ntn1 (Mmus)" xsd:string
property_value: PCL:0010058 "Reln (Mmus)" xsd:string
property_value: prefLabel "Lamp5 Egln3_3" xsd:string
[Term]
id: PCL:0011005
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Ndst4 (Mmus), Dock5 (Mmus), Ndnf (Mmus). These cells also express Lamp5 (Mmus), Pdlim5 (Mmus). The reference data for this cell type is CS202002013_5." [PMID:34616062, PMID:34616066]
synonym: "Lamp5 Pdlim5_1" EXACT []
synonym: "Lamp5_1" EXACT []
synonym: "Ndst4 (Mmus), Dock5 (Mmus), Ndnf (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027270 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027971 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028273 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000044447 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049001 ! expresses
relationship: RO:0015004 PCL:0012505 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015001
relationship: RO:HOM0000007 PCL:0019003
property_value: IAO:0000028 "Lamp5 Pdlim5_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Dock5 (Mmus)" xsd:string
property_value: PCL:0010058 "Ndnf (Mmus)" xsd:string
property_value: PCL:0010058 "Ndst4 (Mmus)" xsd:string
property_value: prefLabel "Lamp5 Pdlim5_1" xsd:string
[Term]
id: PCL:0011006
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Ndnf (Mmus), Pde11a (Mmus). These cells also express Lamp5 (Mmus), Pdlim5 (Mmus). The reference data for this cell type is CS202002013_6." [PMID:34616066]
synonym: "Lamp5 Pdlim5_2" EXACT []
synonym: "Ndnf (Mmus), Pde11a (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027270 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028273 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049001 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000075270 ! expresses
relationship: RO:0015004 PCL:0012506 ! has characterizing marker set
property_value: IAO:0000028 "Lamp5 Pdlim5_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Ndnf (Mmus)" xsd:string
property_value: PCL:0010058 "Pde11a (Mmus)" xsd:string
property_value: prefLabel "Lamp5 Pdlim5_2" xsd:string
[Term]
id: PCL:0011007
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Sema5a (Mmus), Alk (Mmus). These cells also express Lamp5 (Mmus), Slc35d3 (Mmus). The reference data for this cell type is CS202002013_7." [PMID:34616066]
synonym: "Lamp5 Slc35d3" EXACT []
synonym: "Sema5a (Mmus), Alk (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022231 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027270 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000050473 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000055471 ! expresses
relationship: RO:0015004 PCL:0012507 ! has characterizing marker set
property_value: IAO:0000028 "Lamp5 Slc35d3 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Alk (Mmus)" xsd:string
property_value: PCL:0010058 "Sema5a (Mmus)" xsd:string
property_value: prefLabel "Lamp5 Slc35d3" xsd:string
[Term]
id: PCL:0011008
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Nos1 (Mmus), Gm45680 (Mmus). These cells also express Lamp5 (Mmus), Lhx6 (Mmus). The reference data for this cell type is CS202002013_8." [PMID:33184512, PMID:34616062, PMID:34616066]
synonym: "L5/6 neurogliaform cell" EXACT []
synonym: "Lamp5 Lhx6" EXACT []
synonym: "Lamp5_3" EXACT []
synonym: "Nos1 (Mmus), Gm45680 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
is_a: CL:4023023 {xref="PMID:34616066"}
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026890 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027270 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000029361 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000110002 ! expresses
relationship: RO:0015004 PCL:0012508 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015153
relationship: RO:HOM0000007 PCL:0019004
property_value: IAO:0000028 "Lamp5 Lhx6 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Gm45680 (Mmus)" xsd:string
property_value: PCL:0010058 "Nos1 (Mmus)" xsd:string
property_value: prefLabel "Lamp5 Lhx6" xsd:string
[Term]
id: PCL:0011009
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Eps8 (Mmus), Cdh6 (Mmus), Col25a1 (Mmus). These cells also express Sncg (Mmus), Col14a1 (Mmus). The reference data for this cell type is CS202002013_9." [PMID:34616066]
synonym: "Eps8 (Mmus), Cdh6 (Mmus), Col25a1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sncg Col14a1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000015766 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022371 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000023064 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000039385 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000058897 ! expresses
relationship: RO:0015004 PCL:0012509 ! has characterizing marker set
property_value: IAO:0000028 "Sncg Col14a1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cdh6 (Mmus)" xsd:string
property_value: PCL:0010058 "Col25a1 (Mmus)" xsd:string
property_value: PCL:0010058 "Eps8 (Mmus)" xsd:string
property_value: prefLabel "Sncg Col14a1" xsd:string
[Term]
id: PCL:0011010
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Slc17a8 (Mmus), Yjefn3 (Mmus). These cells also express Sncg (Mmus), Slc17a8 (Mmus). The reference data for this cell type is CS202002013_10." [PMID:34616066]
synonym: "Slc17a8 (Mmus), Yjefn3 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sncg Slc17a8" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019935 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019935 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000023064 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000048967 ! expresses
relationship: RO:0015004 PCL:0012510 ! has characterizing marker set
property_value: IAO:0000028 "Sncg Slc17a8 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Slc17a8 (Mmus)" xsd:string
property_value: PCL:0010058 "Yjefn3 (Mmus)" xsd:string
property_value: prefLabel "Sncg Slc17a8" xsd:string
[Term]
id: PCL:0011011
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Syt6 (Mmus), Sln (Mmus), Krt73 (Mmus). These cells also express Sncg (Mmus), Calb1 (Mmus). The reference data for this cell type is CS202002013_11." [PMID:34616066]
synonym: "Sncg Calb1_1" EXACT []
synonym: "Syt6 (Mmus), Sln (Mmus), Krt73 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000023064 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027849 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028222 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000042045 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000063661 ! expresses
relationship: RO:0015004 PCL:0012511 ! has characterizing marker set
property_value: IAO:0000028 "Sncg Calb1_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Krt73 (Mmus)" xsd:string
property_value: PCL:0010058 "Sln (Mmus)" xsd:string
property_value: PCL:0010058 "Syt6 (Mmus)" xsd:string
property_value: prefLabel "Sncg Calb1_1" xsd:string
[Term]
id: PCL:0011012
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Epb41l4a (Mmus), Syt6 (Mmus), Calb1 (Mmus). These cells also express Sncg (Mmus), Calb1 (Mmus). The reference data for this cell type is CS202002013_12." [PMID:34616066]
synonym: "Epb41l4a (Mmus), Syt6 (Mmus), Calb1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sncg Calb1_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000023064 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000024376 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027849 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028222 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028222 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012512 ! has characterizing marker set
property_value: IAO:0000028 "Sncg Calb1_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Calb1 (Mmus)" xsd:string
property_value: PCL:0010058 "Epb41l4a (Mmus)" xsd:string
property_value: PCL:0010058 "Syt6 (Mmus)" xsd:string
property_value: prefLabel "Sncg Calb1_2" xsd:string
[Term]
id: PCL:0011013
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Npy2r (Mmus), Rgs12 (Mmus). These cells also express Sncg (Mmus), Npy2r (Mmus). The reference data for this cell type is CS202002013_13." [PMID:34616066]
synonym: "Npy2r (Mmus), Rgs12 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sncg Npy2r" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000023064 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028004 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028004 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000029101 ! expresses
relationship: RO:0015004 PCL:0012513 ! has characterizing marker set
property_value: IAO:0000028 "Sncg Npy2r MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Npy2r (Mmus)" xsd:string
property_value: PCL:0010058 "Rgs12 (Mmus)" xsd:string
property_value: prefLabel "Sncg Npy2r" xsd:string
[Term]
id: PCL:0011014
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Unc5b (Mmus), Nectin3 (Mmus), Crh (Mmus). These cells also express Vip (Mmus). The reference data for this cell type is CS202002013_14." [PMID:33184512, PMID:34616066]
synonym: "Small CCK basket cell" EXACT []
synonym: "Unc5b (Mmus), Nectin3 (Mmus), Crh (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Sncg" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019772 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000020099 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022656 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049796 ! expresses
relationship: RO:0015004 PCL:0012514 ! has characterizing marker set
property_value: IAO:0000028 "Vip Sncg MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Crh (Mmus)" xsd:string
property_value: PCL:0010058 "Nectin3 (Mmus)" xsd:string
property_value: PCL:0010058 "Unc5b (Mmus)" xsd:string
property_value: prefLabel "Vip Sncg" xsd:string
[Term]
id: PCL:0011015
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Rgs16 (Mmus), Sfrp2 (Mmus). These cells also express Vip (Mmus), Serpinf1 (Mmus). The reference data for this cell type is CS202002013_15." [PMID:34616066]
synonym: "Rgs16 (Mmus), Sfrp2 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Serpinf1_1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000753 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019772 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026475 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027996 ! expresses
relationship: RO:0015004 PCL:0012515 ! has characterizing marker set
property_value: IAO:0000028 "Vip Serpinf1_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Rgs16 (Mmus)" xsd:string
property_value: PCL:0010058 "Sfrp2 (Mmus)" xsd:string
property_value: prefLabel "Vip Serpinf1_1" xsd:string
[Term]
id: PCL:0011016
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Col14a1 (Mmus), Nov (Mmus), Pbx3 (Mmus). These cells also express Vip (Mmus), Serpinf1 (Mmus). The reference data for this cell type is CS202002013_16." [PMID:34616066]
synonym: "Col14a1 (Mmus), Nov (Mmus), Pbx3 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Serpinf1_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000753 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019772 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022371 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000037362 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000038718 ! expresses
relationship: RO:0015004 PCL:0012516 ! has characterizing marker set
property_value: IAO:0000028 "Vip Serpinf1_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Col14a1 (Mmus)" xsd:string
property_value: PCL:0010058 "Nov (Mmus)" xsd:string
property_value: PCL:0010058 "Pbx3 (Mmus)" xsd:string
property_value: prefLabel "Vip Serpinf1_2" xsd:string
[Term]
id: PCL:0011017
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Enpp2 (Mmus), Homer2 (Mmus), Nov (Mmus), Plekhg1 (Mmus). These cells also express Serpinf1 (Mmus). The reference data for this cell type is CS202002013_17." [PMID:34616066]
synonym: "Enpp2 (Mmus), Homer2 (Mmus), Nov (Mmus), Plekhg1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Serpinf1_3" EXACT []
synonym: "Vip-like Serpinf1_3" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000753 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022425 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000025813 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000037362 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000040624 ! expresses
relationship: RO:0015004 PCL:0012517 ! has characterizing marker set
property_value: IAO:0000028 "Vip-like Serpinf1_3 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Enpp2 (Mmus)" xsd:string
property_value: PCL:0010058 "Homer2 (Mmus)" xsd:string
property_value: PCL:0010058 "Nov (Mmus)" xsd:string
property_value: PCL:0010058 "Plekhg1 (Mmus)" xsd:string
property_value: prefLabel "Vip-like Serpinf1_3" xsd:string
[Term]
id: PCL:0011018
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Vip (Mmus), Nov (Mmus), Vwc2l (Mmus). These cells also express Cck (Mmus), Htr1f (Mmus). The reference data for this cell type is CS202002013_18." [PMID:34616066]
synonym: "Vip (Mmus), Nov (Mmus), Vwc2l (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Htr1f" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019772 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000037362 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000045648 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000050783 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012518 ! has characterizing marker set
property_value: IAO:0000028 "Vip Htr1f MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Nov (Mmus)" xsd:string
property_value: PCL:0010058 "Vip (Mmus)" xsd:string
property_value: PCL:0010058 "Vwc2l (Mmus)" xsd:string
property_value: prefLabel "Vip Htr1f" xsd:string
[Term]
id: PCL:0011019
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Vip (Mmus), Pbx3 (Mmus), Pde3a (Mmus). These cells also express Cck (Mmus), Gpc3 (Mmus). The reference data for this cell type is CS202002013_19." [PMID:34616066]
synonym: "Vip (Mmus), Pbx3 (Mmus), Pde3a (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Gpc3" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019772 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000038718 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000041741 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000055653 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012519 ! has characterizing marker set
property_value: IAO:0000028 "Vip Gpc3 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Pbx3 (Mmus)" xsd:string
property_value: PCL:0010058 "Pde3a (Mmus)" xsd:string
property_value: PCL:0010058 "Vip (Mmus)" xsd:string
property_value: prefLabel "Vip Gpc3" xsd:string
[Term]
id: PCL:0011020
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Vip (Mmus), Btbd11 (Mmus), Bmper (Mmus), Crh (Mmus). These cells also express Cck (Mmus), C1ql1 (Mmus). The reference data for this cell type is CS202002013_20." [PMID:34616066]
synonym: "Vip (Mmus), Btbd11 (Mmus), Bmper (Mmus), Crh (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip C1ql1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019772 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000020042 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031963 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000045532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049796 ! expresses
relationship: RO:0015004 PCL:0012520 ! has characterizing marker set
property_value: IAO:0000028 "Vip C1ql1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Bmper (Mmus)" xsd:string
property_value: PCL:0010058 "Btbd11 (Mmus)" xsd:string
property_value: PCL:0010058 "Crh (Mmus)" xsd:string
property_value: PCL:0010058 "Vip (Mmus)" xsd:string
property_value: prefLabel "Vip C1ql1" xsd:string
[Term]
id: PCL:0011021
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Htr3a (Mmus), 5033421B08Rik (Mmus). These cells also express Cck (Mmus), Mybpc1 (Mmus). The reference data for this cell type is CS202002013_21." [PMID:34616066]
synonym: "Htr3a (Mmus), 5033421B08Rik (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Mybpc1_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000020061 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032269 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000112276 ! expresses
relationship: RO:0015004 PCL:0012521 ! has characterizing marker set
property_value: IAO:0000028 "Vip Mybpc1_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "5033421B08Rik (Mmus)" xsd:string
property_value: PCL:0010058 "Htr3a (Mmus)" xsd:string
property_value: prefLabel "Vip Mybpc1_2" xsd:string
[Term]
id: PCL:0011022
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Calb2 (Mmus), Gm2516 (Mmus). These cells also express Cck (Mmus), Mybpc1 (Mmus). The reference data for this cell type is CS202002013_22." [PMID:34616066]
synonym: "Calb2 (Mmus), Gm2516 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Mybpc1_1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000003657 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000020061 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000110281 ! expresses
relationship: RO:0015004 PCL:0012522 ! has characterizing marker set
property_value: IAO:0000028 "Vip Mybpc1_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Calb2 (Mmus)" xsd:string
property_value: PCL:0010058 "Gm2516 (Mmus)" xsd:string
property_value: prefLabel "Vip Mybpc1_1" xsd:string
[Term]
id: PCL:0011023
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Chat (Mmus), Npy2r (Mmus). These cells also express Cck (Mmus), Chat (Mmus). The reference data for this cell type is CS202002013_23." [PMID:34616066]
synonym: "Chat (Mmus), Npy2r (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Chat_1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000021919 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000021919 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028004 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012523 ! has characterizing marker set
property_value: IAO:0000028 "Vip Chat_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Chat (Mmus)" xsd:string
property_value: PCL:0010058 "Npy2r (Mmus)" xsd:string
property_value: prefLabel "Vip Chat_1" xsd:string
[Term]
id: PCL:0011024
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Grm8 (Mmus), Caln1 (Mmus). These cells also express Cck (Mmus), Mybpc1 (Mmus). The reference data for this cell type is CS202002013_24." [PMID:34616066]
synonym: "Grm8 (Mmus), Caln1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Mybpc1_3" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000020061 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000024211 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000060371 ! expresses
relationship: RO:0015004 PCL:0012524 ! has characterizing marker set
property_value: IAO:0000028 "Vip Mybpc1_3 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Caln1 (Mmus)" xsd:string
property_value: PCL:0010058 "Grm8 (Mmus)" xsd:string
property_value: prefLabel "Vip Mybpc1_3" xsd:string
[Term]
id: PCL:0011025
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Htr4 (Mmus), Grik4 (Mmus). These cells also express Cck (Mmus), Chat (Mmus). The reference data for this cell type is CS202002013_25." [PMID:34616066]
synonym: "Htr4 (Mmus), Grik4 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Chat_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000021919 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026322 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032017 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012525 ! has characterizing marker set
property_value: IAO:0000028 "Vip Chat_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Grik4 (Mmus)" xsd:string
property_value: PCL:0010058 "Htr4 (Mmus)" xsd:string
property_value: prefLabel "Vip Chat_2" xsd:string
[Term]
id: PCL:0011026
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Thsd7a (Mmus), Gm39185 (Mmus). These cells also express Igfbp6 (Mmus). The reference data for this cell type is CS202002013_26." [PMID:34616066]
synonym: "Thsd7a (Mmus), Gm39185 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Igfbp6_1" EXACT []
synonym: "Vip-like Igfbp6_1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000023046 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032625 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000110468 ! expresses
relationship: RO:0015004 PCL:0012526 ! has characterizing marker set
property_value: IAO:0000028 "Vip-like Igfbp6_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Gm39185 (Mmus)" xsd:string
property_value: PCL:0010058 "Thsd7a (Mmus)" xsd:string
property_value: prefLabel "Vip-like Igfbp6_1" xsd:string
[Term]
id: PCL:0011027
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Thsd7b (Mmus), Crh (Mmus). These cells also express Cck (Mmus), Igfbp6 (Mmus). The reference data for this cell type is CS202002013_27." [PMID:34616066]
synonym: "Thsd7b (Mmus), Crh (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Vip Igfbp6_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000023046 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000032532 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000042581 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049796 ! expresses
relationship: RO:0015004 PCL:0012527 ! has characterizing marker set
property_value: IAO:0000028 "Vip Igfbp6_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Crh (Mmus)" xsd:string
property_value: PCL:0010058 "Thsd7b (Mmus)" xsd:string
property_value: prefLabel "Vip Igfbp6_2" xsd:string
[Term]
id: PCL:0011028
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Nos1 (Mmus). These cells also express Sst (Mmus), Chodl (Mmus). The reference data for this cell type is CS202002013_28." [PMID:33184512, PMID:34616062, PMID:34616066]
synonym: "Long-projecting SST cell" EXACT []
synonym: "Nos1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Chodl" EXACT []
is_a: CL:4023025 {xref="PMID:34616066"}
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022860 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000029361 ! expresses
relationship: RO:0015004 PCL:0012528 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015040
relationship: RO:HOM0000007 PCL:0019119
property_value: IAO:0000028 "Sst Chodl MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Nos1 (Mmus)" xsd:string
property_value: prefLabel "Sst Chodl" xsd:string
[Term]
id: PCL:0011029
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Cartpt (Mmus), Il1rapl2 (Mmus), 9530026P05Rik (Mmus). These cells also express Sst (Mmus), Penk (Mmus). The reference data for this cell type is CS202002013_29." [PMID:34616066]
synonym: "Cartpt (Mmus), Il1rapl2 (Mmus), 9530026P05Rik (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Penk" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000021647 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000045573 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000059203 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000097462 ! expresses
relationship: RO:0015004 PCL:0012529 ! has characterizing marker set
property_value: IAO:0000028 "Sst Penk MOp (Mouse)" xsd:string
property_value: PCL:0010058 "9530026P05Rik (Mmus)" xsd:string
property_value: PCL:0010058 "Cartpt (Mmus)" xsd:string
property_value: PCL:0010058 "Il1rapl2 (Mmus)" xsd:string
property_value: prefLabel "Sst Penk" xsd:string
[Term]
id: PCL:0011030
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Reln (Mmus), Il1rapl2 (Mmus). These cells also express Sst (Mmus), Myh8 (Mmus). The reference data for this cell type is CS202002013_30." [PMID:34616066]
synonym: "Reln (Mmus), Il1rapl2 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Myh8_1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000042453 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000055775 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000059203 ! expresses
relationship: RO:0015004 PCL:0012530 ! has characterizing marker set
property_value: IAO:0000028 "Sst Myh8_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Il1rapl2 (Mmus)" xsd:string
property_value: PCL:0010058 "Reln (Mmus)" xsd:string
property_value: prefLabel "Sst Myh8_1" xsd:string
[Term]
id: PCL:0011031
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Cdh13 (Mmus), Sox6 (Mmus), Pld5 (Mmus). These cells also express Sst (Mmus), Myh8 (Mmus). The reference data for this cell type is CS202002013_31." [PMID:34616066]
synonym: "Cdh13 (Mmus), Sox6 (Mmus), Pld5 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Myh8_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031841 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000051910 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000055214 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000055775 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012531 ! has characterizing marker set
property_value: IAO:0000028 "Sst Myh8_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cdh13 (Mmus)" xsd:string
property_value: PCL:0010058 "Pld5 (Mmus)" xsd:string
property_value: PCL:0010058 "Sox6 (Mmus)" xsd:string
property_value: prefLabel "Sst Myh8_2" xsd:string
[Term]
id: PCL:0011032
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Grm1 (Mmus), Cdh9 (Mmus). These cells also express Sst (Mmus), Myh8 (Mmus). The reference data for this cell type is CS202002013_32." [PMID:34616066]
synonym: "Grm1 (Mmus), Cdh9 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Myh8_3" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000019828 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000025370 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000055775 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012532 ! has characterizing marker set
property_value: IAO:0000028 "Sst Myh8_3 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cdh9 (Mmus)" xsd:string
property_value: PCL:0010058 "Grm1 (Mmus)" xsd:string
property_value: prefLabel "Sst Myh8_3" xsd:string
[Term]
id: PCL:0011033
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Pdyn (Mmus), Gm30835 (Mmus). These cells also express Sst (Mmus), Htr1a (Mmus). The reference data for this cell type is CS202002013_33." [PMID:34616066]
synonym: "Pdyn (Mmus), Gm30835 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Htr1a" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000021721 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027400 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000105068 ! expresses
relationship: RO:0015004 PCL:0012533 ! has characterizing marker set
property_value: IAO:0000028 "Sst Htr1a MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Gm30835 (Mmus)" xsd:string
property_value: PCL:0010058 "Pdyn (Mmus)" xsd:string
property_value: prefLabel "Sst Htr1a" xsd:string
[Term]
id: PCL:0011034
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Fbn2 (Mmus), Col19a1 (Mmus), Trpc6 (Mmus). These cells also express Sst (Mmus), Etv1 (Mmus). The reference data for this cell type is CS202002013_34." [PMID:34616066]
synonym: "Fbn2 (Mmus), Col19a1 (Mmus), Trpc6 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Etv1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004151 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000024598 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026141 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031997 ! expresses
relationship: RO:0015004 PCL:0012534 ! has characterizing marker set
property_value: IAO:0000028 "Sst Etv1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Col19a1 (Mmus)" xsd:string
property_value: PCL:0010058 "Fbn2 (Mmus)" xsd:string
property_value: PCL:0010058 "Trpc6 (Mmus)" xsd:string
property_value: prefLabel "Sst Etv1" xsd:string
[Term]
id: PCL:0011035
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Spon1 (Mmus), Whrn (Mmus), Edaradd (Mmus). These cells also express Sst (Mmus), Etv1 (Mmus). The reference data for this cell type is CS202002013_35." [PMID:34616066]
synonym: "Spon1 (Mmus), Whrn (Mmus), Edaradd (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Pvalb Etv1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004151 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000038156 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000039137 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000095105 ! expresses
relationship: RO:0015004 PCL:0012535 ! has characterizing marker set
property_value: IAO:0000028 "Sst Pvalb Etv1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Edaradd (Mmus)" xsd:string
property_value: PCL:0010058 "Spon1 (Mmus)" xsd:string
property_value: PCL:0010058 "Whrn (Mmus)" xsd:string
property_value: prefLabel "Sst Pvalb Etv1" xsd:string
[Term]
id: PCL:0011036
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Eya4 (Mmus), Nek7 (Mmus), Trpc6 (Mmus). These cells also express Sst (Mmus), Crhr2 (Mmus). The reference data for this cell type is CS202002013_36." [PMID:34616066]
synonym: "Eya4 (Mmus), Nek7 (Mmus), Trpc6 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Crhr2_1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000003476 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000010461 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026393 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031997 ! expresses
relationship: RO:0015004 PCL:0012536 ! has characterizing marker set
property_value: IAO:0000028 "Sst Crhr2_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Eya4 (Mmus)" xsd:string
property_value: PCL:0010058 "Nek7 (Mmus)" xsd:string
property_value: PCL:0010058 "Trpc6 (Mmus)" xsd:string
property_value: prefLabel "Sst Crhr2_1" xsd:string
[Term]
id: PCL:0011037
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Lypd6b (Mmus), Trpc6 (Mmus). These cells also express Sst (Mmus), Crhr2 (Mmus). The reference data for this cell type is CS202002013_37." [PMID:34616062, PMID:34616066]
synonym: "Lypd6b (Mmus), Trpc6 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Crhr2_2" EXACT []
synonym: "Sst_4" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000003476 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026765 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031997 ! expresses
relationship: RO:0015004 PCL:0012537 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015166
relationship: RO:HOM0000007 PCL:0019037
property_value: IAO:0000028 "Sst Crhr2_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Lypd6b (Mmus)" xsd:string
property_value: PCL:0010058 "Trpc6 (Mmus)" xsd:string
property_value: prefLabel "Sst Crhr2_2" xsd:string
[Term]
id: PCL:0011038
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Rerg (Mmus), Hpse (Mmus). These cells also express Sst (Mmus), Hpse2 (Mmus). The reference data for this cell type is CS202002013_38." [PMID:33184512, PMID:34616066]
synonym: "L4 SST cell" EXACT []
synonym: "Rerg (Mmus), Hpse (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Hpse" EXACT []
is_a: CL:4023031 {xref="PMID:34616066"}
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000030222 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000035273 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000074852 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012538 ! has characterizing marker set
property_value: IAO:0000028 "Sst Hpse MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Hpse (Mmus)" xsd:string
property_value: PCL:0010058 "Rerg (Mmus)" xsd:string
property_value: prefLabel "Sst Hpse" xsd:string
[Term]
id: PCL:0011039
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Sst (Mmus), Olfm3 (Mmus). These cells also express Sst (Mmus), Calb2 (Mmus). The reference data for this cell type is CS202002013_39." [PMID:34616066]
synonym: "Sst (Mmus), Olfm3 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Calb2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000003657 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000027965 ! expresses
relationship: RO:0015004 PCL:0012539 ! has characterizing marker set
property_value: IAO:0000028 "Sst Calb2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Olfm3 (Mmus)" xsd:string
property_value: PCL:0010058 "Sst (Mmus)" xsd:string
property_value: prefLabel "Sst Calb2" xsd:string
[Term]
id: PCL:0011040
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Trpc6 (Mmus), AC129186.1 (Mmus). These cells also express Sst (Mmus), Pappa (Mmus). The reference data for this cell type is CS202002013_40." [PMID:34616066]
synonym: "Sst Pappa" EXACT []
synonym: "Trpc6 (Mmus), AC129186.1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028370 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031997 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000116610 ! expresses
relationship: RO:0015004 PCL:0012540 ! has characterizing marker set
property_value: IAO:0000028 "Sst Pappa MOp (Mouse)" xsd:string
property_value: PCL:0010058 "AC129186.1 (Mmus)" xsd:string
property_value: PCL:0010058 "Trpc6 (Mmus)" xsd:string
property_value: prefLabel "Sst Pappa" xsd:string
[Term]
id: PCL:0011041
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Moxd1 (Mmus), Prkg2 (Mmus). These cells also express Sst (Mmus), Pappa (Mmus). The reference data for this cell type is CS202002013_41." [PMID:33184512, PMID:34616066]
synonym: "L2/3 PV-like cell" EXACT []
synonym: "Moxd1 (Mmus), Prkg2 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Pvalb Calb2" EXACT []
is_a: PCL:1000002 {xref="PMID:34616066"}
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000020000 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028370 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000029334 ! expresses
relationship: RO:0015004 PCL:0012541 ! has characterizing marker set
property_value: IAO:0000028 "Sst Pvalb Calb2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Moxd1 (Mmus)" xsd:string
property_value: PCL:0010058 "Prkg2 (Mmus)" xsd:string
property_value: prefLabel "Sst Pvalb Calb2" xsd:string
[Term]
id: PCL:0011042
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Pard3b (Mmus), Gm48893 (Mmus). These cells also express Sst (Mmus), C1ql3 (Mmus). The reference data for this cell type is CS202002013_42." [PMID:34616062, PMID:34616066]
synonym: "Pard3b (Mmus), Gm48893 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst C1ql3_1" EXACT []
synonym: "Sst_5" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049630 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000052062 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000111950 ! expresses
relationship: RO:0015004 PCL:0012542 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015167
relationship: RO:HOM0000007 PCL:0019027
property_value: IAO:0000028 "Sst C1ql3_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Gm48893 (Mmus)" xsd:string
property_value: PCL:0010058 "Pard3b (Mmus)" xsd:string
property_value: prefLabel "Sst C1ql3_1" xsd:string
[Term]
id: PCL:0011043
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Gxylt2 (Mmus), Brinp3 (Mmus), Ndnf (Mmus). These cells also express Sst (Mmus), C1ql3 (Mmus). The reference data for this cell type is CS202002013_43." [PMID:34616066]
synonym: "Gxylt2 (Mmus), Brinp3 (Mmus), Ndnf (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst C1ql3_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000030074 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000035131 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049001 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000049630 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012543 ! has characterizing marker set
property_value: IAO:0000028 "Sst C1ql3_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Brinp3 (Mmus)" xsd:string
property_value: PCL:0010058 "Gxylt2 (Mmus)" xsd:string
property_value: PCL:0010058 "Ndnf (Mmus)" xsd:string
property_value: prefLabel "Sst C1ql3_2" xsd:string
[Term]
id: PCL:0011044
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Tac2 (Mmus), Cdh13 (Mmus), Tmtc2 (Mmus). These cells also express Sst (Mmus), Tac2 (Mmus). The reference data for this cell type is CS202002013_44." [PMID:34616066]
synonym: "Sst Tac2" EXACT []
synonym: "Tac2 (Mmus), Cdh13 (Mmus), Tmtc2 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000025400 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000025400 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031841 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000036019 ! expresses
relationship: RO:0015004 PCL:0012544 ! has characterizing marker set
property_value: IAO:0000028 "Sst Tac2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cdh13 (Mmus)" xsd:string
property_value: PCL:0010058 "Tac2 (Mmus)" xsd:string
property_value: PCL:0010058 "Tmtc2 (Mmus)" xsd:string
property_value: prefLabel "Sst Tac2" xsd:string
[Term]
id: PCL:0011045
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Zfpm2 (Mmus), St6galnac5 (Mmus), St8sia4 (Mmus). These cells also express Sst (Mmus), Th (Mmus). The reference data for this cell type is CS202002013_45." [PMID:34616066]
synonym: "Sst Th_1" EXACT []
synonym: "Zfpm2 (Mmus), St6galnac5 (Mmus), St8sia4 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000214 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022306 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000039037 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000040710 ! expresses
relationship: RO:0015004 PCL:0012545 ! has characterizing marker set
property_value: IAO:0000028 "Sst Th_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "St6galnac5 (Mmus)" xsd:string
property_value: PCL:0010058 "St8sia4 (Mmus)" xsd:string
property_value: PCL:0010058 "Zfpm2 (Mmus)" xsd:string
property_value: prefLabel "Sst Th_1" xsd:string
[Term]
id: PCL:0011046
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Sst (Mmus), Pnoc (Mmus), Pard3b (Mmus). These cells also express Sst (Mmus), Th (Mmus). The reference data for this cell type is CS202002013_46." [PMID:34616066]
synonym: "Sst (Mmus), Pnoc (Mmus), Pard3b (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Sst Th_2" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000214 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000045731 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000052062 ! expresses
relationship: RO:0015004 PCL:0012546 ! has characterizing marker set
property_value: IAO:0000028 "Sst Th_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Pard3b (Mmus)" xsd:string
property_value: PCL:0010058 "Pnoc (Mmus)" xsd:string
property_value: PCL:0010058 "Sst (Mmus)" xsd:string
property_value: prefLabel "Sst Th_2" xsd:string
[Term]
id: PCL:0011047
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Th (Mmus), Cort (Mmus). These cells also express Sst (Mmus), Th (Mmus). The reference data for this cell type is CS202002013_47." [PMID:34616062, PMID:34616066]
synonym: "Sst Th_3" EXACT []
synonym: "Sst_7" EXACT []
synonym: "Th (Mmus), Cort (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000214 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000214 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000004366 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028971 ! expresses
relationship: RO:0015004 PCL:0012547 ! has characterizing marker set
relationship: RO:HOM0000007 PCL:0015058
relationship: RO:HOM0000007 PCL:0019029
property_value: IAO:0000028 "Sst Th_3 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cort (Mmus)" xsd:string
property_value: PCL:0010058 "Th (Mmus)" xsd:string
property_value: prefLabel "Sst Th_3" xsd:string
[Term]
id: PCL:0011048
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Th (Mmus), Gabrg1 (Mmus). These cells also express Pvalb (Mmus), Gabrg1 (Mmus). The reference data for this cell type is CS202002013_48." [PMID:33184512, PMID:34616066]
synonym: "L6 FS cell w/ large sag" EXACT []
synonym: "Pvalb Gabrg1" EXACT []
synonym: "Th (Mmus), Gabrg1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000000214 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000001260 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000001260 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000005716 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012548 ! has characterizing marker set
property_value: IAO:0000028 "Pvalb Gabrg1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Gabrg1 (Mmus)" xsd:string
property_value: PCL:0010058 "Th (Mmus)" xsd:string
property_value: prefLabel "Pvalb Gabrg1" xsd:string
[Term]
id: PCL:0011049
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Plch1 (Mmus), Tac1 (Mmus), 9330158H04Rik (Mmus). These cells also express Pvalb (Mmus), Egfem1 (Mmus). The reference data for this cell type is CS202002013_49." [PMID:34616066]
synonym: "Plch1 (Mmus), Tac1 (Mmus), 9330158H04Rik (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Pvalb Egfem1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000005716 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000036834 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000061762 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000063600 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000073154 ! expresses
relationship: RO:0015004 PCL:0012549 ! has characterizing marker set
property_value: IAO:0000028 "Pvalb Egfem1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "9330158H04Rik (Mmus)" xsd:string
property_value: PCL:0010058 "Plch1 (Mmus)" xsd:string
property_value: PCL:0010058 "Tac1 (Mmus)" xsd:string
property_value: prefLabel "Pvalb Egfem1" xsd:string
[Term]
id: PCL:0011050
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Fzd6 (Mmus), Syt2 (Mmus), Slit2 (Mmus). These cells also express Pvalb (Mmus), Gpr149 (Mmus). The reference data for this cell type is CS202002013_50." [PMID:34616066]
synonym: "Fzd6 (Mmus), Syt2 (Mmus), Slit2 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Pvalb Gpr149" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000005716 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000022297 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026452 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000031558 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000043441 {xref="PMID:34616062"} ! expresses
relationship: RO:0015004 PCL:0012550 ! has characterizing marker set
property_value: IAO:0000028 "Pvalb Gpr149 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Fzd6 (Mmus)" xsd:string
property_value: PCL:0010058 "Slit2 (Mmus)" xsd:string
property_value: PCL:0010058 "Syt2 (Mmus)" xsd:string
property_value: prefLabel "Pvalb Gpr149" xsd:string
[Term]
id: PCL:0011051
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Cacna2d2 (Mmus), Syt2 (Mmus), Tmem132d (Mmus), Sema3e (Mmus). These cells also express Pvalb (Mmus), Kank4 (Mmus). The reference data for this cell type is CS202002013_51." [PMID:34616066]
synonym: "Cacna2d2 (Mmus), Syt2 (Mmus), Tmem132d (Mmus), Sema3e (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Pvalb Kank4" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000005716 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000010066 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000026452 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000034310 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000035407 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000063531 ! expresses
relationship: RO:0015004 PCL:0012551 ! has characterizing marker set
property_value: IAO:0000028 "Pvalb Kank4 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cacna2d2 (Mmus)" xsd:string
property_value: PCL:0010058 "Sema3e (Mmus)" xsd:string
property_value: PCL:0010058 "Syt2 (Mmus)" xsd:string
property_value: PCL:0010058 "Tmem132d (Mmus)" xsd:string
property_value: prefLabel "Pvalb Kank4" xsd:string
[Term]
id: PCL:0011052
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Cort (Mmus), Nxph2 (Mmus), Gm28807 (Mmus). These cells also express Pvalb (Mmus), Calb1 (Mmus). The reference data for this cell type is CS202002013_52." [PMID:34616066]
synonym: "Cort (Mmus), Nxph2 (Mmus), Gm28807 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
synonym: "Pvalb Calb1_1" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000005716 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028222 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028971 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000069132 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000100650 ! expresses
relationship: RO:0015004 PCL:0012552 ! has characterizing marker set
property_value: IAO:0000028 "Pvalb Calb1_1 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cort (Mmus)" xsd:string
property_value: PCL:0010058 "Gm28807 (Mmus)" xsd:string
property_value: PCL:0010058 "Nxph2 (Mmus)" xsd:string
property_value: prefLabel "Pvalb Calb1_1" xsd:string
[Term]
id: PCL:0011053
def: "A GABAergic interneuron of the Mus musculus primary motor cortex. These cells can be distinguished from other cells in the primary motor cortex by their selective expression of Tmem132c (Mmus), Cntnap5c (Mmus), Tac1 (Mmus). These cells also express Pvalb (Mmus), Calb1 (Mmus). The reference data for this cell type is CS202002013_53." [PMID:34616066]
synonym: "Pvalb Calb1_2" EXACT []
synonym: "Tmem132c (Mmus), Cntnap5c (Mmus), Tac1 (Mmus) expressing GABAergic interneuron of primary motor cortex (Mus musculus)" EXACT []
relationship: RO:0002100 UBERON:0001384 ! has soma location
relationship: RO:0002162 NCBITaxon:10090
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000005716 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000028222 {xref="PMID:34616062"} ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000034324 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000038048 ! expresses
relationship: RO:0002292 http://identifiers.org/ensembl/ENSMUSG00000061762 ! expresses
relationship: RO:0015004 PCL:0012553 ! has characterizing marker set
property_value: IAO:0000028 "Pvalb Calb1_2 MOp (Mouse)" xsd:string
property_value: PCL:0010058 "Cntnap5c (Mmus)" xsd:string