From 0c9767e1b48f7355caea729739fcc35b81284762 Mon Sep 17 00:00:00 2001 From: Dany Doerr Date: Thu, 26 Sep 2024 12:09:29 +0200 Subject: [PATCH] bump up version number --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9bb7fe1..72e56ce 100644 --- a/README.md +++ b/README.md @@ -48,14 +48,14 @@ mamba install -c conda-forge -c bioconda panacus ### From binary release #### Linux x86\_64 ```shell -wget --no-check-certificate -c https://github.com/marschall-lab/panacus/releases/download/0.2.3/panacus-0.2.3_linux_x86_64.tar.gz -tar -xzvf panacus-0.2.3_linux_x86_64.tar.gz +wget --no-check-certificate -c https://github.com/marschall-lab/panacus/releases/download/0.2.4/panacus-0.2.4_linux_x86_64.tar.gz +tar -xzvf panacus-0.2.4_linux_x86_64.tar.gz # install the Python libraries necessary for panacus-visualize pip install --user matplotlib numpy pandas scikit-learn scipy seaborn # suggestion: add tool to path in your ~/.bashrc -export PATH="$(readlink -f panacus-0.2.3_linux_x86_64/bin)":$PATH +export PATH="$(readlink -f panacus-0.2.4_linux_x86_64/bin)":$PATH # you are ready to go! panacus --help @@ -63,14 +63,14 @@ panacus --help #### Mac OSX arm64 ```shell -wget --no-check-certificate -c https://github.com/marschall-lab/panacus/releases/download/0.2.3/panacus-0.2.3_macos_arm64.tar.gz -tar -xzvf panacus-0.2.3_macos_arm64.tar.gz +wget --no-check-certificate -c https://github.com/marschall-lab/panacus/releases/download/0.2.4/panacus-0.2.4_macos_arm64.tar.gz +tar -xzvf panacus-0.2.4_macos_arm64.tar.gz # install the Python libraries necessary for panacus-visualize pip install --user matplotlib numpy pandas scikit-learn scipy seaborn # suggestion: add tool to path in your ~/.bashrc -export PATH="$(readlink -f panacus-0.2.3_macos_arm64/bin)":$PATH +export PATH="$(readlink -f panacus-0.2.4_macos_arm64/bin)":$PATH # you are ready to go! panacus --help