Added option to remove alns with too few matching part. Did also some… #327
This file contains hidden or 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: Install deps, make,make test, makes upload folder | |
| on: | |
| push: | |
| branches: [ '**' ] | |
| pull_request: | |
| branches: [ '**' ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: sudo apt-get update;sudo apt-get install -y libbz2-dev liblzma-dev libcurl4-openssl-dev libgsl-dev samtools | |
| - name: prepare htslib | |
| run: git clone --branch=develop --recursive https://github.com/samtools/htslib.git;cd htslib; make;cd ..; | |
| - name: make | |
| run: export HTSSRC=`pwd`/htslib; make | |
| - name: make test | |
| run: make test | |
| - name: Upload test/output folder | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-output | |
| path: | | |
| test/output | |
| test/testAll.sh | |
| test/testAll.sh.log |