Skip to content

Commit

Permalink
remove tf_name argument from write_tmle_inputs()
Browse files Browse the repository at this point in the history
  • Loading branch information
roskamsh committed Nov 16, 2023
1 parent 1f6956d commit 45af342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tmle_inputs/tmle_inputs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The SAMPLE_ID column should be read as a String.
"""
read_data(filepath) = CSV.read(filepath, DataFrame, types=Dict(:SAMPLE_ID => String))

function write_tmle_inputs(outprefix, final_dataset, parameters; tf_name=nothing, batch_size=nothing)
function write_tmle_inputs(outprefix, final_dataset, parameters; batch_size=nothing)
# Write final_dataset
Arrow.write(string(outprefix, ".data.arrow"), final_dataset)
# Write param_files
Expand Down

0 comments on commit 45af342

Please sign in to comment.