Skip to content

Commit

Permalink
Merge pull request #164 from Plant-Food-Research-Open/docs/rev
Browse files Browse the repository at this point in the history
Added explicit revision param to docs
  • Loading branch information
GallVp authored Oct 25, 2024
2 parents fe7b8fc + 62e19f5 commit abd4695
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
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.2.0dev - [15-Oct-2024]
## v2.2.0dev - [25-Oct-2024]

### `Added`

Expand All @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

1. Fixed a bug where Gene score distribution graph did not appear correctly [#125](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/125)
2. Increased memory requirement for `DNADIFF` to avoid SLURM OOM kills with exit code 2 [#141](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/141)
3. Documented the use explicit use of `-revision` parameter [#160](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/160)

### `Dependencies`

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Now, you can run the pipeline using:

```bash
nextflow run plant-food-research-open/assemblyqc \
-revision <version> \
-profile <docker/singularity/.../institute> \
--input assemblysheet.csv \
--outdir <OUTDIR>
Expand Down
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Defines input files and everything required to run a fast and simple pipeline test.
Use as follows:
nextflow run plant-food-research-open/assemblyqc -profile test,<docker/singularity> --outdir <OUTDIR>
nextflow run plant-food-research-open/assemblyqc -revision <version> -profile test,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion conf/test_full.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Defines input files and everything required to run a full size pipeline test.
Use as follows:
nextflow run plant-food-research-open/assemblyqc -profile test_full,<docker/singularity> --outdir <OUTDIR>
nextflow run plant-food-research-open/assemblyqc -revision <version> -profile test_full,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ All the modules have been tested to work on a single machine with 10 CPUs + 32 G
The typical command for running the pipeline is as follows:

```bash
nextflow run plant-food-research-open/assemblyqc --input ./assemblysheet.csv --outdir ./results -profile docker
nextflow run plant-food-research-open/assemblyqc -revision <version> --input ./assemblysheet.csv --outdir ./results -profile docker
```

This will launch the pipeline with the `docker` configuration profile. See below for more information about profiles.
Expand All @@ -160,7 +160,7 @@ Pipeline settings can be provided in a `yaml` or `json` file via `-params-file <
The above pipeline run specified with a params file in yaml format:

```bash
nextflow run plant-food-research-open/assemblyqc -profile docker -params-file params.yaml
nextflow run plant-food-research-open/assemblyqc -revision main -profile docker -params-file params.yaml
```

with:
Expand Down

0 comments on commit abd4695

Please sign in to comment.