-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from treangenlab/nsapoval-CI
Added basic test action
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Run basic tests for Lemur | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
test: | ||
name: Test Lemur executable | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Miniconda | ||
uses: conda-incubator/[email protected] | ||
with: | ||
environment-file: ./lemur.yml | ||
activate-environment: lemur-env | ||
python-version: 3.9 | ||
|
||
- name: Run Lemur | ||
run: ./lemur -i ./examples/example-data/example.fastq | ||
-o ./examples/example-output | ||
-d ./examples/example-db | ||
--tax-path ./examples/example-db/taxonomy.tsv | ||
-r species | ||
--verbose > ./examples/example-output/example.log 2>&1; | ||
|
||
- name: Check that output was produced | ||
id: check_files | ||
uses: andstor/[email protected] | ||
with: | ||
files: "./examples/example-output/P_rgs_df.tsv, ./examples/example-output/relative_abundance.tsv, ./examples/example-output/relative_abundance-species.tsv" | ||
fail: true | ||
|
||
- name: Check if outputed profile matches reference | ||
uses: LouisBrunner/[email protected] | ||
with: | ||
old: ./examples/example-output-ref/relative_abundance.tsv | ||
new: ./examples/example-output/relative_abundance.tsv | ||
mode: strict | ||
tolerance: same | ||
output: ./examples/example-output/relative_abundance_diff.txt | ||
|
||
- name: Archive production artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: lemur-out-log | ||
path: ./examples/example-output/* | ||
retention-days: 5 |