From a93dc55b7123d35b59bd88ff36d4208ade75132b Mon Sep 17 00:00:00 2001 From: Helmut Strey Date: Mon, 30 Dec 2024 12:21:24 -0500 Subject: [PATCH] added adj to special plot options --- src/gui/GUI.jl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/gui/GUI.jl b/src/gui/GUI.jl index a3a1bf23..cad705de 100644 --- a/src/gui/GUI.jl +++ b/src/gui/GUI.jl @@ -83,8 +83,8 @@ function tab_parameters() :solver => NCAD(1, DROPDOWN, 1, 2,["stiff","non-stiff"],true), :dt => NCAD(0.1, NUMBER, 1e-3, 10,[],true), :spike_threshold => NCAD(20, NUMBER, -50, 200,[],true), - :max_neurons => NCAD(10, INTEGER, 1, 100,[],true) - :order => ["duration","reltol","abstol","solver","dt","spike_threshold","max_neurons"], + :max_neurons => NCAD(10, INTEGER, 1, 100,[],true), + :order => ["duration","reltol","abstol","solver","dt","spike_threshold","max_neurons"] ), "Parameter Fitting" => OrderedDict( :method => NCAD(1, DROPDOWN, 1, 2,["Laplace","MCMC"],true), @@ -296,7 +296,7 @@ function arguments(::Type{Neuroblox.Thalamus}) end function plotdetail(::Type{Neuroblox.Thalamus}) - OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack"]) + OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack","adj"]) end function arguments(::Type{Neuroblox.Striatum}) @@ -309,7 +309,7 @@ function arguments(::Type{Neuroblox.Striatum}) end function plotdetail(::Type{Neuroblox.Striatum}) - OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack"]) + OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack","adj"]) end function arguments(::Type{Neuroblox.GPe}) @@ -322,7 +322,7 @@ function arguments(::Type{Neuroblox.GPe}) end function plotdetail(::Type{Neuroblox.GPe}) - OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack"]) + OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack","adj"]) end function arguments(::Type{Neuroblox.GPi}) @@ -335,7 +335,7 @@ function arguments(::Type{Neuroblox.GPi}) end function plotdetail(::Type{Neuroblox.GPi}) - OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack"]) + OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack","adj"]) end function arguments(::Type{Neuroblox.STN}) @@ -348,7 +348,7 @@ function arguments(::Type{Neuroblox.STN}) end function plotdetail(::Type{Neuroblox.STN}) - OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack"]) + OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack","adj"]) end function arguments(::Type{Neuroblox.SNc}) @@ -445,7 +445,7 @@ function arguments(::Type{Neuroblox.CorticalBlox}) #TODO: add correct settings f end function plotdetail(::Type{Neuroblox.CorticalBlox}) - OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack"]) + OrderedDict(:mean => "V", :detail => ["V"], :plots =>["raster","stack","adj"]) end # function arguments(::Type{Neuroblox.BandPassFilterBlox})