Skip to content

Commit

Permalink
Revert type change from Real to Float64
Browse files Browse the repository at this point in the history
Attempts to fix parsing error for the CLI's "gamma" argument by
reverting the change made in a prior commit [1].

[1] eba895b
  • Loading branch information
huddlej committed Sep 12, 2023
1 parent 0f3255a commit 0b19dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ We suggest two sets of defaults for running TreeKnit. `--better-trees` will prod
nwk_file1::AbstractString, nwk_file2::AbstractString, nwk_files::AbstractString...;
# options
outdir::AbstractString = "treeknit_results",
gamma::Real = OptArgs().γ,
gamma::Float64 = OptArgs().γ,
seq_lengths::AbstractString = join([string(i) for i in repeat([1], 2+ length(nwk_files))], " "),
n_mcmc_it::Int = OptArgs().nMCMC,
rounds::Int = 1,
Expand Down

0 comments on commit 0b19dff

Please sign in to comment.