You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Fixed
- Added `species` parameter to provide information for annotation which
was previously hardcoded.
- Added `species` parameter to `nextflow.config` with default value
`homo_sapiens`.
- Updated nextflow schema. Set parameter to enum with `homo_sapiens` as
the only option.
- Updated parameters documentation with pre-commit hook.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ Initial release of Clinical-Genomics/oncorefiner, created with the [nf-core](htt
44
44
- Added necessary GITHUB_TOKEN permissions for action add_pr_checklist_comment [#42](https://github.com/Clinical-Genomics/oncorefiner/pull/42)
45
45
- Updated all modules and removed deprecated `ch_versions` to implement latest nf-core changes that use the `versions` topic channel to collect software versions [#34](https://github.com/Clinical-Genomics/oncorefiner/pull/34)
46
46
- Fixed settings for `add_pr_checklist_comment` to allow action to run on a PR originated from a fork [#45](https://github.com/Clinical-Genomics/oncorefiner/pull/45)
47
+
- Added `species` parameter to provide information for annotation which was previously hardcoded [#49](https://github.com/Clinical-Genomics/oncorefiner/pull/49)
Customizable post-processing and extension layer built on top of Oncoanalyser that adapts its outputs to clinical and operational needs, adds missing analyses, and ensures flexibility for evolving standards while retaining Oncoanalyser robust core
4
4
@@ -8,7 +8,7 @@ Define where the pipeline should find input data and save output data.
|`input`| Path to comma-separated file containing information about the samples in the experiment. <details><summary>Help</summary><small>You will need to create a design file with information about the samples in your experiment before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row. See [usage docs](https://nf-co.re/oncorefiner/usage#samplesheet-input).</small></details>|`string`|| True ||
11
+
|`input`| Path to comma-separated file containing information about the samples in the experiment. <details><summary>Help</summary><small>You will need to create a design file with information about the samples in your experiment before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row.</small></details>|`string`|| True ||
12
12
|`outdir`| The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure. |`string`|| True ||
13
13
|`email`| Email address for completion summary. <details><summary>Help</summary><small>Set this parameter to your e-mail address to get a summary e-mail with details of the run sent to you when the workflow exits. If set in your user config file (`~/.nextflow/config`) then you don't need to specify this on the command line for every run.</small></details>|`string`||||
14
14
|`multiqc_title`| MultiQC report title. Printed as page header, used for filename if not otherwise specified. |`string`||||
@@ -19,11 +19,10 @@ Reference genome related files and options required for the workflow.
|`genome`| Name of iGenomes reference. <details><summary>Help</summary><small>If using a reference genome configured in the pipeline using iGenomes, use this parameter to give the ID for the reference. This is then used to build the full paths for all required reference genome files e.g. `--genome GRCh38`. <br><br>See the [nf-core website docs](https://nf-co.re/usage/reference_genomes) for more details.</small></details>|`string`||||
23
-
|`fasta`| Path to FASTA genome file. <details><summary>Help</summary><small>This parameter is *mandatory* if `--genome` is not specified. If you don't have a BWA index available this will be generated for you automatically. Combine with `--save_reference` to save BWA index for future runs.</small></details>|`string`||||
22
+
|`fasta`| Path to FASTA genome file. <details><summary>Help</summary><small>If you don't have a BWA index available this will be generated for you automatically. Combine with `--save_reference` to save BWA index for future runs.</small></details>|`string`||||
24
23
|`fai`| Path to FASTA genome index file. <details><summary>Help</summary><small>If none provided, will be generated automatically from the FASTA reference</small></details>|`string`||||
25
-
|`igenomes_ignore`|Do not load the iGenomes reference config. <details><summary>Help</summary><small>Do not load `igenomes.config` when running the pipeline. You may choose this option if you observe clashes between custom parameters and those supplied in `igenomes.config`.</small></details>|`boolean`|||True|
26
-
|`igenomes_base`|The base path to the igenomes reference files |`string`|s3://ngi-igenomes/igenomes/||True|
24
+
|`genome`|Name of the genome reference. (accepted: `GRCh38`\|`GRCh37`) <details><summary>Help</summary><small>Use this parameter to specify the ID for the reference genome used. This is then used to annotate the SV and SNV files e.g. `--genome GRCh38`.</small></details>|`string`|GRCh38|||
25
+
|`species`|Species of the reference genome. E.g. `--species homo_sapiens`. (accepted: `homo_sapiens`) |`string`|homo_sapiens|||
27
26
28
27
## Annotation options
29
28
@@ -75,3 +74,11 @@ Less common options for the pipeline, typically set in a config file.
75
74
|`help`| Display the help message. |`['boolean', 'string']`||||
76
75
|`help_full`| Display the full detailed help message. |`boolean`||||
77
76
|`show_hidden`| Display hidden parameters in the help message (only works when --help or --help_full are provided). |`boolean`||||
0 commit comments