Skip to content

Commit

Permalink
Merge pull request #197 from nf-cmgg/callable-regions
Browse files Browse the repository at this point in the history
Exclude low coverage regions from variant calling
  • Loading branch information
nvnieuwk authored Sep 23, 2024
2 parents 7fc0208 + df9ecc3 commit 906cc8a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## v1.8.0dev

## New features

1. Added `watchpath` functionality to the pipeline. Add the `watch:` prefix to a file basename in the samplesheet and the pipeline will automatically wait for the file to be created in the `--watchdir` directory (the lookup happens recursively)

## Changes

1. Bumped the minimal support nextflow version to `24.04.0`
2. Bumped all modules to the newest versions
3. The pipeline now also outputs `csi` indices
4. Low coverage regions (regions with less than 5 reads) are no longer considered for variant calling

## Refactors

Expand Down
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ process {

withName: "^.*CRAM_PREPARE_SAMTOOLS_BEDTOOLS:FILTER_BEDS\$" {
ext.prefix = { "${meta.id}.filter"}
ext.args = "-vE \"NO_COVERAGE${params.keep_alt_contigs ? "" : "|alt|random|decoy|Un"}\""
ext.args = "-vE \"LOW_COVERAGE|NO_COVERAGE${params.keep_alt_contigs ? "" : "|alt|random|decoy|Un"}\""
ext.args2 = "-d 150"
publishDir = [
overwrite: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"family_samples": "NA24143",
"duplicate_count": 1
},
"NA24143.filter.bed:md5,9fc0cc2e4403678f18bc8b18646abd66"
"NA24143.filter.bed:md5,85a5568a6976ed455caa712991b30ac2"
]
],
[
Expand All @@ -71,7 +71,7 @@
"nf-test": "0.9.0",
"nextflow": "24.04.4"
},
"timestamp": "2024-09-06T14:32:19.290286542"
"timestamp": "2024-09-23T14:56:11.141634788"
},
"default - WES": {
"content": [
Expand Down

0 comments on commit 906cc8a

Please sign in to comment.