Skip to content

Commit

Permalink
Merge pull request #403 from nf-core/update_sentieon_dnamodelapply
Browse files Browse the repository at this point in the history
Replace local version of SENTIEON_DNAMODELAPPLY with nf-core version
  • Loading branch information
asp8200 authored Aug 15, 2023
2 parents 383bb2d + c160035 commit bc20d53
Show file tree
Hide file tree
Showing 6 changed files with 167 additions and 52 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Installed the nf-core version of the sentieon/datametrics module [#400](https://github.com/nf-core/raredisease/pull/400)
- Installed the nf-core version of the sentieon/dedup module. The dedup module also contains a call to Sentieon's LocusCollector [#401](https://github.com/nf-core/raredisease/pull/401)
- Removing Sentieon-based BQSR. Recent Illumina sequencers tend to provide well-calibrated BQs, so BQSR may not provide much benefit [#402](https://github.com/nf-core/raredisease/pull/402)
- Installed the nf-core version of the sentieon/dnamodelapply module [#403](https://github.com/nf-core/raredisease/pull/403)

### `Fixed`

Expand Down
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,11 @@
"git_sha": "915a0b16ba3e40ef59e7b44843b3118e17a9c906",
"installed_by": ["modules"]
},
"sentieon/dnamodelapply": {
"branch": "master",
"git_sha": "43ef68091a1188fd8dc4c03f9341b556803c7514",
"installed_by": ["modules"]
},
"sentieon/readwriter": {
"branch": "master",
"git_sha": "b28e4dde755117e8dab5d6e85e292f145b8b53c3",
Expand Down
50 changes: 0 additions & 50 deletions modules/local/sentieon/dnamodelapply.nf

This file was deleted.

81 changes: 81 additions & 0 deletions modules/nf-core/sentieon/dnamodelapply/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 78 additions & 0 deletions modules/nf-core/sentieon/dnamodelapply/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions subworkflows/local/variant_calling/call_snv_sentieon.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//

include { SENTIEON_DNASCOPE } from '../../../modules/local/sentieon/dnascope'
include { SENTIEON_DNAMODELAPPLY } from '../../../modules/local/sentieon/dnamodelapply'
include { SENTIEON_DNAMODELAPPLY } from '../../../modules/nf-core/sentieon/dnamodelapply/main'
include { BCFTOOLS_MERGE } from '../../../modules/nf-core/bcftools/merge/main'
include { BCFTOOLS_NORM as SPLIT_MULTIALLELICS_SEN } from '../../../modules/nf-core/bcftools/norm/main'
include { BCFTOOLS_NORM as REMOVE_DUPLICATES_SEN } from '../../../modules/nf-core/bcftools/norm/main'
Expand All @@ -28,7 +28,7 @@ workflow CALL_SNV_SENTIEON {

SENTIEON_DNASCOPE ( ch_bam_bai, ch_genome_fasta, ch_genome_fai, ch_dbsnp, ch_dbsnp_index, ch_call_interval, ch_ml_model )

SENTIEON_DNAMODELAPPLY ( SENTIEON_DNASCOPE.out.vcf_index, ch_genome_fasta, ch_genome_fai, ch_ml_model )
SENTIEON_DNAMODELAPPLY ( SENTIEON_DNASCOPE.out.vcf_index, ch_genome_fasta, ch_genome_fai, [ [:], ch_ml_model ] )

BCF_FILTER_ONE (SENTIEON_DNAMODELAPPLY.out.vcf )

Expand Down

0 comments on commit bc20d53

Please sign in to comment.