Skip to content

Commit

Permalink
Version bump (v2.2.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimD1 committed Oct 27, 2023
1 parent 137436f commit 90c05fa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 31 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ If you do already have HTSlib installed elsewhere, make sure you've added it to
> cd vcfdist/src
> make
> ./vcfdist --version
vcfdist v2.2.0
vcfdist v2.2.1
```

### Option 2: Docker Image
Expand Down
34 changes: 6 additions & 28 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ Options:
Inputs/Outputs:
-b, --bed <STRING>
BED file containing regions to evaluate
-p, --prefix <STRING> [./]
prefix for output files (directory needs a trailing slash)
-v, --verbosity <INTEGER> [1]
printing verbosity (0: succinct, 1: default, 2:verbose)
-p, --prefix <STRING> [./]
prefix for output files (directory needs a trailing slash)
-n, --no-output-files
skip writing output files, only print summary to console
Variant Filtering:
-f, --filter <STRING1,STRING2...> [ALL]
Expand Down Expand Up @@ -43,13 +45,6 @@ Options:
-e, --gap-extend-penalty <INTEGER> [1]
Smith-Waterman gap extension penalty
Clustering:
--simple-cluster
instead of biWFA-based clustering, use gap-based clustering
-g, --cluster-gap <INTEGER> [50]
minimum gap between independent clusters and superclusters (in bases),
only applicable if used with '--simple-cluster' option
Utilization:
-t, --max-threads <INTEGER> [64]
maximum threads to use for clustering and precision/recall alignment
Expand All @@ -62,24 +57,7 @@ Options:
-a, --advanced
show advanced options, not recommended for most users
-c, --citation
please cite vcfdist if used in your analyses: thanks!
please cite vcfdist if used in your analyses; thanks :)
-v, --version
print vcfdist version (v2.2.0)
Advanced Options: (not recommended for most users)
Clustering:
-i, --max-iterations <INTEGER> [4]
maximum iterations for expanding/merging clusters
--max-reach-size <INTEGER> [100]
variants considered at most this size for biWFA-based clustering reaches
Distance:
-ex, --eval-mismatch-penalty <INTEGER> [3]
mismatch penalty (distance evaluation)
-eo, --eval-gap-open-penalty <INTEGER> [2]
gap opening penalty (distance evaluation)
-ee, --eval-gap-extend-penalty <INTEGER> [1]
gap extension penalty (distance evaluation)
print vcfdist version (v2.2.1)
```
2 changes: 1 addition & 1 deletion src/globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ void Globals::print_usage() const
printf(" -a, --advanced\n");
printf(" show advanced options, not recommended for most users\n");
printf(" -c, --citation\n");
printf(" please cite vcfdist if used in your analyses: thanks!\n");
printf(" please cite vcfdist if used in your analyses; thanks :)\n");
printf(" -v, --version\n");
printf(" print %s version (v%s)\n", this->PROGRAM.data(), this->VERSION.data());

Expand Down
2 changes: 1 addition & 1 deletion src/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Globals {
void init_timers(std::vector<std::string> timer_strs);

// program data
const std::string VERSION = "2.2.0";
const std::string VERSION = "2.2.1";
const std::string PROGRAM = "vcfdist";
};

Expand Down

0 comments on commit 90c05fa

Please sign in to comment.