Skip to content

Commit

Permalink
update PhysiCell to fix arg parser
Browse files Browse the repository at this point in the history
  • Loading branch information
drbergman committed Sep 9, 2024
1 parent ce9f1d7 commit 566a140
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/VCTRecorder.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
2 changes: 1 addition & 1 deletion src/VCTSensitivity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion test/PhysiCell
Submodule PhysiCell updated 277 files

0 comments on commit 566a140

Please sign in to comment.