diff options
| author | Justin Bedo <cu@cua0.org> | 2023-01-27 18:11:42 +1100 | 
|---|---|---|
| committer | Justin Bedo <cu@cua0.org> | 2023-01-27 18:12:01 +1100 | 
| commit | 49a50c4fa6ad06741dd3fa411a03a08e6f9192ff (patch) | |
| tree | 7d352ac84979fdc85ff3eb1b61bc66b73e30c9a3 | |
| parent | 80a8e3ea0c78799c76ea833b3404f892c5f08431 (diff) | |
drop default mutation rate to 1%
| -rw-r--r-- | bin/cluster.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bin/cluster.hs b/bin/cluster.hs index a003227..6c8ea52 100644 --- a/bin/cluster.hs +++ b/bin/cluster.hs @@ -114,7 +114,7 @@ main = run =<< execParser opts      parser =        Options <$> option auto (long "seed" <> short 's' <> help "random seed" <> showDefault <> value 42 <> metavar "INT")          <*> option auto (long "nsamples" <> short 'n' <> help "number of samples from posterior" <> value 100000 <> metavar "INT" <> showDefault) -        <*> option probability (long "mhfrac" <> short 'm' <> help "Metropolis-Hastings mutation probability" <> value 0.3 <> metavar "(0,1]" <> showDefault) +        <*> option probability (long "mhfrac" <> short 'm' <> help "Metropolis-Hastings mutation probability" <> value 0.01 <> metavar "(0,1]" <> showDefault)          <*> argument str (metavar "INPUT")          <*> argument str (metavar "PROPS")          <*> argument str (metavar "TREE") | 
