Skip to content

Commit

Permalink
Merge pull request #31 from jemten/publish_intervals
Browse files Browse the repository at this point in the history
publish gens intervals by default
  • Loading branch information
jemten authored Jun 12, 2024
2 parents a0333ea + 8711079 commit 92d1f46
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Initial release of nf-core/createpanelrefs, created with the [nf-core](https://n
- [#24](https://github.com/nf-core/createpanelrefs/pull/24) - Updates germlinecnvcaller subworkflow to use mappability and segmental duplications track
- [#24](https://github.com/nf-core/createpanelrefs/pull/24) - Updates germlinecnvcaller and gens subworkflows to use custom names for panel of normals.
- [#28](https://github.com/nf-core/createpanelrefs/pull/28) - Updates default args for gens subworkflow and made the parameters available from the command line.
- [#31](https://github.com/nf-core/createpanelrefs/pull/31) - Publish interval_list file from gens subworkflow by default.

### `Fixed`

Expand Down
5 changes: 5 additions & 0 deletions conf/modules/gens_pon.config
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ process {
ext.args = { ["--imr OVERLAPPING_ONLY",
"--bin-length ${params.gens_bin_length}"].join(" ")
}
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/gens_pon/intervals" },
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: '.*GENS_PON:GATK4_COLLECTREADCOUNTS' {
Expand Down

0 comments on commit 92d1f46

Please sign in to comment.