Skip to content

Commit

Permalink
Merge pull request #301 from Neuroblox/ITN-str-TAN-connection
Browse files Browse the repository at this point in the history
define neuron-str connection
  • Loading branch information
anandpathak31 authored Oct 31, 2023
2 parents e3f636e + 6c391a1 commit ebcce98
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/blox/connections.jl
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,20 @@ function (bc::BloxConnector)(
end
end

function (bc::BloxConnector)(
neuron::HHNeuronExciBlox,
str::Striatum;
kwargs...
)
neurons_in = get_inh_neurons(str)
neuron_out = neuron

for neuron_postsyn in neurons_in
bc(neuron_out, neuron_postsyn; kwargs...)
end

end

function (bc::BloxConnector)(
neuron::HHNeuronExciBlox,
discr::Union{Matrisome, Striosome};
Expand Down

0 comments on commit ebcce98

Please sign in to comment.