Skip to content
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Changes

1. Renamed the `tbi` samplesheet field to `gtbi` to make it more clear that this is the index of the GVCF file.
2. Process_bed module: add sorting step + git HyperCap profile more memory.

## v1.11.0 - Generous Ghent - [Sept 1 2025]

Expand Down
5 changes: 5 additions & 0 deletions conf/hypercap.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ params {
scatter_count = 5
only_pass = true
}
process {
withName: PROCESS_BEDS {
memory = 64.GB
}
}
1 change: 1 addition & 0 deletions modules/local/process_beds/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ process PROCESS_BEDS {
"""
${unzip} ${bed} \\
| grep ${args} \\
| bedtools sort -faidx ${fai} \\
| bedtools merge ${args2} \\
${intersect} \\
> ${prefix}.bed
Expand Down
Loading