-
Notifications
You must be signed in to change notification settings - Fork 5
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 #194 from cidgoh/development
Merge dev to master
- Loading branch information
Showing
112 changed files
with
19,807 additions
and
5,277 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,49 @@ | ||
name: Nextflow CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- development | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
test_sarscov2_user: | ||
name: Run pipeline test (user) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Nextflow | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
- name: Run pipeline test (user) | ||
run: | | ||
nextflow run main.nf -profile docker --prefix "covidmvp-user-$(date +%Y-%m-%d)" -params-file covidmvp_user.yaml | ||
test_sarscov2_reference: | ||
name: Run pipeline test (reference) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Nextflow | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
- name: Run pipeline test (reference) | ||
run: | | ||
nextflow run main.nf -profile docker --prefix "covidmvp-$(date +%Y-%m-%d)" --end_date $(date +%Y-%m-%d) -params-file covidmvp_clinical_params.yaml | ||
check_success: | ||
name: Check if all tests passed | ||
needs: [test_sarscov2_user, test_sarscov2_reference] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check job status | ||
if: ${{ failure() }} | ||
run: exit 1 |
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 |
---|---|---|
@@ -1,23 +1,18 @@ | ||
.nextflow* | ||
work/* | ||
results/* | ||
.idea/* | ||
.github/data/metadata | ||
.github/data/sequence | ||
.DS_store | ||
testing/* | ||
*.ipynb | ||
weekly* | ||
*.error | ||
*.out | ||
bin/__* | ||
*.sh | ||
latest* | ||
data/* | ||
*.fa.xz | ||
*.gz | ||
hMPXV_* | ||
bin/web.log | ||
assets/config.ini | ||
*-params.yaml | ||
*.xz | ||
*.xz | ||
*.log |
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,3 @@ | ||
{ | ||
"recommendations": ["nextflow.nextflow"] | ||
} |
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,6 @@ | ||
{ | ||
"cSpell.words": ["bioinformatics", "cpus"], | ||
"nextflow.debug": true, | ||
"nextflow.formatting.harshilAlignment": true, | ||
"nextflow.java.home": "/cvmfs/soft.computecanada.ca/easybuild/software/2020/Core/java/17.0.2/" | ||
} |
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.