From 62b77a34f93606c406b0703951ec92b7305457f5 Mon Sep 17 00:00:00 2001 From: Tim Dunn Date: Thu, 18 Jan 2024 16:38:10 -0500 Subject: [PATCH] version bump (v2.3.2) --- src/README.md | 6 ++++-- src/globals.h | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/README.md b/src/README.md index efeea69..b03e7e6 100644 --- a/src/README.md +++ b/src/README.md @@ -19,13 +19,15 @@ Options: -n, --no-output-files skip writing output files, only print summary to console - Variant Filtering: + Variant Filtering/Selection: -f, --filter [ALL] select just variants passing these FILTERs (OR operation) -s, --smallest-variant [1] minimum variant size, smaller variants ignored (SNPs are size 1) -l, --largest-variant [5000] maximum variant size, larger variants ignored + -sv, --sv-threshold [50] + variants of this size or larger are considered SVs, not INDELs -mn, --min-qual [0] minimum variant quality, lower qualities ignored -mx, --max-qual [60] @@ -67,5 +69,5 @@ Options: -c, --citation please cite vcfdist if used in your analyses; thanks :) -v, --version - print vcfdist version (v2.3.1) + print vcfdist version (v2.3.2) ``` diff --git a/src/globals.h b/src/globals.h index 2c5da45..63e4875 100644 --- a/src/globals.h +++ b/src/globals.h @@ -78,7 +78,7 @@ class Globals { void init_timers(std::vector timer_strs); // program data - const std::string VERSION = "2.3.1"; + const std::string VERSION = "2.3.2"; const std::string PROGRAM = "vcfdist"; std::vector timers; };