Skip to content

Commit

Permalink
Updated docs to include -r flag
Browse files Browse the repository at this point in the history
  • Loading branch information
GallVp committed Oct 22, 2024
1 parent 35f6d64 commit 6289d80
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ At minimum, a file with proteins as evidence is also required. Now, you can run

```bash
nextflow run plant-food-research-open/genepal \
-revision <version> \
-profile <docker/singularity/.../institute> \
--input assemblysheet.csv \
--protein_evidence proteins.faa \
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/genepal -profile test,<docker/singularity> --outdir <OUTDIR>
nextflow run plant-food-research-open/genepal -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/genepal -profile test_full,<docker/singularity> --outdir <OUTDIR>
nextflow run plant-food-research-open/genepal -revision <version> -profile test_full,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
Expand Down
5 changes: 1 addition & 4 deletions docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,7 @@ The completeness of the annotations is checked with [BUSCO](https://gitlab.com/e
- Reports generated by Nextflow: `execution_report.html`, `execution_timeline.html`, `execution_trace.txt` and `pipeline_dag.dot`/`pipeline_dag.svg`.
- Reports generated by the pipeline: `pipeline_report.html`, `pipeline_report.txt` and `genepal_software_mqc_versions.yml`. The `pipeline_report*` files will only be present if the `--email` / `--email_on_fail` parameter's are used when running the pipeline.
- Parameters used by the pipeline run: `params.json`.
- `multiqc/`
- `multiqc_report.html`: A MultiQC report which includes QC statistics, software versions and references.
- `multiqc_data/`: MultiQC data files
- `multiqc_plots/`: MultiQC plots
- `multiqc_report.html`: A MultiQC report which includes QC statistics, software versions and references.

</details>

Expand Down
3 changes: 2 additions & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ The typical command for running the pipeline is as follows:

```bash
nextflow run plant-food-research-open/genepal \
-revision <version> \
-profile <docker/singularity/.../institute> \
--input assemblysheet.csv \
--protein_evidence proteins.faa \
Expand Down Expand Up @@ -190,7 +191,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/genepal -profile docker -params-file params.yaml
nextflow run plant-food-research-open/genepal -revision main -profile docker -params-file params.yaml
```

with:
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ validation {
defaultIgnoreParams = ["genomes"]
help {
enabled = true
command = "nextflow run $manifest.name -profile <docker/singularity/.../institute> --input samplesheet.csv --outdir <OUTDIR>"
command = "nextflow run $manifest.name -revision <version> -profile <docker/singularity/.../institute> --input assemblysheet.csv --protein_evidence proteins.faa --outdir <OUTDIR>"
fullParameter = "help_full"
showHiddenParameter = "show_hidden"

Expand Down

0 comments on commit 6289d80

Please sign in to comment.