-
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 #122 from Plant-Food-Research-Open/rc/2.1.0
Release candidate for 2.1.0
- Loading branch information
Showing
5 changed files
with
31 additions
and
3 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 |
---|---|---|
|
@@ -29,6 +29,7 @@ jobs: | |
- minimal | ||
- invalid | ||
- stub | ||
- noltr | ||
include: | ||
- OPTION_STUB: "" | ||
- OPTION_STUB: "-stub" | ||
|
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
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,27 @@ | ||
# **plant-food-research-open/assemblyqc** Tests | ||
|
||
## Minimal Testing | ||
|
||
If [Nextflow](https://www.nextflow.io/docs/latest/install.html#install-nextflow) and [Docker](https://docs.docker.com/install) are installed on the system, the pipeline can be minimally tested with the following command: | ||
|
||
```bash | ||
nextflow run plant-food-research-open/assemblyqc -r main -profile docker,test --outdir results | ||
``` | ||
|
||
Or using [singularity](https://docs.sylabs.io/guides/3.0/user-guide/installation.html): | ||
|
||
```bash | ||
nextflow run plant-food-research-open/assemblyqc -r main -profile singularity,test --outdir results | ||
``` | ||
|
||
## Local Testing | ||
|
||
The test sets included in this directory can be executed by first downloading the pipeline from GitHub and then executing the following command: | ||
|
||
```bash | ||
./main.nf -profile docker -params-file tests/minimal/params.json --outdir results | ||
``` | ||
|
||
## Continuous Integration (CI) | ||
|
||
The GitHub [CI action](../.github/workflows/ci.yml) included with the pipeline continuously tests the pipeline with the various test sets listed in this directory. |