Skip to content

Commit 7acdac7

Browse files
committed
abpoa-v1.5.6
1 parent 6eac920 commit 7acdac7

3 files changed

Lines changed: 18 additions & 14 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ abpoa.dot.pdf
1414

1515
# readme
1616
README.html
17+
TODO.md
1718

1819
# Precompiled Headers
1920
*.gch
@@ -51,6 +52,7 @@ sub_example
5152
#data
5253
data/*
5354
test_data/cons.fa
55+
test_data/tmp/
5456
*.dot
5557
*.png
5658
*.pdf
@@ -68,6 +70,7 @@ python/dist/*
6870
python/example.png
6971
python/pyabpoa.c
7072
python/pyabpoa.egg-info/*
73+
src/pyabpoa.egg-info/*
7174
python/src/*
7275

7376
# eval file

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,17 @@
88
[![C/C++ CI](https://github.com/yangao07/abPOA/actions/workflows/linux-CI.yml/badge.svg)](https://github.com/yangao07/abPOA/actions/workflows/linux-CI.yml)
99
[![C/C++ CI](https://github.com/yangao07/abPOA/actions/workflows/macos-CI.yml/badge.svg)](https://github.com/yangao07/abPOA/actions/workflows/macos-CI.yml)
1010
[![License](https://img.shields.io/badge/License-MIT-black.svg)](https://github.com/yangao07/abPOA/blob/main/LICENSE)
11-
## Updates (v1.5.5)
1211

13-
* Allow >2 consensus sequences (#73) (may be buggy)
14-
* Fix a bug regarding cluster read IDs (#85)
12+
## Updates (v1.5.6)
13+
* Allow easy incremental MSA
14+
* Add pyproject.toml for pyabpoa
15+
1516

1617
## Getting started
1718
Download the [latest release](https://github.com/yangao07/abPOA/releases):
1819
```
19-
wget https://github.com/yangao07/abPOA/releases/download/v1.5.5/abPOA-v1.5.5.tar.gz
20-
tar -zxvf abPOA-v1.5.5.tar.gz && cd abPOA-v1.5.5
20+
wget https://github.com/yangao07/abPOA/releases/download/v1.5.6/abPOA-v1.5.6.tar.gz
21+
tar -zxvf abPOA-v1.5.6.tar.gz && cd abPOA-v1.5.6
2122
```
2223
Make from source and run with test data:
2324
```
@@ -35,7 +36,7 @@ abpoa ./test_data/seq.fa > cons.fa
3536
## Table of Contents
3637

3738
- [abPOA: adaptive banded Partial Order Alignment](#abpoa-adaptive-banded-partial-order-alignment)
38-
- [Updates (v1.5.5)](#updates-v155)
39+
- [Updates (v1.5.6)](#updates-v156)
3940
- [Getting started](#getting-started)
4041
- [Table of Contents](#table-of-contents)
4142
- [Introduction](#introduction)
@@ -99,9 +100,9 @@ You can also build abPOA from source files.
99100
Make sure you have gcc (>=6.4.0) and zlib installed before compiling.
100101
It is recommended to download the [latest release](https://github.com/yangao07/abPOA/releases).
101102
```
102-
wget https://github.com/yangao07/abPOA/releases/download/v1.5.5/abPOA-v1.5.5.tar.gz
103-
tar -zxvf abPOA-v1.5.5.tar.gz
104-
cd abPOA-v1.5.5; make
103+
wget https://github.com/yangao07/abPOA/releases/download/v1.5.6/abPOA-v1.5.6.tar.gz
104+
tar -zxvf abPOA-v1.5.6.tar.gz
105+
cd abPOA-v1.5.6; make
105106
```
106107
Or, you can use `git clone` command to download the source code.
107108
This gives you the latest version of abPOA, which might be still under development.
@@ -113,13 +114,13 @@ cd abPOA; make
113114
### Pre-built binary executable file for Linux/Unix or MacOS
114115
If you meet any compiling issue, please try the pre-built binary file for linux:
115116
```
116-
wget https://github.com/yangao07/abPOA/releases/download/v1.5.5/abPOA-v1.5.5_x64-linux.tar.gz
117-
tar -zxvf abPOA-v1.5.5_x64-linux.tar.gz
117+
wget https://github.com/yangao07/abPOA/releases/download/v1.5.6/abPOA-v1.5.6_x64-linux.tar.gz
118+
tar -zxvf abPOA-v1.5.6_x64-linux.tar.gz
118119
```
119120
or for macos:
120121
```
121-
wget https://github.com/yangao07/abPOA/releases/download/v1.5.5/abPOA-v1.5.5_arm64-macos.tar.gz
122-
tar -zxvf abPOA-v1.5.5_arm64-macos.tar.gz
122+
wget https://github.com/yangao07/abPOA/releases/download/v1.5.6/abPOA-v1.5.6_arm64-macos.tar.gz
123+
tar -zxvf abPOA-v1.5.6_arm64-macos.tar.gz
123124
```
124125

125126
## General usage

src/abpoa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ char PROG[20] = "abpoa";
1616
#define _bO BOLD UNDERLINE "O" NONE
1717
#define _bA BOLD UNDERLINE "A" NONE
1818
char DESCRIPTION[100] = _ba "daptive " _bb "anded " _bP "artial " _bO "rder " _bA "lignment";
19-
char VERSION[20] = "1.5.5";
19+
char VERSION[20] = "1.5.6";
2020
char CONTACT[30] = "yangao@ds.dfci.harvard.edu";
2121

2222
const struct option abpoa_long_opt [] = {

0 commit comments

Comments
 (0)