-
Notifications
You must be signed in to change notification settings - Fork 4
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 #139 from Plant-Food-Research-Open/dev
Candidate for 2.1.1
- Loading branch information
Showing
88 changed files
with
942 additions
and
469 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,10 +30,13 @@ jobs: | |
- invalid | ||
- stub | ||
- noltr | ||
- hicparam | ||
include: | ||
- OPTION_STUB: "" | ||
- OPTION_STUB: "-stub" | ||
TEST_PARAMS: stub | ||
- OPTION_STUB: "-stub" | ||
TEST_PARAMS: hicparam | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
|
@@ -55,3 +58,31 @@ jobs: | |
-params-file \ | ||
./tests/${{ matrix.TEST_PARAMS }}/params.json \ | ||
${{ matrix.OPTION_STUB }} | ||
nf-test: | ||
name: Run nf-tests | ||
# Only run on push if this is the nf-core dev branch (merged PRs) | ||
if: "${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'plant-food-research-open/assemblyqc') }}" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
NXF_VER: | ||
- "23.04.0" | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | ||
|
||
- name: Install Nextflow | ||
uses: nf-core/setup-nextflow@v2 | ||
with: | ||
version: ${{ matrix.NXF_VER }} | ||
|
||
- name: Install nf-test | ||
uses: nf-core/[email protected] | ||
|
||
- name: Run nf-tests | ||
run: | | ||
nf-test \ | ||
test \ | ||
--verbose \ | ||
tests |
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 |
---|---|---|
|
@@ -10,3 +10,7 @@ testing* | |
# PFR files | ||
*.stdout | ||
*.stderr | ||
|
||
# nf-test files | ||
.nf-test/ | ||
.nf-test.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 |
---|---|---|
|
@@ -3,6 +3,25 @@ | |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## v2.1.1 - [20-Sep-2024] | ||
|
||
### `Added` | ||
|
||
1. Configured nf-test for function testing | ||
|
||
### `Fixed` | ||
|
||
1. Made the `hic` param pattern more flexible as `^SR\w+$|^\S+\{1,2\}[\w\.]*\.f(ast)?q\.gz$` [#130](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/130) | ||
2. Fixed flowchart syntax to remove '\n' [#132](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/132) | ||
3. Updated modules to remove Bioconda `defaults` channel [#135](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/135) | ||
4. Now gff files for circular molecules can have end coordinates greater than the sequence length [#129](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/129) | ||
5. Fixed the branch protection GitHub action | ||
|
||
### `Dependencies` | ||
|
||
1. Nextflow!>=23.04.0 | ||
2. [email protected] | ||
|
||
## v2.1.0 - [31-July-2024] | ||
|
||
### `Added` | ||
|
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 |
---|---|---|
|
@@ -9,3 +9,7 @@ do | |
rm -rf "work/$i" | ||
done | ||
echo "Cleaned work..." | ||
|
||
rm -f .nf-test.log | ||
rm -rf .nf-test | ||
echo "Cleaned nf-test..." |
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.