Skip to content

Commit

Permalink
Added explicit revision param to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
GallVp committed Oct 25, 2024
1 parent fe7b8fc commit 27a8d3b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
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 27a8d3b

Please sign in to comment.