Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ Initial release of Clinical-Genomics/oncorefiner, created with the [nf-core](htt
### `Removed`

- Removed CI checks `awstest` and `awsfulltest` [#18](https://github.com/Clinical-Genomics/oncorefiner/pull/18)
- Removed unused `custom_extra_files` [#51](https://github.com/Clinical-Genomics/oncorefiner/pull/51)
3 changes: 1 addition & 2 deletions docs/parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Reference genome related files and options required for the workflow.

| Parameter | Description | Type | Default | Required | Hidden |
|-----------|-----------|-----------|-----------|-----------|-----------|
| `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 | | |
| `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` | | | |
| `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` | | | |
| `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 | | |
| `species` | Species of the reference genome. E.g. `--species homo_sapiens`. (accepted: `homo_sapiens`) | `string` | homo_sapiens | | |

## Annotation options
Expand Down Expand Up @@ -81,4 +81,3 @@ Less common options for the pipeline, typically set in a config file.
|-----------|-----------|-----------|-----------|-----------|-----------|
| `snv_vcf` | | `string` | | | |
| `sv_vcf` | | `string` | | | |
| `custom_extra_files` | | `string` | | | |
1 change: 0 additions & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ params {
vep_cache_version = 112
vep_plugin_files = null
vep_cache = null
custom_extra_files = null

// Vcfanno
vcfanno_toml = null
Expand Down
3 changes: 0 additions & 3 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,6 @@
},
"sv_vcf": {
"type": "string"
},
"custom_extra_files": {
"type": "string"
}
}
}
6 changes: 2 additions & 4 deletions workflows/oncorefiner.nf
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ workflow ONCOREFINER {
// VEP
RESEARCH_FILTERING.out.vcf
.map { meta, vcf ->
def custom_extra_files = params.custom_extra_files ? file(params.custom_extra_files) : []
tuple(meta, vcf, custom_extra_files)
tuple(meta, vcf, [])
}
.set { ch_vep_snv }

Expand Down Expand Up @@ -202,8 +201,7 @@ workflow ONCOREFINER {
// VEP
RESEARCH_FILTERING_SV.out.vcf
.map { meta, vcf ->
def custom_extra_files = params.custom_extra_files ? file(params.custom_extra_files) : []
tuple(meta, vcf, custom_extra_files) }
tuple(meta, vcf, []) }
.set { ch_vep_sv }


Expand Down
Loading