Skip to content

Commit

Permalink
Merge pull request #445 from sateeshperi/dev
Browse files Browse the repository at this point in the history
apply suggestions from nextflow vscode formatter + update date in cha…
  • Loading branch information
sateeshperi authored Oct 25, 2024
2 parents 0bbf07f + 58219d5 commit cd1a02f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nf-core/methylseq

## [v2.7.0](https://github.com/nf-core/methylseq/releases/tag/2.7.0) - [2024-10-23]
## [v2.7.0](https://github.com/nf-core/methylseq/releases/tag/2.7.0) - [2024-10-25]

### Bug fixes & refactoring

Expand Down
6 changes: 2 additions & 4 deletions modules/nf-core/bismark/coverage2cytosine/nextflow.config

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/bwameth/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ workflow BWAMETH {

METHYLDACKEL_EXTRACT(
alignments.join(bam_index),
fasta.map{ meta, fasta -> [fasta]},
fasta.map{ meta, fasta_file -> [fasta_file]},
fasta_index
)
METHYLDACKEL_EXTRACT.out.bedgraph.dump(tag: 'BWAMETH/METHYLDACKEL_EXTRACT: bedgraph')
METHYLDACKEL_EXTRACT.out.methylkit.dump(tag: 'BWAMETH/METHYLDACKEL_EXTRACT: methylkit')

METHYLDACKEL_MBIAS(
alignments.join(bam_index),
fasta.map{ meta, fasta -> [fasta]},
fasta.map{ meta, fasta_file -> [fasta_file]},
fasta_index
)
METHYLDACKEL_MBIAS.out.txt.dump(tag: 'BWAMETH/METHYLDACKEL_MBIAS: txt')
Expand Down
11 changes: 2 additions & 9 deletions workflows/methylseq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,8 @@ include { paramsSummaryMultiqc } from '../../subworkflows/nf-core/utils_nfco
include { softwareVersionsToYAML } from '../../subworkflows/nf-core/utils_nfcore_pipeline'
include { methodsDescriptionText } from '../../subworkflows/local/utils_nfcore_methylseq_pipeline'
include { validateInputSamplesheet } from '../../subworkflows/local/utils_nfcore_methylseq_pipeline'

// Aligner: bismark or bismark_hisat
if( params.aligner =~ /bismark/ ){
include { BISMARK } from '../../subworkflows/local/bismark/'
}
// Aligner: bwameth
else if ( params.aligner == 'bwameth' ){
include { BWAMETH } from '../../subworkflows/local/bwameth'
}
include { BISMARK } from '../../subworkflows/local/bismark/'
include { BWAMETH } from '../../subworkflows/local/bwameth'

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit cd1a02f

Please sign in to comment.