Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated docs to include -r flag #72

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading