-
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 #18 from pdimens/dev
begin release of 0.4.0
- Loading branch information
Showing
92 changed files
with
5,782 additions
and
2,249 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
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
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,59 @@ | ||
name: Test Extras | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'dev' | ||
paths: | ||
- '**hpc.py' | ||
- '**stitchparams.py' | ||
- '**popgroup.py' | ||
- '**extras.yml' | ||
|
||
pull_request: | ||
branches: | ||
- 'dev' | ||
paths: | ||
- '**hpc.py' | ||
- '**stitchparams.py' | ||
- '**popgroup.py' | ||
- '**extras.yml' | ||
|
||
env: | ||
CACHE_NUMBER: 0 # increase to reset cache manually | ||
|
||
jobs: | ||
build: | ||
name: linux64 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
- name: setup mamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
init-shell: bash | ||
generate-run-shell: true | ||
environment-file: misc/harpyenv.yaml | ||
cache-environment: true | ||
post-cleanup: 'all' | ||
- name: Install harpy | ||
run: | | ||
python3 -m pip install --upgrade build && python3 -m build | ||
pip install dist/*.whl | ||
misc/buildforCI.sh | ||
shell: micromamba-shell {0} | ||
|
||
- name: harpy popgroup | ||
run: harpy popgroup -d test/fastq | ||
shell: micromamba-shell {0} | ||
|
||
- name: harpy stitchparams | ||
run: harpy stitchparams -o params.file | ||
shell: micromamba-shell {0} | ||
|
||
- name: harpy hpc | ||
run: harpy hpc -o hpc.yml -s slurm | ||
shell: micromamba-shell {0} |
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
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
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,69 @@ | ||
name: Test Preflight | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'dev' | ||
paths: | ||
- 'rules/preflight-fastq.smk' | ||
- 'rules/preflight-bam.smk' | ||
- '**preflight.py' | ||
- '**helperfunctions.py' | ||
- 'test/fastq/**' | ||
- 'test/bam/**' | ||
- 'utilities/checkBAM.py' | ||
- 'utilities/checkFASTQ.py' | ||
- 'reports/reportPreflightFastq.Rmd' | ||
- 'reports/reportPreflightBam.Rmd' | ||
- '**preflight.yml' | ||
|
||
pull_request: | ||
branches: | ||
- 'dev' | ||
paths: | ||
- 'rules/preflight-fastq.smk' | ||
- 'rules/preflight-bam.smk' | ||
- '**preflight.py' | ||
- '**helperfunctions.py' | ||
- 'test/fastq/**' | ||
- 'test/bam/**' | ||
- 'utilities/checkBAM.py' | ||
- 'utilities/checkFASTQ.py' | ||
- 'reports/reportPreflightFastq.Rmd' | ||
- 'reports/reportPreflightBam.Rmd' | ||
- '**preflight.yml' | ||
|
||
env: | ||
CACHE_NUMBER: 0 # increase to reset cache manually | ||
|
||
jobs: | ||
build: | ||
name: linux64 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
- name: setup mamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
init-shell: bash | ||
generate-run-shell: true | ||
environment-file: misc/harpyenv.yaml | ||
cache-environment: true | ||
post-cleanup: 'all' | ||
- name: Install harpy | ||
run: | | ||
python3 -m pip install --upgrade build && python3 -m build | ||
pip install dist/*.whl | ||
misc/buildforCI.sh | ||
shell: micromamba-shell {0} | ||
|
||
- name: harpy preflight fastq | ||
run: harpy preflight fastq -d test/fastq | ||
shell: micromamba-shell {0} | ||
|
||
- name: harpy preflight bam | ||
run: harpy preflight bam -d test/bam | ||
shell: micromamba-shell {0} |
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
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
Oops, something went wrong.