Test ACI #26
Workflow file for this run
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: Test ACI | |
on: [pull_request, workflow_dispatch] | |
run-name: Test ACI | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: pip install . | |
- name: Run ACI | |
run: aci -b tests/data/test.bam -d tests/data/test.bed -o testing | |
- name: Run ACI version | |
run: aci -v | |
- name: Run ACI help | |
run: aci -h | |
- name : Final tree | |
run: tree . | |
- name : Check final files | |
run: ls testing/{amplicon_depth.csv,amplicon_depth.png,overall_depth.csv,overall_depth.png} |