-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclao-full.obo
12330 lines (10788 loc) · 551 KB
/
clao-full.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: clao/releases/2021-09-27/clao-full.owl
subsetdef: AISM:0000171 ""
ontology: clao/clao-full
property_value: http://purl.org/dc/elements/1.1/title "Collembola Anatomy Ontology" xsd:string
property_value: http://purl.org/dc/terms/contributor "Luis A. González Montaña (lagonzalezmo) https://orcid.org/0000-0002-9136-9932" xsd:string
property_value: http://purl.org/dc/terms/description "The Collembola Anatomy Ontology contains terms used for describing the anatomy and phenotype of springtails in biodiversity research." xsd:string
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/ xsd:string
property_value: owl:versionInfo "2020-16-05" xsd:string
property_value: owl:versionInfo "2021-09-27" xsd:string
[Term]
id: CLAO:0000002
name: cuticular cavity
def: "Any depression located on cuticle." []
xref: http://www.collembola.org
is_a: CLAO:0001118 ! anatomical space
[Term]
id: CLAO:0000003
name: epithelial coelomosac {http://purl.obolibrary.org/obo/AISM_0000171="Verhoef, H.A., Bosman, C., Bierenbroodspot, A. et al. Ultrastructure and function of the labial nephridia and the rectum of Orchesella cincta (L.) (Collembola). Cell Tissue Res. 198, 237–246 (1979). \nhttps://doi.org/10.1007/BF00232007"}
def: "The anatomical space that is part of labial nephridium and composed by podocytes." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-01"}
synonym: "sacculus" RELATED []
xref: http://www.collembola.org
is_a: CLAO:0001118 ! anatomical space
relationship: BFO:0000050 CLAO:0000009 ! part_of labial nephridium
[Term]
id: CLAO:0000004
name: filter chamber
def: "Part of digestive system continous to pyloric valves." []
xref: http://www.collembola.org
is_a: CLAO:0001118 ! anatomical space
property_value: http://purl.org/dc/elements/1.1/source "Adams and Salmon, 1972" xsd:string
[Term]
id: CLAO:0000005
name: gnathal pouch
def: "The invagination of the cuticle that encloses the maxilla and the mandible." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-26"}
is_a: CLAO:0000971 ! cuticular invagination
relationship: BFO:0000050 CLAO:0001011 ! part_of head
property_value: http://purl.org/dc/elements/1.1/source "Manton and Harding, 1964" xsd:string
[Term]
id: CLAO:0000006
name: mandibular cavity
def: "A depression located on anterior region of mandible" []
xref: http://www.collembola.org
xref: UBERON:0002553
is_a: CLAO:0001118 ! anatomical space
[Term]
id: CLAO:0000008
name: nephridial aperture
def: "The orifice of excretory tube or nephridium." []
xref: http://www.collembola.org
is_a: CLAO:0001164 ! orifice
[Term]
id: CLAO:0000009
name: labial nephridium
def: "Excretory tubes located in the labium." []
synonym: "cephalic excretory organ" RELATED []
synonym: "cephalic kidney" RELATED []
synonym: "cephalic labial kidney" RELATED []
synonym: "coelomoduct kidney" RELATED []
xref: http://www.collembola.org
is_a: CLAO:0001168 ! nephridium
[Term]
id: CLAO:0000010
name: lateral eye
comment: This is a synonym of eye patch
is_a: CLAO:0001130 ! compound organ
is_obsolete: true
[Term]
id: CLAO:0000011
name: cornea nipple
def: "Thre cuticular protrusion located on the surface of cornea." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-08-01"}
xref: http://www.collembola.org
is_a: CLAO:0001094 ! cuticular projection
relationship: BFO:0000050 CLAO:0001162 ! part_of cornea
relationship: BFO:0000050 CLAO:0001535 ! part_of external side
[Term]
id: CLAO:0000012
name: ventral groove
def: "The groove located on medial line between head ventral side to collophore anterior side." []
synonym: "cephalic groove" RELATED []
synonym: "labial vental groove" RELATED []
synonym: "linea ventralis" RELATED []
synonym: "mediolongitudinal groove" RELATED []
synonym: "ventral line" RELATED []
synonym: "ventral nephridial channel" RELATED []
xref: http://collembola.org/
is_a: CLAO:0001048 ! groove
relationship: BFO:0000050 CLAO:0001011 ! part_of head
[Term]
id: CLAO:0000013
name: pseudocellar medial groove
def: "A invagination of pseudocelli." []
xref: http://www.collembola.org
is_a: CLAO:0001048 ! groove
[Term]
id: CLAO:0000014
name: labial margin
def: "The line that delimits the labial palp and labial triangle." []
xref: http://www.collembola.org
is_a: CLAO:0001053 ! margin
[Term]
id: CLAO:0000016
name: labro-labial cleft
def: "A medial concavity tha is continuous with the labial margin and includes the labrum." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-02"}
xref: http://www.collembola.org
is_a: CLAO:0001068 ! notch
relationship: RO:0002150 CLAO:0001014 ! continuous_with labrum
relationship: RO:0002150 CLAO:0001050 ! continuous_with labium
[Term]
id: CLAO:0000017
name: labial cleft
def: "A medial concavity tha is continuous with the labial margin." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-02"}
xref: http://www.collembola.org
is_a: CLAO:0001068 ! notch
relationship: RO:0002150 CLAO:0001050 ! continuous_with labium
[Term]
id: CLAO:0000018
name: superlingual notch
def: "A medial concavity tha is continuous with the lateral superlingua." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-02"}
xref: http://www.collembola.org
is_a: CLAO:0001068 ! notch
relationship: RO:0002150 CLAO:0001289 ! continuous_with lateral superlingua
[Term]
id: CLAO:0000019
name: pseudocellus circular suture
def: "The suture that delimits the pseudocelli." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-26"}
synonym: "circular furrow" RELATED []
xref: http://www.collembola.org
is_a: CLAO:0000992 ! suture
[Term]
id: CLAO:0000020
name: rudimentary second antennae
def: "The antennal rudiment that is part of the embryo." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-02"}
xref: http://www.collembola.org
is_a: CLAO:0001478 ! embryonic structure
relationship: BFO:0000050 CLAO:0001146 ! part_of embryo
[Term]
id: CLAO:0000021
name: ocellus A
def: "In the first row on external-medial axis, the first ocellus adjacent to ocellus B" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000022
name: ocellus B
def: "In the first row on external-medial axis, the first ocellus adjacent to ocellus A" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000023
name: ocellus C
def: "In the second row on external-medial axis, the second ocellus immediately posterior to ocellus B" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000024
name: ocellus D
def: "In the second row on external-medial axis, the first ocellus immediately posterior to ocellus A" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000025
name: ocellus E
def: "In the third row on external-medial axis, the first ocellus posterior to or in lateral side of ocellus D" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000026
name: ocellus F
def: "In the fourth row on external-medial axis, the first ocellus posterior to ocellus D and ocellus E" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000027
name: ocellus G
def: "In the fourth row on external-medial axis, the second ocellus immediately posterior to ocellus H" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000028
name: ocellus H
def: "In the third row on external-medial axis, the second ocellus immediately posterior to ocellus C" []
is_a: CLAO:0001071 ! ocellus
property_value: http://purl.org/dc/elements/1.1/creator "L. González-Montaña, 2018" xsd:string
[Term]
id: CLAO:0000029
name: postantennal organ
def: "A oblong or elliptical sensory organ situated just caudal to the base of the antenna." []
synonym: "antéoculaire" RELATED []
synonym: "organum postantennalis" RELATED []
synonym: "PAO" RELATED []
synonym: "post-antennal organ" RELATED []
synonym: "postantennal_structure" RELATED []
xref: http://collembola.org/
is_a: CLAO:0001140 ! multi-tissue structure
relationship: BFO:0000050 CLAO:0001011 ! part_of head
property_value: http://purl.org/dc/elements/1.1/source "Maynard, 1951" xsd:string
property_value: http://purl.org/dc/elements/1.1/source "Yosii, 1960" xsd:string
[Term]
id: CLAO:0000030
name: prothoracic ganglion
def: "The cluster of neurons located in the prothorax." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-02"}
xref: http://www.collembola.org
is_a: CLAO:0001046 ! ganglion
property_value: http://purl.org/dc/elements/1.1/source "Snodgrass, 1924" xsd:string
[Term]
id: CLAO:0000032
name: pars intercebralis
def: "The cluster of neurons that is part of the protocerebrum" [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-02"}
is_a: CLAO:0001550 ! synapse-rich neuropil
relationship: BFO:0000050 CLAO:0001154 ! part_of protocerebrum
[Term]
id: CLAO:0000033
name: maxillary gland
def: "The organ that is posteroventral to the mandible and dorsoventral to the maxilla." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
xref: http://www.collembola.org
is_a: CLAO:0000995 ! excretory gland
relationship: PATO:0001916 CLAO:0000902 ! posterodorsal_to maxilla
relationship: PATO:0001918 CLAO:0000969 ! posteroventral_to mandible
[Term]
id: CLAO:0000034
name: pyloric sphincter
def: "Organ at the junction of the midgut and hindgut." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2020-10-28"}
synonym: "pyloric ring" RELATED []
synonym: "pyloric valve" EXACT []
synonym: "sphincter type orifice" EXACT []
is_a: CLAO:0001142 ! muscle organ
relationship: RO:0002220 CLAO:0001085 ! adjacent_to adult rectum
[Term]
id: CLAO:0000036
name: cephalic endoskeleton
def: "The anatomical entities (apodeme, tendon, connective tissue)located internaly in the head." []
is_a: CLAO:0001169 ! endoskeleton
[Term]
id: CLAO:0000039
name: cuticular fulcro-tentorium
def: "The connective plate located under the stomodeum" []
synonym: "architentorium" RELATED []
synonym: "pseudotentorium" RELATED []
is_a: CLAO:0000036 ! cephalic endoskeleton
relationship: BFO:0000050 CLAO:0001011 ! part_of head
property_value: http://purl.org/dc/elements/1.1/source "Hopkin, 1997; Bitsch and Bitsch, 2000" xsd:string
[Term]
id: CLAO:0000040
name: arms of folsom
def: "The sclerotized structure that connects the lingua and the antero-lateral portion of pseudotentorium." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-08-17", http://purl.obolibrary.org/obo/AISM_0000171="Bitsch, C., & Bitsch, J. (2002). The endoskeletal structures in arthropods: cytology, morphology and evolution. Arthropod Structure & Development, 30(3), 159-177."}
synonym: "anterior apodemes" RELATED []
synonym: "anterior arm of Folsom" RELATED []
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
relationship: BFO:0000050 CLAO:0000039 ! part_of cuticular fulcro-tentorium
relationship: CLAO:0001220 CLAO:0001184 ! has_part chitin
property_value: http://purl.org/dc/elements/1.1/source "Bitsch & Bitsch, 2002" xsd:string
[Term]
id: CLAO:0000041
name: lateral endosternite 1
def: "The connective tissue that is anterolateral and continuous with the pseudotentorium." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
is_a: CLAO:0000990 ! connective tissue
relationship: CLAO:0001542 CLAO:0001285 ! anterolateral_to pseudotentorium
relationship: RO:0002150 CLAO:0001285 ! continuous_with pseudotentorium
[Term]
id: CLAO:0000042
name: endosternite
def: "Part of internal apodeme." []
comment: Blanke & Machida (2015) stated that the term "endsternite" is not correct and it is interpreted as a tendon
synonym: "endosternum" RELATED []
is_a: CLAO:0000036 ! cephalic endoskeleton
[Term]
id: CLAO:0000043
name: epipharyngeal rod
def: "The sclerotized structure that is attached to the pseudotentorium and adjacent to the mandible." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
synonym: "epipharyngeal arm" EXACT []
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
relationship: BFO:0000050 CLAO:0000039 ! part_of cuticular fulcro-tentorium
relationship: RO:0002220 CLAO:0000969 ! adjacent_to mandible
property_value: http://purl.org/dc/elements/1.1/source "Bitsch & Bitsch, 2002" xsd:string
[Term]
id: CLAO:0000044
name: frontal sclerite
def: "The internal sclerotized plate located behind clypeus." []
comment: the position of sclerite depend if the head is hypognathus or prognathus
synonym: "clypeus" EXACT []
synonym: "Thickening of the clypeus" RELATED []
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
relationship: RO:0002220 CLAO:0001025 ! adjacent_to clypeus
[Term]
id: CLAO:0000045
name: fulcrum
def: "Sclerites located between hypopharynx to medial wall of gnathal pouches." []
synonym: "fulcra" EXACT []
synonym: "fulcral arms" RELATED []
synonym: "fulcre" RELATED []
synonym: "fulturae" EXACT []
synonym: "hypopharyngeal branches" EXACT []
synonym: "hypopharyngeal fulturae" EXACT []
is_a: CLAO:0000985 ! apodeme
relationship: CLAO:0001220 CLAO:0001184 ! has_part chitin
relationship: CLAO:0001291 CLAO:0000902 ! ventral_to maxilla
relationship: CLAO:0001298 CLAO:0001050 ! dorsal_to labium
relationship: RO:0002371 CLAO:0000005 ! attached_to gnathal pouch
relationship: RO:0002371 CLAO:0000054 ! attached_to hypopharynx
property_value: http://purl.org/dc/elements/1.1/source "Bitsch and Bitsch, 2000" xsd:string
[Term]
id: CLAO:0000046
name: head capsule spine-like apodeme
def: "The apodeme that connect the mandible with the pseudotentorium." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-24"}
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
relationship: BFO:0000050 CLAO:0000039 ! part_of cuticular fulcro-tentorium
property_value: http://purl.org/dc/elements/1.1/source "Blanke et al. (2017)" xsd:string
[Term]
id: CLAO:0000047
name: hypopharingeal rod
def: "The sclerotized structure, lateral to the epipharyngeal rod that is attached to the pseudotentorium and adjacent to the mandible." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
synonym: "hypopharyngeal arm" EXACT []
synonym: "hypopharyngeal brachia" RELATED []
is_a: CLAO:0000990 ! connective tissue
relationship: BFO:0000050 CLAO:0000039 ! part_of cuticular fulcro-tentorium
relationship: RO:0002220 CLAO:0000969 ! adjacent_to mandible
property_value: http://purl.org/dc/elements/1.1/source "Bitsch & Bitsch, 2002" xsd:string
[Term]
id: CLAO:0000048
name: posterior tentorial apodeme
def: "Is the apophysis of the tentorium that originates from each posterior tetorial pit." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
comment: View Manton and Harding, 1964
synonym: "posterior tentorial arm" EXACT [] {http://purl.obolibrary.org/obo/AISM_0000171="Goto, H. E. (1972). On the structure and function of the mouthparts of the soil-inhabiting collembolan Folsomia candida. Biological journal of the Linnean Society, 4(2), 147-168."}
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
relationship: BFO:0000050 CLAO:0000039 ! part_of cuticular fulcro-tentorium
[Term]
id: CLAO:0000049
name: spine-like part of the hypopharynx
def: "The apodeme that is posterior and continuous with the hypopharynx." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
relationship: RO:0002150 CLAO:0000054 ! continuous_with hypopharynx
property_value: http://purl.org/dc/elements/1.1/source "Blanke et al. (2017)" xsd:string
[Term]
id: CLAO:0000050
name: tentorial projection
def: "Any projection of pseudotentorium" [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-24"}
comment: This term could be synonym of apodeme.
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
[Term]
id: CLAO:0000051
name: thickening of the lateral parts of the clypeus
def: "The ridge that is internal to the frontal sclerite." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
comment: The frontal sclerite is named by Blanke et al (2015) as clypeus.
is_a: CLAO:0000039 ! cuticular fulcro-tentorium
relationship: BFO:0000050 CLAO:0000039 ! part_of cuticular fulcro-tentorium
property_value: http://purl.org/dc/elements/1.1/source "Blanke et al. (2017)" xsd:string
[Term]
id: CLAO:0000052
name: anterior pseudotentorium
def: "The anterior connective area of cuticular fulcro-tentorimum." []
is_a: CLAO:0001285 ! pseudotentorium
property_value: http://purl.org/dc/elements/1.1/source "Bitsch and Bitsch, 2000" xsd:string
[Term]
id: CLAO:0000053
name: antennary pseudotentorium
def: "The connective tissue that is anteromedial and continuous with the pseudotentorium." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
is_a: CLAO:0001285 ! pseudotentorium
relationship: CLAO:0001545 CLAO:0001285 ! anteromedial_to pseudotentorium
relationship: RO:0002150 CLAO:0001285 ! continuous_with pseudotentorium
[Term]
id: CLAO:0000054
name: hypopharynx
def: "The sclerite located medially in the preoral cavivity, posterior to labium, ventral to gnathal pouch, and attached to the posterior tentorial apodeme." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-08-17"}
synonym: "lingua" RELATED []
synonym: "maxillula" RELATED []
synonym: "Maxillule" RELATED []
xref: http://www.collembola.org
is_a: CLAO:0000985 ! apodeme
relationship: BFO:0000050 CLAO:0000954 ! part_of mouthparts
relationship: CLAO:0001220 CLAO:0001184 ! has_part chitin
relationship: CLAO:0001291 CLAO:0000005 ! ventral_to gnathal pouch
relationship: CLAO:0001292 CLAO:0001050 ! posterior_to labium
relationship: RO:0002371 CLAO:0000048 ! attached_to posterior tentorial apodeme
[Term]
id: CLAO:0000055
name: hypopharyngeal fulturae
def: "The connective tissue that is part of the hyphopharynx." []
is_a: CLAO:0000990 ! connective tissue
relationship: BFO:0000050 CLAO:0000005 ! part_of gnathal pouch
relationship: BFO:0000050 CLAO:0000054 ! part_of hypopharynx
property_value: http://purl.org/dc/elements/1.1/source "Blanke & Machida, 2015" xsd:string
[Term]
id: CLAO:0000056
name: frontal organ
def: "The organ located under the cuticle and lie near the oesophagus." []
synonym: "frontal eye" RELATED []
synonym: "median eye" RELATED []
is_a: CLAO:0001145 ! sense organ
property_value: http://purl.org/dc/elements/1.1/source "Paulus, 1979" xsd:string
[Term]
id: CLAO:0000057
name: external sensillum
def: "The sensillum located in the lateral side of the abdominal segment 5 and abdominal segment 6." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-27"}
is_a: CLAO:0001078 ! sensillum
[Term]
id: CLAO:0000058
name: guard sensillum
def: "The \"rod-like\" modified chaetae that composed the sense organ on the antennal segment 3." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-25"}
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0000721 ! part_of Antennal segment 3 sense organ
[Term]
id: CLAO:0000059
name: lateral sensillum
def: "Any sensillum located on the abdominal tergite 2 and abdominal tergite 3." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-25"}
synonym: "lateral sensory rod" RELATED []
synonym: "solenidion" RELATED []
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0001243 ! part_of abdominal tergite 2
relationship: BFO:0000050 CLAO:0001244 ! part_of abdominal tergite 3
property_value: http://purl.org/dc/elements/1.1/source "Jordana, 1997" xsd:string
[Term]
id: CLAO:0000060
name: NP-sensillum
def: "A conspicuous well-defined sensillum type in insects has been overlooked\nuntil recently: pegs that possess no pores with the exception of a terminal molting pore and that are connected to the surrounding cuticle by a rigid, nondeformable\nsocket" [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05", http://purl.obolibrary.org/obo/AISM_0000171="Altner, H., & Prillinger, L. (1980). Ultrastructure of invertebrate chemo-, thermo-, and hygroreceptors and its functional significance. In International Review of Cytology (Vol. 67, pp. 69-139). Academic Press."}
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0001222 ! part_of region of cuticle
property_value: http://purl.org/dc/elements/1.1/source "Andre, 1988" xsd:string
[Term]
id: CLAO:0000061
name: sensilla chaetica
def: "Hairlike seta that is short and thick walled." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
synonym: "sensillum chaeticum" EXACT []
xref: AISM:0000185
is_a: CLAO:0001078 ! sensillum
property_value: http://purl.org/dc/elements/1.1/source "Schenk, 1903" xsd:string
[Term]
id: CLAO:0000062
name: sensilla trichodea
def: "Hairlike seta that is long." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
xref: AISM:0000186
is_a: CLAO:0001078 ! sensillum
property_value: http://purl.org/dc/elements/1.1/source "Schenk, 1903" xsd:string
[Term]
id: CLAO:0000064
name: subapical microsensillum
def: "Any small sensillum located on the abdominal tergite 2 and abdominal tergite 3." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-25"}
comment: suggest subapical sensillum
synonym: "Recessed solenidion" RELATED []
synonym: "subapical groove" RELATED []
synonym: "subapical grube" RELATED []
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0001243 ! part_of abdominal tergite 2
relationship: BFO:0000050 CLAO:0001244 ! part_of abdominal tergite 3
property_value: http://purl.org/dc/elements/1.1/source "Jordana, 1997" xsd:string
[Term]
id: CLAO:0000065
name: subapical organite
def: "The sensillum located in the subapical region of the antennal segment 4." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
synonym: "lateral sensory rod" RELATED []
synonym: "organite of antenna IV" RELATED []
synonym: "subapical groove" RELATED []
synonym: "triangular baguet" RELATED []
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0000865 ! part_of antennal segment 4
[Term]
id: CLAO:0000066
name: maxillary muscle
def: "The muscle that connects with the maxilla posteriorly." []
is_a: CLAO:0001325 ! cephalic muscle
[Term]
id: CLAO:0000067
name: TP-sensillum
def: "Sensilla with a terminal pore system appear as hairs, pegs, or cuticular elevations." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05", http://purl.obolibrary.org/obo/AISM_0000171="Altner, H., & Prillinger, L. (1980). Ultrastructure of invertebrate chemo-, thermo-, and hygroreceptors and its functional significance. In International Review of Cytology (Vol. 67, pp. 69-139). Academic Press."}
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0001222 ! part_of region of cuticle
property_value: http://purl.org/dc/elements/1.1/source "Andre, 1988; Altner, 1977; Altner et al. 1985." xsd:string
[Term]
id: CLAO:0000068
name: ventral sensillum
def: "The sensillum located in the ventral side of antennal segment 2." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05"}
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0000863 ! part_of antennal segment 2
property_value: http://purl.org/dc/elements/1.1/source "Jordana, 1997" xsd:string
[Term]
id: CLAO:0000069
name: WP-sensillum
def: "Within the group of sensilla with wall pores. the most frequent ones are those in which pores lead into pore tubules by which the stimulus, odorant molecules, is conveyed t o the dendritic membranes." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-05", http://purl.obolibrary.org/obo/AISM_0000171="Altner, H., & Prillinger, L. (1980). Ultrastructure of invertebrate chemo-, thermo-, and hygroreceptors and its functional significance. In International Review of Cytology (Vol. 67, pp. 69-139). Academic Press."}
is_a: CLAO:0001078 ! sensillum
relationship: BFO:0000050 CLAO:0001222 ! part_of region of cuticle
property_value: http://purl.org/dc/elements/1.1/source "Andre, 1988; Altner, 1977; Altner et al. 1985." xsd:string
[Term]
id: CLAO:0000070
name: subapical antennal organ
def: "The modifed chaeta located in the apical side of antennal segment 4." []
synonym: "subapical organ" RELATED []
synonym: "subapical organite" RELATED []
is_a: CLAO:0001145 ! sense organ
[Term]
id: CLAO:0000071
name: trichodea
def: "Any \"hair-like\" chaeta located on the body." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-25"}
is_a: CLAO:0001098 ! chaeta
[Term]
id: CLAO:0000072
name: crystalline cone {http://purl.obolibrary.org/obo/AISM_0000171="Snodgrass, R. E. (1935). Principles of insect morphology. McGraw-Hill. 678p.\n\n\"A transparent subcorneal part of the dioptric apparatus of an eye, formed of cells or of cell products, having an\noval or conical shape.\""}
def: "The cell cluster that is adjacent to the cornea and corneagenous cell, and connected to the photoreceptor." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-10"}
is_a: CLAO:0001045 ! cell cluster organ
relationship: RO:0002170 CLAO:0001465 ! connected_to photoreceptor cell
relationship: RO:0002220 CLAO:0001162 ! adjacent_to cornea
relationship: RO:0002220 CLAO:0001201 ! adjacent_to corneagenous cell
[Term]
id: CLAO:0000073
name: dioptric apparatus {http://purl.obolibrary.org/obo/AISM_0000171="Snodgrass, R. E. (1932). Principles of insect morphology. Cornell University Press.\n\"The outer transparent part of an optic organ, consisting of the cornea and usually of a subcorneal crystalline body.\""}
def: "The anatomical cluster composed by the cornea, crystallie cone, and corneagenous cell." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-10"}
is_a: CLAO:0000958 ! anatomical cluster
relationship: CLAO:0001220 CLAO:0000072 ! has_part crystalline cone
relationship: CLAO:0001220 CLAO:0001162 ! has_part cornea
[Term]
id: CLAO:0000074
name: ommochromic pigment
def: "Ommochromes are metabolites of tryptophan, via kynurenine and 3-hydroxykynurenine." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-10"}
synonym: "ommochrome" RELATED []
synonym: "ommochromic pigmentation" RELATED []
xref: https://en.wikipedia.org/wiki/Ommochrome
is_a: CLAO:0001163 ! pigment
[Term]
id: CLAO:0000075
name: tentoriocardinal muscle
def: "The muscle that connects the basal side of pseudotentorium and cardo." [] {http://purl.obolibrary.org/obo/AISM_0000171="Panina, I. V., Potapov, M. B., & Polilov, A. A. (2019). Effects of miniaturization in the anatomy of the minute springtail Mesaphorura sylvatica (Hexapoda: Collembola: Tullbergiidae). PeerJ, 7, e8037.\nhttp://dx.doi.org/10.7717/peerj.8037", http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-08-24"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000167 ! attached_to cardo
relationship: RO:0002371 CLAO:0001285 ! attached_to pseudotentorium
property_value: http://purl.org/dc/elements/1.1/source "Panina et al. 2019" xsd:string
[Term]
id: CLAO:0000079
name: dorsolongitudinal muscle
def: "The muscle of the embryo that develops in the antecosta-occipital muscle of the adult." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
comment: According to Bretfeld (1963), this muscle is found in the embryo and correspond in the adult to dorsolongitudinal muscle I (I dlm, apparently) and to the I dlm1 sensu Panina et al. (2019)
is_a: CLAO:0001478 ! embryonic structure
property_value: http://purl.org/dc/elements/1.1/source "Bretfeld, 1963" xsd:string
[Term]
id: CLAO:0000080
name: dorsolongitudinal muscle 1
def: "The muscle of the embryo that develops in the lateral antecosta-antecostalis muscle of the adult." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001478 ! embryonic structure
[Term]
id: CLAO:0000081
name: dorsolongitudinal muscle 2
def: "The muscle of the embryo that develops in the medial antecosta-antecostalis muscle of the adult." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001478 ! embryonic structure
[Term]
id: CLAO:0000082
name: dorsal suspensory muscle
def: "The muscle that is attached to the dorsal side of the head capsule head and the transverse mandibular tendon." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-10"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000911 ! attached_to transverse mandibular tendon
relationship: RO:0002371 CLAO:0000979 ! attached_to head capsule
[Term]
id: CLAO:0000083
name: dorsal longitudinal muscle
def: "The cephalic muscle that is attache to the dorsal side of head capsule and pseudotentorium." []
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000979 ! attached_to head capsule
relationship: RO:0002371 CLAO:0001285 ! attached_to pseudotentorium
property_value: http://purl.org/dc/elements/1.1/source "Manton and Harding, 1964" xsd:string
[Term]
id: CLAO:0000084
name: cardinal flexor muscle of the lacina
def: "The cephalic muscle that is attached to the cardo." []
xref: http://www.collembola.org
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000167 ! attached_to cardo
property_value: http://purl.org/dc/elements/1.1/source "Hutasse-Jeannenot, 1974" xsd:string
[Term]
id: CLAO:0000085
name: dorsoventral longitudinal muscle
def: "The muscle of the embryo that develops in the medial profurca-antecostal muscle of the adult." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001478 ! embryonic structure
[Term]
id: CLAO:0000086
name: dorsoventral longitudinal muscle 1
def: "The muscle of the embryo that develops in the medial pronoto-coxal muscle of the adult." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001478 ! embryonic structure
[Term]
id: CLAO:0000087
name: dorsoventral longitudinal muscle 2
def: "The muscle of the embryo that develops in the lateral pronoto-coxal muscle of the adult." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001478 ! embryonic structure
[Term]
id: CLAO:0000088
name: dorsoventral longitudinal muscle 3
def: "The muscle of the embryo that develops in the mesonoto-coxal muscle of the adult." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001478 ! embryonic structure
[Term]
id: CLAO:0000089
name: internalsagital muscle
comment: The term could be obsolete.
is_a: CLAO:0001293 ! muscle tissue
relationship: BFO:0000050 CLAO:0000956 ! part_of thorax
is_obsolete: true
[Term]
id: CLAO:0000090
name: internalsagital muscle 3
comment: The term could be obsolete.
is_a: CLAO:0000089 ! internalsagital muscle
is_obsolete: true
[Term]
id: CLAO:0000091
name: internalsagital muscle 4
comment: The term could be obsolete.
is_a: CLAO:0000089 ! internalsagital muscle
is_obsolete: true
[Term]
id: CLAO:0000092
name: dorsoventral muscle
def: "The muscle that is attached to the dorsoposterior side head capsule and the ventralposterior side of the head capsule" []
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000979 ! attached_to head capsule
[Term]
id: CLAO:0000093
name: oblique endoskeletal muscle
def: "The muscle that connects the posterior tentorial apodeme and pseudotentorium." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-08-24"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000048 ! attached_to posterior tentorial apodeme
relationship: RO:0002371 CLAO:0001285 ! attached_to pseudotentorium
property_value: http://purl.org/dc/elements/1.1/source "Manton and Harding, 1964" xsd:string
[Term]
id: CLAO:0000094
name: pharyngeal dilator muscle
def: "The cephalic muscle attached to the pharynx and the median septum of the head capsule." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000979 ! attached_to head capsule
relationship: RO:0002371 CLAO:0001088 ! attached_to pharynx
[Term]
id: CLAO:0000095
name: pharyngeal muscle
def: "Any muscle attached to the pharynx and the head capsule." []
is_a: CLAO:0001325 ! cephalic muscle
[Term]
id: CLAO:0000096
name: pinnate muscle
def: "A pennate or pinnate muscle (also called a penniform muscle) is a type of skeletal muscle with fascicles that attach obliquely." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
comment: This a muscle recognized by Adams & Salmon (1972), whis is attached to the hypopharynx.
synonym: "pennate muscle" EXACT []
xref: https://en.wikipedia.org/wiki/Pennate_muscle
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000054 ! attached_to hypopharynx
[Term]
id: CLAO:0000097
name: posterior dorso-ventral muscle {http://purl.obolibrary.org/obo/AISM_0000171="Manton, S. M. (1964). Mandibular mechanisms and evolution of arthropods. Philosophical Transactions of the Royal Society of London. \nSeries B, Biological Sciences, 247(737), 1-183.\n\"Posterior dorso-ventral muscles arise dorsally just behind the suspensory\nfibres of the endoskeletal\""}
def: "The cephalic muscle attached to the dorsal side of the head capsule, posterior to the pseudotentorium, and the ventral posteroventral side of the head capsule." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001325 ! cephalic muscle
property_value: http://purl.org/dc/elements/1.1/source "Manton and Harding, 1964" xsd:string
[Term]
id: CLAO:0000098
name: posterior suspensory muscle
def: "The cephalic muscle attached to the posterior tentorial apodeme and the ventral groove." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000012 ! attached_to ventral groove
relationship: RO:0002371 CLAO:0000048 ! attached_to posterior tentorial apodeme
[Term]
id: CLAO:0000099
name: protactor muscle
def: "A muscle drawing a part forward, as antagonistic to a retractor." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
comment: View Manton and Harding, 1964
xref: https://medical-dictionary.thefreedictionary.com
is_a: CLAO:0001293 ! muscle tissue
[Term]
id: CLAO:0000100
name: retractor muscle
def: "A muscle that draws a part backward." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-10"}
comment: A muscle is named in the collophore.
comment: View Manton and Harding, 1964
xref: https://medical-dictionary.thefreedictionary.com
is_a: CLAO:0001536 ! appendage muscle
[Term]
id: CLAO:0000101
name: sphincter muscle
def: "The visceral muscle attached to the pyloric sphincter between the midgut an the rectum." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001295 ! visceral musculature
relationship: RO:0002371 CLAO:0000034 ! attached_to pyloric sphincter
[Term]
id: CLAO:0000102
name: superlingual muscle
def: "Any cephalic muscle attached to the lingua." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000251 ! attached_to lingua
[Term]
id: CLAO:0000103
name: tentorium-ocular muscle
def: "The cephalic muscle attached to the pseudotentorium and the ocellus." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Muscle tentorio-oculaire" EXACT [] {http://purl.obolibrary.org/obo/AISM_0000171="Denis, J. M. R. (1928). Etudes sur l'anatomie de la tête de quelques Collemboles, suivies de considérations sur la morphologie de la tête des Insectes \n(Doctoral dissertation, Édition des Archives de la Zoologie Expérimentale-Librairie H. De Soudier).\n\n\"Il s'insère sur le bras latéral du tentorium antérieur et se porte, longeant le bord médial du\nrein céphalique, à la face interne de la masse oculaire où il s'attache.\""}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0001071 ! attached_to ocellus
relationship: RO:0002371 CLAO:0001285 ! attached_to pseudotentorium
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000104
name: ventral longitudinal muscle
def: "The cephalic muscle attached to the pseudotentorium and the phragma I" [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0001285 ! attached_to pseudotentorium
relationship: RO:0002371 CLAO:0001343 ! attached_to phragma I
property_value: http://purl.org/dc/elements/1.1/source "Manton and Harding, 1964" xsd:string
[Term]
id: CLAO:0000105
name: ventral suspensory muscle
def: "The muscle that is attached to the ventral side of head capsule and the transverse mandibular tendon." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-11"}
is_a: CLAO:0001325 ! cephalic muscle
relationship: RO:0002371 CLAO:0000911 ! attached_to transverse mandibular tendon
relationship: RO:0002371 CLAO:0000979 ! attached_to head capsule
property_value: http://purl.org/dc/elements/1.1/source "Manton and Harding, 1964" xsd:string
[Term]
id: CLAO:0000106
name: ventralongitudinal muscle
comment: This a synonym of ventral longitudinal muscle
is_a: CLAO:0001293 ! muscle tissue
is_obsolete: true
[Term]
id: CLAO:0000107
name: antennal motor nerve
def: "The nerve that innervates the antennal muscle." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-10-28"}
synonym: "Nerf moteur antennaire" EXACT []
is_a: CLAO:0000108 ! antennal nerve
relationship: RO:0002134 CLAO:0000961 ! innervates antennal muscle
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000108
name: antennal nerve
def: "Any nerve that innervates the antenna." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerf antennaire" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001017 ! innervates antenna
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000109
name: corpora cardiacum nerve
def: "The nerve that innervates the corpora cardiacum." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001000 ! innervates corpus cardiacum
[Term]
id: CLAO:0000110
name: hypopharyngeal nerve
def: "The nerve that innervates the hypopharinx." [] {creation_date="2021-09-12", http://purl.org/dc/terms/contributor="lagonzalemo"}
synonym: "Nerfs hypopharyngiens" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0000054 ! innervates hypopharynx
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000111
name: intercalary nerve
def: "The nerve that innervates \"intercalary\" segements." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
comment: Denis (1928) recognized this nerve on the "segmentation" of the nervous system and not in the embryo.
synonym: "nerf intercalaire" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001009 ! innervates intercalary segment
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000112
name: labial nerve
def: "The nerve that innervates the labium." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerfs labiaux" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001050 ! innervates labium
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000113
name: mandibular nerve
def: "The nerve that innervates the mandible." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerfs mandibulaires" RELATED []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0000969 ! innervates mandible
[Term]
id: CLAO:0000114
name: maxillar nerve
def: "The nerve that innervates the maxilla." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerfs maxillaires" RELATED []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0000902 ! innervates maxilla
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000115
name: nerve of hoffmann
def: "A nerve that originates in the suboesphageal ganglion and that innervates the neurohemal organ." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerfs d'Hoffmann" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0000998 ! innervates neurohemal organ
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928; Hopkins, 1997" xsd:string
[Term]
id: CLAO:0000116
name: nerve of leydig
def: "A nerve located in the prothoracic ganglion and that innervates connective tissue." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
comment: View Hopkin, 1997
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001046 ! innervates ganglion
[Term]
id: CLAO:0000117
name: optic nerve
def: "The nerve that innervates the ocellus." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerf optique" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001071 ! innervates ocellus
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000118
name: parallel nerve
def: "The nerve that connects to the brain and the nerve of Hoffmann." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
comment: This nerve was named by Denis (1928) as nervus parallelus and apparently correspond to the corpus cardiacum nerves by Cassagnau & Juberthie (1967).
synonym: "nervus parallelus" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001325 ! innervates cephalic muscle
relationship: RO:0002170 CLAO:0000115 ! connected_to nerve of hoffmann
relationship: RO:0002170 CLAO:0001044 ! connected_to brain
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000119
name: postantennal nerve
def: "The nerve that innervates the postantennal organ." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerf fostantennaire" RELATED []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0000029 ! innervates postantennal organ
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000120
name: posterior nerve of ventral lobe
def: "The nerve that innervates cephalic muscles." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerf postérieur du lobe ventral" EXACT []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0001325 ! innervates cephalic muscle
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000121
name: protocerebral descendent nerve
def: "Te nerve connected to the anterior side of the protocerebrum." []
synonym: "Nerf protocérébral descendant" RELATED []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002170 CLAO:0001154 ! connected_to protocerebrum
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000122
name: protocerebral recurrent nerve
def: "The nerve that innervates the integument of ocellar and frontal region." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerf frotocérèbral ascendant" RELATED []
is_a: CLAO:0001539 ! neural tissue
relationship: CLAO:0001220 CLAO:0001011 ! has_part head
relationship: RO:0002134 CLAO:0001049 ! innervates integument
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000123
name: tendril
def: "The hairlike appearance of the nerves." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-25"}
comment: This term refers to the tiny hairlike appareance of the nerves.
is_a: CLAO:0001539 ! neural tissue
property_value: http://purl.org/dc/elements/1.1/source "Richards, 1968" xsd:string
[Term]
id: CLAO:0000124
name: tentorium-ocular muscle nerve
def: "The nerve that innervates the tentorium-ocular muscle." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "Nerf du muscle tentorio-oculaire" RELATED []
is_a: CLAO:0001539 ! neural tissue
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000125
name: ventral longitudinal muscle nerve
def: "The nerve that innervates the ventral longitudinal muscle." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-12"}
synonym: "nerf des muscles longitudinaux ventraux" RELATED []
is_a: CLAO:0001539 ! neural tissue
relationship: RO:0002134 CLAO:0000104 ! innervates ventral longitudinal muscle
property_value: http://purl.org/dc/elements/1.1/source "Denis, 1928" xsd:string
[Term]
id: CLAO:0000126
name: frontal region
def: "The region demarcated behind the antennal rim and the occiput and where the frontal line is located." [] {http://purl.org/dc/terms/contributor="lagonzalezmo", creation_date="2021-09-25"}
is_a: CLAO:0001121 ! cephalic region
[Term]
id: CLAO:0000127
name: mouth region
def: "The subdivision of the head that includes the mouth." []
is_a: CLAO:0001122 ! body region
[Term]
id: CLAO:0000128
name: posterior region of the midgut
def: "The subdivision of digestive tube from pyloric region to anus." []
is_a: CLAO:0001122 ! body region
[Term]
id: CLAO:0000129
name: pyloric region
def: "A subdivision that delimits the midgut and proctodeum." []
is_a: CLAO:0001122 ! body region
[Term]