Skip to content

Commit

Permalink
synapse queries: update filtered synapse view to `valid_synapses_nt_n…
Browse files Browse the repository at this point in the history
…p_v6`
  • Loading branch information
schlegelp committed Apr 16, 2024
1 parent 8dcf7a9 commit 372d960
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fafbseg/flywire/synapses.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def get_synapses(
elif filtered:
func = partial(
retry(client.materialize.query_view),
view_name="valid_synapses_nt_v2_view",
view_name="valid_synapses_nt_np_v6",
materialization_version=materialization,
split_positions=True,
select_columns=columns,
Expand Down Expand Up @@ -837,7 +837,7 @@ def get_adjacency(
retry(client.materialize.join_query),
tables=[
[client.materialize.synapse_table, "id"],
["valid_synapses_nt_v2", "target_id"],
["valid_synapses_nt_np_v6", "target_id"],
],
materialization_version=materialization,
select_columns={client.materialize.synapse_table: columns},
Expand Down Expand Up @@ -1159,7 +1159,7 @@ def get_connectivity(
retry(client.materialize.join_query),
tables=[
[client.materialize.synapse_table, "id"],
["valid_synapses_nt_v2", "target_id"],
["valid_synapses_nt_np_v6", "target_id"],
],
materialization_version=materialization,
select_columns={client.materialize.synapse_table: columns},
Expand Down

0 comments on commit 372d960

Please sign in to comment.