-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dany Doerr
committed
Oct 18, 2023
1 parent
eede6e4
commit 259c375
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,11 +36,11 @@ conda install -c bioconda gfaffix | |
|
||
``` | ||
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5/GFAffix-0.1.5_linux_x86_64.tar.gz | ||
tar -xzvf GFAffix-0.1.5_linux_x86_64.tar.gz | ||
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5/GFAffix-0.1.5a_linux_x86_64.tar.gz | ||
tar -xzvf GFAffix-0.1.5a_linux_x86_64.tar.gz | ||
# you are ready to go! | ||
./GFAffix-0.1.5_linux_x86_64/gfaffix | ||
./GFAffix-0.1.5a_linux_x86_64/gfaffix | ||
``` | ||
|
@@ -49,11 +49,11 @@ tar -xzvf GFAffix-0.1.5_linux_x86_64.tar.gz | |
|
||
``` | ||
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5/GFAffix-0.1.5_macos_x_arm64.tar.gz | ||
tar -xzvf GFAffix-0.1.5_macos_x_arm64.tar.gz | ||
wget --no-check-certificate -c https://github.com/marschall-lab/GFAffix/releases/download/0.1.5/GFAffix-0.1.5a_macos_x_arm64.tar.gz | ||
tar -xzvf GFAffix-0.1.5a_macos_x_arm64.tar.gz | ||
# you are ready to go! | ||
./GFAffix-0.1.5_macos_x_arm64/gfaffix | ||
./GFAffix-0.1.5a_macos_x_arm64/gfaffix | ||
``` | ||
|
@@ -71,7 +71,7 @@ cargo build --manifest-path GFAffix/Cargo.toml --release | |
|
||
``` | ||
$ gfaffix --help | ||
gfaffix 0.1.5 | ||
gfaffix 0.1.5a | ||
Daniel Doerr <[email protected]> | ||
Discover walk-preserving shared prefixes in multifurcations of a given graph. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ use deleted_sub_graph::*; | |
|
||
#[derive(Parser, Debug)] | ||
#[clap( | ||
version = "0.1.5", | ||
version = "0.1.5a", | ||
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 ...' | ||
|