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

Tiny update of docs #490

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fixed some Nextflow run-commands in the docs [#490](https://github.com/nf-core/rnafusion/pull/490)

### Removed

## v3.0.2 - [2024-04-10]
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ First, build the references:

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
-profile test \
-profile test,<docker/singularity/.../institute> \
--outdir <OUTDIR>\
--build_references \
-stub
Expand All @@ -87,8 +86,7 @@ Then perform the analysis:

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
-profile test \
-profile test,<docker/singularity/.../institute> \
--outdir <OUTDIR>\
-stub
```
Expand Down
12 changes: 12 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The rnafusion pipeline needs references for the fusion detection tools, so downl

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--build_references --all \
--cosmic_username <EMAIL> --cosmic_passwd <PASSWORD> \
--genomes_base <PATH/TO/REFERENCES> \
Expand All @@ -41,6 +42,7 @@ References for each tools can also be downloaded separately with:

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--build_references --<tool1> --<tool2> ... \
--cosmic_username <EMAIL> --cosmic_passwd <PASSWORD> \
--genomes_base <PATH/TO/REFERENCES> \
Expand All @@ -59,6 +61,7 @@ Use credentials from QIAGEN and add `--qiagen`

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--build_references --<tool1> --<tool2> ... \
--cosmic_username <EMAIL> --cosmic_passwd <PASSWORD> \
--genomes_base <PATH/TO/REFERENCES> \
Expand All @@ -75,6 +78,7 @@ If process `FUSIONREPORT_DOWNLOAD` times out, it could be due to network restric

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--build_references \
--cosmic_username <EMAIL> --cosmic_passwd <PASSWORD> \
--fusionreport \
Expand Down Expand Up @@ -134,6 +138,7 @@ The pipeline can either be run using all fusion detection tools or specifying in

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--all \
--input <SAMPLE_SHEET.CSV> \
--genomes_base <PATH/TO/REFERENCES> \
Expand All @@ -144,6 +149,7 @@ To run only a specific detection tool use: `--tool`:

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--<tool1> --<tool2> ... \
--input <SAMPLE_SHEET.CSV> \
--genomes_base <PATH/TO/REFERENCES> \
Expand Down Expand Up @@ -200,6 +206,7 @@ When the flag `--fastp_trim` is used, `fastp` is used to provide all tools with

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--<tool1> --<tool2> ... \
--input <SAMPLE_SHEET.CSV> \
--genomes_base <PATH/TO/REFERENCES> \
Expand All @@ -213,6 +220,7 @@ nextflow run nf-core/rnafusion \

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--<tool1> --<tool2> ... \
--input <SAMPLE_SHEET.CSV> \
--genomes_base <PATH/TO/REFERENCES> \
Expand All @@ -226,6 +234,7 @@ nextflow run nf-core/rnafusion \

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--<tool1> --<tool2> ... \
--input <SAMPLE_SHEET.CSV> \
--genomes_base <PATH/TO/REFERENCES> \
Expand All @@ -246,6 +255,7 @@ FusionInspector can be run as a standalone with:

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--fusioninspector_only \
--fusioninspector_fusions <PATH_TO_CUSTOM_FUSION_FILE> \
--input <SAMPLE_SHEET.CSV> \
Expand All @@ -263,6 +273,7 @@ GENE3--GENE4

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--skip_qc \
--all OR <--tool>
--input <SAMPLE_SHEET.CSV> \
Expand All @@ -276,6 +287,7 @@ This will skip all QC-related processes (picard metrics collection)

```bash
nextflow run nf-core/rnafusion \
-profile <docker/singularity/.../institute> \
--skip_vis \
--all OR <--tool>
--input <SAMPLE_SHEET.CSV> \
Expand Down
Loading