Skip to content

Commit

Permalink
Replace local version of SENTIEON_READWRITER with nf-core version
Browse files Browse the repository at this point in the history
  • Loading branch information
asp8200 committed Aug 14, 2023
1 parent ea6528b commit 219fc42
Show file tree
Hide file tree
Showing 5 changed files with 162 additions and 57 deletions.
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,11 @@
"git_sha": "b9172e8c26a3db5009f7872654c44587e254f094",
"installed_by": ["modules"]
},
"sentieon/readwriter": {
"branch": "master",
"git_sha": "b28e4dde755117e8dab5d6e85e292f145b8b53c3",
"installed_by": ["modules"]
},
"smncopynumbercaller": {
"branch": "master",
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
Expand Down
54 changes: 0 additions & 54 deletions modules/local/sentieon/readwriter.nf

This file was deleted.

84 changes: 84 additions & 0 deletions modules/nf-core/sentieon/readwriter/main.nf

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

71 changes: 71 additions & 0 deletions modules/nf-core/sentieon/readwriter/meta.yml

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

5 changes: 2 additions & 3 deletions subworkflows/local/alignment/align_sentieon.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ include { SENTIEON_DATAMETRICS } from '../../../modules/local/sentieon/datame
include { SENTIEON_LOCUSCOLLECTOR } from '../../../modules/local/sentieon/locuscollector'
include { SENTIEON_DEDUP } from '../../../modules/local/sentieon/dedup'
include { SENTIEON_BQSR } from '../../../modules/local/sentieon/bqsr'
include { SENTIEON_READWRITER } from '../../../modules/local/sentieon/readwriter'

include { SENTIEON_READWRITER } from '../../../modules/nf-core/sentieon/readwriter/main'
workflow ALIGN_SENTIEON {
take:
ch_reads_input // channel: [mandatory] [ val(meta), path(reads_input) ]
Expand Down Expand Up @@ -41,7 +40,7 @@ workflow ALIGN_SENTIEON {
}
.set{ merge_bams_in }

SENTIEON_READWRITER (merge_bams_in.multiple)
SENTIEON_READWRITER ( merge_bams_in.multiple, ch_genome_fasta, ch_genome_fai )
ch_bam_bai = merge_bams_in.single.mix(SENTIEON_READWRITER.out.bam_bai)

SENTIEON_DATAMETRICS (ch_bam_bai, ch_genome_fasta, ch_genome_fai )
Expand Down

0 comments on commit 219fc42

Please sign in to comment.