add cons_algrm in pyabpoa #25
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
name: macos | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- name: Preparing Repositories | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: make | |
run: make | |
- name: Run Test Data | |
run: | | |
./bin/abpoa ./test_data/test.fa | |
./bin/abpoa ./test_data/heter.fa -d2 | |
./bin/abpoa ./test_data/seq.fa -a1 | |
./bin/abpoa ./test_data/seq.fa -r5 -a1 | |
./bin/abpoa ./test_data/heter.fq -d2 -Q | |
./bin/abpoa ./test_data/heter.fq -d2 -r2 -Q -a1 |