Skip to content

Commit

Permalink
make minor version consistent with earlier version conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dany Doerr committed Oct 18, 2023
1 parent f81454c commit d630eb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ conda install -c bioconda gfaffix

```
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5a/GFAffix-0.1.5a_linux_x86_64.tar.gz
tar -xzvf GFAffix-0.1.5a_linux_x86_64.tar.gz
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5b/GFAffix-0.1.5b_linux_x86_64.tar.gz
tar -xzvf GFAffix-0.1.5b_linux_x86_64.tar.gz
# you are ready to go!
./GFAffix-0.1.5a_linux_x86_64/gfaffix
./GFAffix-0.1.5b_linux_x86_64/gfaffix
```
Expand All @@ -49,11 +49,11 @@ tar -xzvf GFAffix-0.1.5a_linux_x86_64.tar.gz

```
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5a/GFAffix-0.1.5a_macos_x_arm64.tar.gz
tar -xzvf GFAffix-0.1.5a_macos_x_arm64.tar.gz
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5b/GFAffix-0.1.5b_macos_x_arm64.tar.gz
tar -xzvf GFAffix-0.1.5b_macos_x_arm64.tar.gz
# you are ready to go!
./GFAffix-0.1.5a_macos_x_arm64/gfaffix
./GFAffix-0.1.5b_macos_x_arm64/gfaffix
```
Expand All @@ -71,7 +71,7 @@ cargo build --manifest-path GFAffix/Cargo.toml --release

```
$ gfaffix --help
gfaffix 0.1.5a
gfaffix 0.1.5b
Daniel Doerr <[email protected]>
Discover walk-preserving shared prefixes in multifurcations of a given graph.
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use deleted_sub_graph::*;

#[derive(Parser, Debug)]
#[clap(
version = "0.1.5a",
version = "0.1.5b",
author = "Daniel Doerr <[email protected]>",
about = "Discover and collapse walk-preserving shared affixes of a given variation graph.\n
- Do you want log output? Call program with 'RUST_LOG=info gfaffix ...'
Expand Down

0 comments on commit d630eb7

Please sign in to comment.