Skip to content

Commit

Permalink
Merge pull request #516 from Neuroblox/guiplots2
Browse files Browse the repository at this point in the history
Special Plots for GUI take 2
  • Loading branch information
hstrey authored Dec 30, 2024
2 parents 58d2274 + a93dc55 commit e8534a4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/gui/GUI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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})
Expand All @@ -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})
Expand All @@ -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})
Expand All @@ -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})
Expand All @@ -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})
Expand Down Expand Up @@ -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})
Expand Down

0 comments on commit e8534a4

Please sign in to comment.