Skip to content

Commit

Permalink
added plotdetail to subcortical regions
Browse files Browse the repository at this point in the history
  • Loading branch information
helmutstrey committed Dec 21, 2023
1 parent 65e0fb9 commit 69be9dc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/gui/GUI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,10 @@ function arguments(::Type{Neuroblox.Thalamus})
)
end

function plotdetail(::Type{Neuroblox.Thalamus})
OrderedDict(:mean => "V", :detail => ["V"])
end

function arguments(::Type{Neuroblox.Striatum})
OrderedDict(
:N_inhib => NCAD(25, INTEGER, 1, 100,[],true),
Expand All @@ -404,6 +408,10 @@ function arguments(::Type{Neuroblox.Striatum})
)
end

function plotdetail(::Type{Neuroblox.Striatum})
OrderedDict(:mean => "V", :detail => ["V"])
end

function arguments(::Type{Neuroblox.GPe})
OrderedDict(
:N_inhib => NCAD(15, INTEGER, 1, 100,[],true),
Expand All @@ -413,6 +421,10 @@ function arguments(::Type{Neuroblox.GPe})
)
end

function plotdetail(::Type{Neuroblox.GPe})
OrderedDict(:mean => "V", :detail => ["V"])
end

function arguments(::Type{Neuroblox.GPi})
OrderedDict(
:N_inhib => NCAD(25, INTEGER, 1, 100,[],true),
Expand All @@ -422,6 +434,10 @@ function arguments(::Type{Neuroblox.GPi})
)
end

function plotdetail(::Type{Neuroblox.GPi})
OrderedDict(:mean => "V", :detail => ["V"])
end

function arguments(::Type{Neuroblox.STN})
OrderedDict(
:N_exci => NCAD(25, INTEGER, 1, 100,[],true),
Expand All @@ -431,6 +447,10 @@ function arguments(::Type{Neuroblox.STN})
)
end

function plotdetail(::Type{Neuroblox.STN})
OrderedDict(:mean => "V", :detail => ["V"])
end

function arguments(::Type{Neuroblox.SNc})
OrderedDict(
:κ_DA => NCAD(0.2, NUMBER, 0.1, 2,[],true),
Expand Down

0 comments on commit 69be9dc

Please sign in to comment.