Skip to content

Commit e4621e2

Browse files
committed
Update and fix typos in competency queries' labels (#15)
1 parent fc7facc commit e4621e2

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

mapserver/competency/data/queries.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ queries:
6060
type: string
6161

6262
- id: 3
63-
label: Neuron populations with an evidence
63+
label: Neuron populations supported by evidence
6464
sql: >
6565
SELECT DISTINCT term_id AS path_id, source_id
6666
FROM feature_evidence
@@ -89,7 +89,7 @@ queries:
8989
type: string
9090

9191
- id: 4
92-
label: Evidences for a neuron population and a species
92+
label: Evidence for a neuron population and a species
9393
sql: >
9494
SELECT DISTINCT fe.evidence_id, fe.source_id
9595
FROM feature_evidence fe
@@ -123,7 +123,7 @@ queries:
123123
type: string
124124

125125
- id: 5
126-
label: Neuron populations connecting two locations
126+
label: Neuron populations connecting two anatomical locations
127127
sql: >
128128
WITH
129129
RECURSIVE
@@ -220,7 +220,7 @@ queries:
220220
type: string
221221

222222
- id: 6
223-
label: Parasympathetic neuron populations connecting two locations
223+
label: Parasympathetic neuron populations that connect two locations
224224
sql: >
225225
WITH
226226
RECURSIVE
@@ -325,7 +325,7 @@ queries:
325325
type: string
326326

327327
- id: 7
328-
label: Sympathetic neuron populations connecting two locations
328+
label: Sympathetic neuron populations that connect two locations
329329
sql: >
330330
WITH
331331
RECURSIVE
@@ -463,7 +463,7 @@ queries:
463463
type: string
464464

465465
- id: 9
466-
label: Nerves terminating at a location
466+
label: Nerves that terminate at a location
467467
sql: >
468468
SELECT DISTINCT fnerve.source_id, fnerve.feature_id AS nerve_id, ft.label
469469
FROM path_edges pe
@@ -570,7 +570,7 @@ queries:
570570
type: string
571571

572572
- id: 11
573-
label: Nerves related to a specific neuron population
573+
label: Nerves associated to a specific neuron population
574574
sql: >
575575
SELECT ft.source_id, ft.term_id as nerve_id, f.label
576576
FROM feature_types ft
@@ -604,7 +604,7 @@ queries:
604604
type: string
605605

606606
- id: 12
607-
label: All nerves available and relate them to neuron population
607+
label: All available nerves and their corresponding neuron populations
608608
sql: >
609609
SELECT ft.source_id, ft.term_id as nerve_id, f.label, pnf.path_id
610610
FROM feature_types ft
@@ -637,7 +637,7 @@ queries:
637637
type: string
638638

639639
- id: 13
640-
label: Nodes as the target of a nerve including those in the forward connection
640+
label: Nodes targeted by a nerve, including those in the forward connections
641641
sql: >
642642
WITH RECURSIVE
643643
path_routes AS (
@@ -719,7 +719,7 @@ queries:
719719
type: string
720720

721721
- id: 14
722-
label: Nodes as the origin of a nerve including those in the forward connection
722+
label: Nodes serving as the origin of a nerve, including those in the forward connections
723723
sql: >
724724
WITH RECURSIVE
725725
path_routes AS (
@@ -804,7 +804,7 @@ queries:
804804
type: string
805805

806806
- id: 15
807-
label: Nodes as the origin and destination of a nerve (regarding paths only)
807+
label: Nodes serving as the origin or destination of a nerve (considering paths only)
808808
sql: >
809809
SELECT DISTINCT
810810
pnt.source_id,
@@ -852,7 +852,7 @@ queries:
852852
type: string
853853

854854
- id: 16
855-
label: Different neuron populations between species
855+
label: Differences in neuron populations between species
856856
sql: >
857857
SELECT source_id, taxon_id, path_id
858858
FROM path_taxons
@@ -891,7 +891,7 @@ queries:
891891
type: string
892892

893893
- id: 17
894-
label: Different neuron populations and evidences between species
894+
label: Different neuron populations and their evidences between species
895895
sql: >
896896
SELECT pt.source_id, pt.taxon_id, pt.path_id, fe.evidence_id
897897
FROM path_taxons pt
@@ -945,7 +945,7 @@ queries:
945945
type: string
946946

947947
- id: 18
948-
label: Parasympathetic forward connection, soma source, axon-terminal target, and route related to a location
948+
label: Parasympathetic forward connections with soma as source, axon-terminal as target, and routes related to a location
949949
sql: >
950950
WITH RECURSIVE
951951
para_pre AS (
@@ -1057,7 +1057,7 @@ queries:
10571057
type: list
10581058

10591059
- id: 19
1060-
label: Sympathetic forward connection, soma source, axon-terminal target, and route related to a location
1060+
label: Sympathetic forward connections with soma as source, axon-terminal as target, and routes related to a location
10611061
sql: >
10621062
WITH RECURSIVE
10631063
sym_pre AS (
@@ -1170,7 +1170,7 @@ queries:
11701170
type: list
11711171

11721172
- id: 20
1173-
label: Anatomical structure might be affected by perturbation at a location
1173+
label: Anatomical structures that might be affected by perturbation at a location
11741174
sql: >
11751175
WITH selected_paths AS (
11761176
SELECT DISTINCT path_id, source_id, node_id
@@ -1220,7 +1220,7 @@ queries:
12201220
type: string
12211221

12221222
- id: 21
1223-
label: Downstream or upstream anatomical structure as axon_terminal might be affected by perturbation at a location
1223+
label: Anatomical structures as axon terminals that might be affected by perturbation at a location
12241224
sql: >
12251225
WITH RECURSIVE
12261226
connected_paths AS (
@@ -1281,7 +1281,7 @@ queries:
12811281
type: string
12821282

12831283
- id: 22
1284-
label: Neuron populations that share at list a nerve with another neuron population
1284+
label: Neuron populations that share at least one nerve with another neuron population
12851285
sql: >
12861286
SELECT DISTINCT pnt_1.source_id, pnt_1.path_id
12871287
FROM path_node_types pnt_0
@@ -1312,7 +1312,7 @@ queries:
13121312
type: string
13131313

13141314
- id: 23
1315-
label: Neuron populations that share at list an edge with another neuron population
1315+
label: Neuron populations that share at least one edge with another neuron population
13161316
sql: >
13171317
SELECT DISTINCT pe_1.source_id, pe_1.path_id
13181318
FROM path_edges pe_0

0 commit comments

Comments
 (0)