From c05becea22718170579e30702ca2f468ccc0ca09 Mon Sep 17 00:00:00 2001 From: Daniel Bauer Date: Sat, 17 Jul 2021 14:44:09 +0200 Subject: [PATCH] version up --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 10 +++++++--- src/cli.yml | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ef9c00..9d3eb6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -362,7 +362,7 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" [[package]] name = "wham" -version = "1.0.0" +version = "1.1.0" dependencies = [ "assert_approx_eq", "clap", diff --git a/Cargo.toml b/Cargo.toml index fb0c381..608e5a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wham" -version = "1.0.0" +version = "1.1.0" authors = ["Daniel Bauer "] description = "An implementation of the weighted histogram analysis method" license = "GPL-3.0" diff --git a/README.md b/README.md index f41bf9e..c62c1e5 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ wham has a convenient command line interface. You can see all options with ```wham -h```: ``` -wham 1.0.0 -D. Bauer +wham 1.1.0 +D. Bauer wham is a fast implementation of the weighted histogram analysis method (WHAM) written in Rust. It currently supports potential of mean force (PMF) calculations in multiple dimensions at constant temperature. @@ -56,7 +56,7 @@ The first column will be ignored and is followed by N reaction coordinates x. Shipped under the GPLv3 license. USAGE: - wham [FLAGS] [OPTIONS] --bins --max --file --min --temperature + wham [FLAGS] [OPTIONS] --bins --max --file --min --temperature FLAGS: -c, --cyclic For periodic reaction coordinates. If this is set, the first and last coordinate bin in each @@ -72,6 +72,10 @@ OPTIONS: --bt Number of bayesian bootstrapping runs for error analysis by assigning random weights (defaults to 0). --seed Random seed for bootstrapping runs. + --convdt Performs WHAM for slices with the given delta in time and returns an output file + for each slice. THis is useful to check the result for convergence. Example: with + --convdt 100 and a timeseries ranging from 0-300, free energy surfaces for slices + 0-100, 0-200 and 0-300 will be given returned. --end Skip rows in timeseries with an index larger than this value (defaults to 1e+20) -i, --iterations Stop WHAM after this many iterations without convergence (defaults to 100,000). --max Histogram maxima (comma separated). Also accepts "pi". diff --git a/src/cli.yml b/src/cli.yml index 407f416..438a76c 100644 --- a/src/cli.yml +++ b/src/cli.yml @@ -1,5 +1,5 @@ name: wham -version: "1.0.0" +version: "1.1.0" author: D. Bauer about: | wham is a fast implementation of the weighted histogram analysis method (WHAM) written in Rust. It currently supports potential of mean force (PMF) calculations in multiple dimensions at constant temperature.