Skip to content

Commit

Permalink
- fix test
Browse files Browse the repository at this point in the history
- add visual type
- update meta
  • Loading branch information
arie-matsliah committed Jul 21, 2023
1 parent adc1d7f commit 42fc775
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
18 changes: 9 additions & 9 deletions src/data/downloadable_files_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"morphology_clusters.csv.gz": 736744,
"connectivity_clusters.csv.gz": 522912,
"connections.csv.gz": 26124953,
"labels.csv.gz": 3552997,
"labels.csv.gz": 3562953,
"coordinates.csv.gz": 4584155,
"connectivity_tags.csv.gz": 653687,
"neuropil_synapse_table.csv.gz": 4490002
Expand Down Expand Up @@ -84,17 +84,17 @@
"col 5 - nt_type": "6 unique values"
},
"labels.csv.gz": {
"# rows": "124,952 (+ header)",
"# rows": "125,243 (+ header)",
"# columns": "9",
"col 1 - root_id": "90,855 unique values",
"col 2 - label": "6,623 unique values",
"col 1 - root_id": "91,116 unique values",
"col 2 - label": "6,630 unique values",
"col 3 - user_id": "133 unique values",
"col 4 - position": "103,921 unique values",
"col 5 - supervoxel_id": "103,189 unique values",
"col 4 - position": "104,212 unique values",
"col 5 - supervoxel_id": "103,480 unique values",
"col 6 - label_id": "all rows contain unique values",
"col 7 - date_created": "37,669 unique values",
"col 8 - user_name": "130 unique values in 124,302 rows, empty in 650 rows",
"col 9 - user_affiliation": "52 unique values in 124,239 rows, empty in 713 rows"
"col 7 - date_created": "37,775 unique values",
"col 8 - user_name": "130 unique values in 124,593 rows, empty in 650 rows",
"col 9 - user_affiliation": "52 unique values in 124,530 rows, empty in 713 rows"
},
"coordinates.csv.gz": {
"# rows": "207,700 (+ header)",
Expand Down
4 changes: 4 additions & 0 deletions src/data/visual_neuron_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
"Dm101_6",
"Dm102a_6",
"Dm102b_6",
"Dm104_12",
],
"Proximal Medulla": [
"Pm1",
Expand Down Expand Up @@ -204,6 +205,9 @@
"Mti123_37",
"Mti124_67",
],
"Serpentine Distal Medulla": [
"SDm100_67",
],
"Transmedullary": [
"Tm1",
"Tm1a",
Expand Down
3 changes: 1 addition & 2 deletions tests/unit/test_motif_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ def test_add_node(self):
with self.assertRaises(ValueError) as context:
msq.add_node("b", "1 == 2 == 3")
self.assertTrue(
"Invalid query '1 == 2 == 3': Malformed structured search query."
in str(context.exception),
"Invalid query '1 == 2 == 3'" in str(context.exception),
str(context.exception),
)

Expand Down

0 comments on commit 42fc775

Please sign in to comment.