From 566a1407df844ff783a2653068d185baf17eabd4 Mon Sep 17 00:00:00 2001 From: Daniel Bergman Date: Mon, 9 Sep 2024 14:51:15 -0400 Subject: [PATCH] update PhysiCell to fix arg parser --- src/VCTRecorder.jl | 2 +- src/VCTSensitivity.jl | 2 +- test/PhysiCell | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/VCTRecorder.jl b/src/VCTRecorder.jl index 178ab7e7..3f531083 100644 --- a/src/VCTRecorder.jl +++ b/src/VCTRecorder.jl @@ -2,7 +2,7 @@ function recordIDs(path_to_folder::String, filename::String, ids::Array{Int}) mkpath(path_to_folder) path_to_csv = "$(path_to_folder)/$(filename).csv" lines_table = compressIDs(ids) - CSV.write(path_to_csv, lines_table; writeheader=false) + CSV.write(path_to_csv, lines_table; header=false) end function recordSimulationIDs(monad_id::Int, simulation_ids::Array{Int}) diff --git a/src/VCTSensitivity.jl b/src/VCTSensitivity.jl index 7838da71..f6444075 100644 --- a/src/VCTSensitivity.jl +++ b/src/VCTSensitivity.jl @@ -340,7 +340,7 @@ end function recordSensitivityScheme(gsa_sampling::GSASampling) method = methodString(gsa_sampling) path_to_csv = "$(getOutputFolder(gsa_sampling.sampling))/$(method)_scheme.csv" - return CSV.write(path_to_csv, getMonadIDDataFrame(gsa_sampling); writeheader=true) + return CSV.write(path_to_csv, getMonadIDDataFrame(gsa_sampling); header=true) end function evaluateFunctionOnSampling(gsa_sampling::GSASampling, f::Function) diff --git a/test/PhysiCell b/test/PhysiCell index c7152c41..ebfff272 160000 --- a/test/PhysiCell +++ b/test/PhysiCell @@ -1 +1 @@ -Subproject commit c7152c416c3890af4485a8432fa7898b14831cf4 +Subproject commit ebfff272b5578042443ff2374d04eae0b96a4b7d