Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix usage of Fasta references for bwameth / samtools faidx #403

Merged
merged 3 commits into from
May 28, 2024
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## v2.7.0dev - [date]

### Bug fixes & refactoring

- 🔄 Updated template to nf-core/tools v2.12 [#377](https://github.com/nf-core/methylseq/pull/377)
- 🔄 Updated template to nf-core/tools v2.13 [#380](https://github.com/nf-core/methylseq/pull/380)
- 🔄 Updated template to nf-core/tools v2.13.1 [#384](https://github.com/nf-core/methylseq/pull/384)
- 🔄 Updated template to nf-core/tools v2.14.1 [#399](https://github.com/nf-core/methylseq/pull/399)
- 🐛 fix sample/replicate merge [#401](https://github.com/nf-core/methylseq/pull/401)
- 🐛 fix fasta reference usage [#403](https://github.com/nf-core/methylseq/pull/403)

## [v2.6.0](https://github.com/nf-core/methylseq/releases/tag/2.6.0) - 2024-01-05

### Bug fixes & refactoring
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ These scripts were originally written for use at the [National Genomics Infrastr
- Rickard Hammarén ([@Hammarn](https://github.com/Hammarn/))
- Alexander Peltzer ([@apeltzer](https://github.com/apeltzer/))
- Patrick Hüther ([@phue](https://github.com/phue/))
- Maxime U Garica ([@maxulysse](https://github.com/maxulysse/))

## Contributions and Support

Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/prepare_genome.nf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ workflow PREPARE_GENOME {
if (params.fasta_index) {
ch_fasta_index = Channel.value(file(params.fasta_index))
} else {
SAMTOOLS_FAIDX([[:], ch_fasta])
SAMTOOLS_FAIDX(ch_fasta.map{ fasta -> [[:], fasta]})
ch_fasta_index = SAMTOOLS_FAIDX.out.fai.map{ return(it[1])}
ch_versions = ch_versions.mix(SAMTOOLS_FAIDX.out.versions)
}
Expand Down
Loading