Skip to content

Commit

Permalink
v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan Gao committed Jun 2, 2021
1 parent 7d506c2 commit bb4e303
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
[![Build Status](https://img.shields.io/travis/yangao07/abPOA/master.svg?label=Master)](https://travis-ci.org/yangao07/abPOA)
[![License](https://img.shields.io/badge/License-MIT-black.svg)](https://github.com/yangao07/abPOA/blob/master/LICENSE)
<!-- [![PyPI](https://img.shields.io/pypi/v/pyabpoa.svg?style=flat)](https://pypi.python.org/pypi/pyabpoa) -->
## Updates (v1.2.3)
## Updates (v1.2.4)

- Fix an overflow bug

## Getting started
Download the [latest release](https://github.com/yangao07/abPOA/releases):
```
wget https://github.com/yangao07/abPOA/releases/download/v1.2.3/abPOA-v1.2.3.tar.gz
tar -zxvf abPOA-v1.2.3.tar.gz && cd abPOA-v1.2.3
wget https://github.com/yangao07/abPOA/releases/download/v1.2.4/abPOA-v1.2.4.tar.gz
tar -zxvf abPOA-v1.2.4.tar.gz && cd abPOA-v1.2.4
```
Make from source and run with test data:
```
Expand Down Expand Up @@ -65,7 +65,7 @@ abPOA supports three alignment modes (global, local, extension) and flexible sco
It right now supports SSE2/SSE4.1/AVX2/AVX512F/AVX512BW vectorization and more advanced instructions
will be supported in the future.

For more information, please refer to our [preprint paper](https://doi.org/10.1101.2.30.05.07.083196).
For more information, please refer to our [preprint paper](https://doi.org/10.1101.2.40.05.07.083196).

## <a name="install"></a>Installation

Expand All @@ -80,9 +80,9 @@ You can also build abPOA from source files.
Make sure you have gcc (>=6.4.0) and zlib installed before compiling.
It is recommended to download the [latest release](https://github.com/yangao07/abPOA/releases).
```
wget https://github.com/yangao07/abPOA/releases/download/v1.2.3/abPOA-v1.2.3.tar.gz
tar -zxvf abPOA-v1.2.3.tar.gz
cd abPOA-v1.2.3; make
wget https://github.com/yangao07/abPOA/releases/download/v1.2.4/abPOA-v1.2.4.tar.gz
tar -zxvf abPOA-v1.2.4.tar.gz
cd abPOA-v1.2.4; make
```
Or, you can use `git clone` command to download the source code.
This gives you the latest version of abPOA, which might be still under development.
Expand All @@ -94,8 +94,8 @@ cd abPOA; make
### <a name="binary"></a>Pre-built binary executable file for Linux/Unix
If you meet any compiling issue, please try the pre-built binary file:
```
wget https://github.com/yangao07/abPOA/releases/download/v1.2.3/abPOA-v1.2.3_x64-linux.tar.gz
tar -zxvf abPOA-v1.2.3_x64-linux.tar.gz
wget https://github.com/yangao07/abPOA/releases/download/v1.2.4/abPOA-v1.2.4_x64-linux.tar.gz
tar -zxvf abPOA-v1.2.4_x64-linux.tar.gz
```

## <a name="usage"></a>General usage
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
description = "pyabpoa: SIMD-based partial order alignment using adaptive band",
long_description = long_description,
long_description_content_type="text/markdown",
version = "1.2.3",
version = "1.2.4",
url = "https://github.com/yangao07/abPOA",
author = "Yan Gao",
author_email = "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion src/abpoa.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ char PROG[20] = "abpoa";
#define _bO BOLD UNDERLINE "O" NONE
#define _bA BOLD UNDERLINE "A" NONE
char DESCRIPTION[100] = _ba "daptive " _bb "anded " _bP "artial " _bO "rder " _bA "lignment";
char VERSION[20] = "1.2.3";
char VERSION[20] = "1.2.4";
char CONTACT[30] = "[email protected]";

const struct option abpoa_long_opt [] = {
Expand Down

0 comments on commit bb4e303

Please sign in to comment.