@abi-software/map-side-bar 2.3.0 → 2.4.0-alpha-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/.eslintrc.js +12 -12
  2. package/.postcssrc.json +5 -5
  3. package/LICENSE +201 -201
  4. package/README.md +168 -168
  5. package/cypress.config.js +23 -23
  6. package/dist/data/pmr-sample.json +3181 -0
  7. package/dist/map-side-bar.js +15142 -9024
  8. package/dist/map-side-bar.umd.cjs +50 -103
  9. package/dist/style.css +1 -1
  10. package/package.json +77 -77
  11. package/public/data/pmr-sample.json +3181 -0
  12. package/reporter-config.json +9 -9
  13. package/src/App.vue +266 -265
  14. package/src/algolia/algolia.js +255 -242
  15. package/src/algolia/utils.js +100 -100
  16. package/src/assets/_variables.scss +43 -43
  17. package/src/assets/styles.scss +6 -6
  18. package/src/components/BadgesGroup.vue +124 -124
  19. package/src/components/ConnectivityInfo.vue +619 -619
  20. package/src/components/DatasetCard.vue +367 -357
  21. package/src/components/EventBus.js +3 -3
  22. package/src/components/ExternalResourceCard.vue +113 -113
  23. package/src/components/FlatmapDatasetCard.vue +171 -0
  24. package/src/components/ImageGallery.vue +542 -542
  25. package/src/components/PMRDatasetCard.vue +237 -0
  26. package/src/components/SearchFilters.vue +1023 -1006
  27. package/src/components/SearchHistory.vue +175 -175
  28. package/src/components/SideBar.vue +436 -436
  29. package/src/components/SidebarContent.vue +730 -603
  30. package/src/components/Tabs.vue +145 -145
  31. package/src/components/allPaths.js +5928 -0
  32. package/src/components/index.js +8 -8
  33. package/src/components/pmrTest.js +4 -0
  34. package/src/components/species-map.js +8 -8
  35. package/src/components.d.ts +2 -0
  36. package/src/exampleConnectivityInput.js +291 -291
  37. package/src/flatmapQueries/flatmapQueries.js +169 -0
  38. package/src/main.js +9 -9
  39. package/src/mixins/S3Bucket.vue +37 -37
  40. package/src/mixins/mixedPageCalculation.vue +78 -0
  41. package/static.json +6 -6
  42. package/vite.config.js +55 -55
  43. package/vuese-generator.js +65 -65
@@ -1,8 +1,8 @@
1
- import SideBar from "./SideBar.vue"
2
-
3
- export {
4
- SideBar
5
- };
6
-
7
-
8
-
1
+ import SideBar from "./SideBar.vue"
2
+
3
+ export {
4
+ SideBar
5
+ };
6
+
7
+
8
+
@@ -0,0 +1,4 @@
1
+ export default {
2
+ "type": "PMR",
3
+ "data": [] // moved to "public/data/"
4
+ }
@@ -1,8 +1,8 @@
1
- export default {
2
- 'homo sapiens': 'Human',
3
- 'rattus norvegicus': 'Rat',
4
- 'mus musculus': 'Mouse',
5
- 'sus scrofa domesticus': 'Pig',
6
- 'sus scrofa': 'Boar',
7
- 'felis catus': 'Cat'
8
- }
1
+ export default {
2
+ 'homo sapiens': 'Human',
3
+ 'rattus norvegicus': 'Rat',
4
+ 'mus musculus': 'Mouse',
5
+ 'sus scrofa domesticus': 'Pig',
6
+ 'sus scrofa': 'Boar',
7
+ 'felis catus': 'Cat'
8
+ }
@@ -26,7 +26,9 @@ declare module 'vue' {
26
26
  ElSelect: typeof import('element-plus/es')['ElSelect']
27
27
  ElTag: typeof import('element-plus/es')['ElTag']
28
28
  ExternalResourceCard: typeof import('./components/ExternalResourceCard.vue')['default']
29
+ FlatmapDatasetCard: typeof import('./components/FlatmapDatasetCard.vue')['default']
29
30
  ImageGallery: typeof import('./components/ImageGallery.vue')['default']
31
+ PMRDatasetCard: typeof import('./components/PMRDatasetCard.vue')['default']
30
32
  SearchFilters: typeof import('./components/SearchFilters.vue')['default']
31
33
  SearchHistory: typeof import('./components/SearchHistory.vue')['default']
32
34
  SideBar: typeof import('./components/SideBar.vue')['default']
@@ -1,292 +1,292 @@
1
- export default {
2
- "destinations": [
3
- "Fifth thoracic ganglion",
4
- "ventricular intrinsic cardiac ganglion",
5
- "Sixth thoracic ganglion",
6
- "superior cervical ganglion",
7
- "T1 sympathetic ganglion",
8
- "Second thoracic ganglion",
9
- "Third thoracic ganglion",
10
- "mediastinal ganglion",
11
- "Fourth thoracic ganglion",
12
- "inferior cervical ganglion",
13
- "middle cervical ganglion",
14
- "Atrial intrinsic cardiac ganglion"
15
- ],
16
- "origins": [
17
- "lamina VII of gray matter of spinal cord, first thoracic spinal cord segment",
18
- "lamina VII of gray matter of spinal cord, fourth thoracic spinal cord segment",
19
- "lamina VII of gray matter of spinal cord, sixth thoracic spinal cord segment",
20
- "lamina VII of gray matter of spinal cord, C8 segment of cervical spinal cord",
21
- "lamina VII of gray matter of spinal cord, third thoracic spinal cord segment",
22
- "lamina VII of gray matter of spinal cord, second thoracic spinal cord segment",
23
- "lamina VII of gray matter of spinal cord, fifth thoracic spinal cord segment"
24
- ],
25
- "components": [
26
- "third thoracic spinal cord segment",
27
- "ansa subclavia",
28
- "T3 - T4 Interganglionic segment",
29
- "vago-sympathetic trunk",
30
- "T1 - T2 Interganglionic segment",
31
- "epicardial fat, heart",
32
- "White communicating ramus of sixth thoracic anterior ramus",
33
- "C8 segment of cervical spinal cord",
34
- "ventral nerve root of cervical spinal cord",
35
- "T2 - T3 Interganglionic segment",
36
- "Anterior root of third thoracic nerve",
37
- "White communicating ramus of third thoracic anterior ramus",
38
- "White communicating ramus of fourth thoracic anterior ramus",
39
- "Anterior root of sixth thoracic nerve",
40
- "Anterior root of fourth thoracic nerve",
41
- "fourth thoracic spinal cord segment",
42
- "Interganglionic branch of inferior cervical ganglion to vertebral ganglion",
43
- "T4 - T5 Interganglionic segment",
44
- "T5 - T6 Interganglionic segment",
45
- "second thoracic spinal cord segment",
46
- "Anterior root of second thoracic nerve",
47
- "fifth thoracic spinal cord segment",
48
- "Anterior root of fifth sacral nerve",
49
- "Interganglionic branch of inferior cervical ganglion to middle cervical ganglion",
50
- "sixth thoracic spinal cord segment",
51
- "Interganglionic branch of inferior cervical ganglion to first thoracic ganglion",
52
- "Anterior root of first thoracic nerve",
53
- "Anterior root of fifth thoracic nerve",
54
- "White communicating ramus of second thoracic anterior ramus",
55
- "White communicating ramus of fifth thoracic anterior ramus",
56
- "first thoracic spinal cord segment"
57
- ],
58
- "destinationsWithDatasets": [
59
- {
60
- "id": "ILX:0774266",
61
- "name": "T1 sympathetic ganglion"
62
- },
63
- {
64
- "id": "ILX:0786141",
65
- "name": "Fifth thoracic ganglion"
66
- },
67
- {
68
- "id": "ILX:0786228",
69
- "name": "Second thoracic ganglion"
70
- },
71
- {
72
- "id": "ILX:0786272",
73
- "name": "Fourth thoracic ganglion"
74
- },
75
- {
76
- "id": "ILX:0786722",
77
- "name": "Third thoracic ganglion"
78
- },
79
- {
80
- "id": "ILX:0789947",
81
- "name": "Sixth thoracic ganglion"
82
- },
83
- {
84
- "id": "ILX:0793550",
85
- "name": "mediastinal ganglion"
86
- },
87
- {
88
- "id": "ILX:0793555",
89
- "name": "Atrial intrinsic cardiac ganglion"
90
- },
91
- {
92
- "id": "ILX:0793556",
93
- "name": "ventricular intrinsic cardiac ganglion"
94
- },
95
- {
96
- "id": "UBERON:0001989",
97
- "name": "superior cervical ganglion"
98
- },
99
- {
100
- "id": "UBERON:0001990",
101
- "name": "middle cervical ganglion"
102
- },
103
- {
104
- "id": "UBERON:0002440",
105
- "name": "inferior cervical ganglion"
106
- }
107
- ],
108
- "originsWithDatasets": [
109
- {
110
- "id": "UBERON:0006452",
111
- "name": "fourth thoracic spinal cord segment"
112
- },
113
- {
114
- "id": "UBERON:0006453",
115
- "name": "fifth thoracic spinal cord segment"
116
- },
117
- {
118
- "id": "UBERON:0006454",
119
- "name": "sixth thoracic spinal cord segment"
120
- },
121
- {
122
- "id": "UBERON:0006457",
123
- "name": "first thoracic spinal cord segment"
124
- },
125
- {
126
- "id": "UBERON:0006458",
127
- "name": "second thoracic spinal cord segment"
128
- },
129
- {
130
- "id": "UBERON:0006459",
131
- "name": "third thoracic spinal cord segment"
132
- },
133
- {
134
- "id": "UBERON:0006470",
135
- "name": "C8 segment of cervical spinal cord"
136
- },
137
- {
138
- "id": "UBERON:0016578",
139
- "name": "lamina VII of gray matter of spinal cord"
140
- }
141
- ],
142
- "componentsWithDatasets": [
143
- {
144
- "id": "ILX:0739241",
145
- "name": "ansa subclavia"
146
- },
147
- {
148
- "id": "ILX:0777094",
149
- "name": "T1 - T2 Interganglionic segment"
150
- },
151
- {
152
- "id": "ILX:0777095",
153
- "name": "T2 - T3 Interganglionic segment"
154
- },
155
- {
156
- "id": "ILX:0777096",
157
- "name": "T3 - T4 Interganglionic segment"
158
- },
159
- {
160
- "id": "ILX:0777097",
161
- "name": "T4 - T5 Interganglionic segment"
162
- },
163
- {
164
- "id": "ILX:0777098",
165
- "name": "T5 - T6 Interganglionic segment"
166
- },
167
- {
168
- "id": "ILX:0784804",
169
- "name": "Anterior root of third thoracic nerve"
170
- },
171
- {
172
- "id": "ILX:0785971",
173
- "name": "Anterior root of fifth sacral nerve"
174
- },
175
- {
176
- "id": "ILX:0787722",
177
- "name": "Anterior root of first thoracic nerve"
178
- },
179
- {
180
- "id": "ILX:0789894",
181
- "name": "Anterior root of second thoracic nerve"
182
- },
183
- {
184
- "id": "ILX:0790146",
185
- "name": "Anterior root of fifth thoracic nerve"
186
- },
187
- {
188
- "id": "ILX:0791062",
189
- "name": "Anterior root of sixth thoracic nerve"
190
- },
191
- {
192
- "id": "ILX:0792838",
193
- "name": "Anterior root of fourth thoracic nerve"
194
- },
195
- {
196
- "id": "ILX:0793208",
197
- "name": "White communicating ramus of second thoracic anterior ramus"
198
- },
199
- {
200
- "id": "ILX:0793209",
201
- "name": "White communicating ramus of third thoracic anterior ramus"
202
- },
203
- {
204
- "id": "ILX:0793210",
205
- "name": "White communicating ramus of fourth thoracic anterior ramus"
206
- },
207
- {
208
- "id": "ILX:0793211",
209
- "name": "White communicating ramus of fifth thoracic anterior ramus"
210
- },
211
- {
212
- "id": "ILX:0793212",
213
- "name": "White communicating ramus of sixth thoracic anterior ramus"
214
- },
215
- {
216
- "id": "ILX:0793233",
217
- "name": "Interganglionic branch of inferior cervical ganglion to first thoracic ganglion"
218
- },
219
- {
220
- "id": "ILX:0793234",
221
- "name": "Interganglionic branch of inferior cervical ganglion to middle cervical ganglion"
222
- },
223
- {
224
- "id": "ILX:0793363",
225
- "name": "Interganglionic branch of inferior cervical ganglion to vertebral ganglion"
226
- },
227
- {
228
- "id": "UBERON:0000948",
229
- "name": "heart"
230
- },
231
- {
232
- "id": "UBERON:0006452",
233
- "name": "fourth thoracic spinal cord segment"
234
- },
235
- {
236
- "id": "UBERON:0006453",
237
- "name": "fifth thoracic spinal cord segment"
238
- },
239
- {
240
- "id": "UBERON:0006454",
241
- "name": "sixth thoracic spinal cord segment"
242
- },
243
- {
244
- "id": "UBERON:0006457",
245
- "name": "first thoracic spinal cord segment"
246
- },
247
- {
248
- "id": "UBERON:0006458",
249
- "name": "second thoracic spinal cord segment"
250
- },
251
- {
252
- "id": "UBERON:0006459",
253
- "name": "third thoracic spinal cord segment"
254
- },
255
- {
256
- "id": "UBERON:0006470",
257
- "name": "C8 segment of cervical spinal cord"
258
- },
259
- {
260
- "id": "UBERON:0014634",
261
- "name": "ventral nerve root of cervical spinal cord"
262
- },
263
- {
264
- "id": "UBERON:0015129",
265
- "name": "epicardial fat"
266
- },
267
- {
268
- "id": "ilxtr:vago-sympathetic-trunk",
269
- "name": "vago-sympathetic trunk"
270
- }
271
- ],
272
- "title": "neuron type aacar 5",
273
- "featureId": [
274
- "ilxtr:neuron-type-aacar-5"
275
- ],
276
- "hyperlinks": [
277
- {
278
- "url": "https://pubmed.ncbi.nlm.nih.gov/?term=%2F%2Fwww.ncbi.nlm.nih.gov%2Fpubmed%2F27783854",
279
- "id": "pubmed"
280
- }
281
- ],
282
- "provenanceTaxonomy": [
283
- "NCBITaxon:9606",
284
- "NCBITaxon:9615",
285
- "NCBITaxon:9825"
286
- ],
287
- "provenanceTaxonomyLabel": [
288
- "Homo sapiens",
289
- "Canis lupus familiaris",
290
- "Domestic Pig"
291
- ]
1
+ export default {
2
+ "destinations": [
3
+ "Fifth thoracic ganglion",
4
+ "ventricular intrinsic cardiac ganglion",
5
+ "Sixth thoracic ganglion",
6
+ "superior cervical ganglion",
7
+ "T1 sympathetic ganglion",
8
+ "Second thoracic ganglion",
9
+ "Third thoracic ganglion",
10
+ "mediastinal ganglion",
11
+ "Fourth thoracic ganglion",
12
+ "inferior cervical ganglion",
13
+ "middle cervical ganglion",
14
+ "Atrial intrinsic cardiac ganglion"
15
+ ],
16
+ "origins": [
17
+ "lamina VII of gray matter of spinal cord, first thoracic spinal cord segment",
18
+ "lamina VII of gray matter of spinal cord, fourth thoracic spinal cord segment",
19
+ "lamina VII of gray matter of spinal cord, sixth thoracic spinal cord segment",
20
+ "lamina VII of gray matter of spinal cord, C8 segment of cervical spinal cord",
21
+ "lamina VII of gray matter of spinal cord, third thoracic spinal cord segment",
22
+ "lamina VII of gray matter of spinal cord, second thoracic spinal cord segment",
23
+ "lamina VII of gray matter of spinal cord, fifth thoracic spinal cord segment"
24
+ ],
25
+ "components": [
26
+ "third thoracic spinal cord segment",
27
+ "ansa subclavia",
28
+ "T3 - T4 Interganglionic segment",
29
+ "vago-sympathetic trunk",
30
+ "T1 - T2 Interganglionic segment",
31
+ "epicardial fat, heart",
32
+ "White communicating ramus of sixth thoracic anterior ramus",
33
+ "C8 segment of cervical spinal cord",
34
+ "ventral nerve root of cervical spinal cord",
35
+ "T2 - T3 Interganglionic segment",
36
+ "Anterior root of third thoracic nerve",
37
+ "White communicating ramus of third thoracic anterior ramus",
38
+ "White communicating ramus of fourth thoracic anterior ramus",
39
+ "Anterior root of sixth thoracic nerve",
40
+ "Anterior root of fourth thoracic nerve",
41
+ "fourth thoracic spinal cord segment",
42
+ "Interganglionic branch of inferior cervical ganglion to vertebral ganglion",
43
+ "T4 - T5 Interganglionic segment",
44
+ "T5 - T6 Interganglionic segment",
45
+ "second thoracic spinal cord segment",
46
+ "Anterior root of second thoracic nerve",
47
+ "fifth thoracic spinal cord segment",
48
+ "Anterior root of fifth sacral nerve",
49
+ "Interganglionic branch of inferior cervical ganglion to middle cervical ganglion",
50
+ "sixth thoracic spinal cord segment",
51
+ "Interganglionic branch of inferior cervical ganglion to first thoracic ganglion",
52
+ "Anterior root of first thoracic nerve",
53
+ "Anterior root of fifth thoracic nerve",
54
+ "White communicating ramus of second thoracic anterior ramus",
55
+ "White communicating ramus of fifth thoracic anterior ramus",
56
+ "first thoracic spinal cord segment"
57
+ ],
58
+ "destinationsWithDatasets": [
59
+ {
60
+ "id": "ILX:0774266",
61
+ "name": "T1 sympathetic ganglion"
62
+ },
63
+ {
64
+ "id": "ILX:0786141",
65
+ "name": "Fifth thoracic ganglion"
66
+ },
67
+ {
68
+ "id": "ILX:0786228",
69
+ "name": "Second thoracic ganglion"
70
+ },
71
+ {
72
+ "id": "ILX:0786272",
73
+ "name": "Fourth thoracic ganglion"
74
+ },
75
+ {
76
+ "id": "ILX:0786722",
77
+ "name": "Third thoracic ganglion"
78
+ },
79
+ {
80
+ "id": "ILX:0789947",
81
+ "name": "Sixth thoracic ganglion"
82
+ },
83
+ {
84
+ "id": "ILX:0793550",
85
+ "name": "mediastinal ganglion"
86
+ },
87
+ {
88
+ "id": "ILX:0793555",
89
+ "name": "Atrial intrinsic cardiac ganglion"
90
+ },
91
+ {
92
+ "id": "ILX:0793556",
93
+ "name": "ventricular intrinsic cardiac ganglion"
94
+ },
95
+ {
96
+ "id": "UBERON:0001989",
97
+ "name": "superior cervical ganglion"
98
+ },
99
+ {
100
+ "id": "UBERON:0001990",
101
+ "name": "middle cervical ganglion"
102
+ },
103
+ {
104
+ "id": "UBERON:0002440",
105
+ "name": "inferior cervical ganglion"
106
+ }
107
+ ],
108
+ "originsWithDatasets": [
109
+ {
110
+ "id": "UBERON:0006452",
111
+ "name": "fourth thoracic spinal cord segment"
112
+ },
113
+ {
114
+ "id": "UBERON:0006453",
115
+ "name": "fifth thoracic spinal cord segment"
116
+ },
117
+ {
118
+ "id": "UBERON:0006454",
119
+ "name": "sixth thoracic spinal cord segment"
120
+ },
121
+ {
122
+ "id": "UBERON:0006457",
123
+ "name": "first thoracic spinal cord segment"
124
+ },
125
+ {
126
+ "id": "UBERON:0006458",
127
+ "name": "second thoracic spinal cord segment"
128
+ },
129
+ {
130
+ "id": "UBERON:0006459",
131
+ "name": "third thoracic spinal cord segment"
132
+ },
133
+ {
134
+ "id": "UBERON:0006470",
135
+ "name": "C8 segment of cervical spinal cord"
136
+ },
137
+ {
138
+ "id": "UBERON:0016578",
139
+ "name": "lamina VII of gray matter of spinal cord"
140
+ }
141
+ ],
142
+ "componentsWithDatasets": [
143
+ {
144
+ "id": "ILX:0739241",
145
+ "name": "ansa subclavia"
146
+ },
147
+ {
148
+ "id": "ILX:0777094",
149
+ "name": "T1 - T2 Interganglionic segment"
150
+ },
151
+ {
152
+ "id": "ILX:0777095",
153
+ "name": "T2 - T3 Interganglionic segment"
154
+ },
155
+ {
156
+ "id": "ILX:0777096",
157
+ "name": "T3 - T4 Interganglionic segment"
158
+ },
159
+ {
160
+ "id": "ILX:0777097",
161
+ "name": "T4 - T5 Interganglionic segment"
162
+ },
163
+ {
164
+ "id": "ILX:0777098",
165
+ "name": "T5 - T6 Interganglionic segment"
166
+ },
167
+ {
168
+ "id": "ILX:0784804",
169
+ "name": "Anterior root of third thoracic nerve"
170
+ },
171
+ {
172
+ "id": "ILX:0785971",
173
+ "name": "Anterior root of fifth sacral nerve"
174
+ },
175
+ {
176
+ "id": "ILX:0787722",
177
+ "name": "Anterior root of first thoracic nerve"
178
+ },
179
+ {
180
+ "id": "ILX:0789894",
181
+ "name": "Anterior root of second thoracic nerve"
182
+ },
183
+ {
184
+ "id": "ILX:0790146",
185
+ "name": "Anterior root of fifth thoracic nerve"
186
+ },
187
+ {
188
+ "id": "ILX:0791062",
189
+ "name": "Anterior root of sixth thoracic nerve"
190
+ },
191
+ {
192
+ "id": "ILX:0792838",
193
+ "name": "Anterior root of fourth thoracic nerve"
194
+ },
195
+ {
196
+ "id": "ILX:0793208",
197
+ "name": "White communicating ramus of second thoracic anterior ramus"
198
+ },
199
+ {
200
+ "id": "ILX:0793209",
201
+ "name": "White communicating ramus of third thoracic anterior ramus"
202
+ },
203
+ {
204
+ "id": "ILX:0793210",
205
+ "name": "White communicating ramus of fourth thoracic anterior ramus"
206
+ },
207
+ {
208
+ "id": "ILX:0793211",
209
+ "name": "White communicating ramus of fifth thoracic anterior ramus"
210
+ },
211
+ {
212
+ "id": "ILX:0793212",
213
+ "name": "White communicating ramus of sixth thoracic anterior ramus"
214
+ },
215
+ {
216
+ "id": "ILX:0793233",
217
+ "name": "Interganglionic branch of inferior cervical ganglion to first thoracic ganglion"
218
+ },
219
+ {
220
+ "id": "ILX:0793234",
221
+ "name": "Interganglionic branch of inferior cervical ganglion to middle cervical ganglion"
222
+ },
223
+ {
224
+ "id": "ILX:0793363",
225
+ "name": "Interganglionic branch of inferior cervical ganglion to vertebral ganglion"
226
+ },
227
+ {
228
+ "id": "UBERON:0000948",
229
+ "name": "heart"
230
+ },
231
+ {
232
+ "id": "UBERON:0006452",
233
+ "name": "fourth thoracic spinal cord segment"
234
+ },
235
+ {
236
+ "id": "UBERON:0006453",
237
+ "name": "fifth thoracic spinal cord segment"
238
+ },
239
+ {
240
+ "id": "UBERON:0006454",
241
+ "name": "sixth thoracic spinal cord segment"
242
+ },
243
+ {
244
+ "id": "UBERON:0006457",
245
+ "name": "first thoracic spinal cord segment"
246
+ },
247
+ {
248
+ "id": "UBERON:0006458",
249
+ "name": "second thoracic spinal cord segment"
250
+ },
251
+ {
252
+ "id": "UBERON:0006459",
253
+ "name": "third thoracic spinal cord segment"
254
+ },
255
+ {
256
+ "id": "UBERON:0006470",
257
+ "name": "C8 segment of cervical spinal cord"
258
+ },
259
+ {
260
+ "id": "UBERON:0014634",
261
+ "name": "ventral nerve root of cervical spinal cord"
262
+ },
263
+ {
264
+ "id": "UBERON:0015129",
265
+ "name": "epicardial fat"
266
+ },
267
+ {
268
+ "id": "ilxtr:vago-sympathetic-trunk",
269
+ "name": "vago-sympathetic trunk"
270
+ }
271
+ ],
272
+ "title": "neuron type aacar 5",
273
+ "featureId": [
274
+ "ilxtr:neuron-type-aacar-5"
275
+ ],
276
+ "hyperlinks": [
277
+ {
278
+ "url": "https://pubmed.ncbi.nlm.nih.gov/?term=%2F%2Fwww.ncbi.nlm.nih.gov%2Fpubmed%2F27783854",
279
+ "id": "pubmed"
280
+ }
281
+ ],
282
+ "provenanceTaxonomy": [
283
+ "NCBITaxon:9606",
284
+ "NCBITaxon:9615",
285
+ "NCBITaxon:9825"
286
+ ],
287
+ "provenanceTaxonomyLabel": [
288
+ "Homo sapiens",
289
+ "Canis lupus familiaris",
290
+ "Domestic Pig"
291
+ ]
292
292
  }