Skip to content

Commit a32bd0b

Browse files
authored
Merge branch 'dev' into bwamem-fix
2 parents 5f85ee6 + 0da3157 commit a32bd0b

6 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
3838
- name: Build new docker image
3939
if: env.MATCHED_FILES
40-
run: docker build --no-cache . -t nfcore/eager:dev
40+
run: docker build --no-cache . -t nfcore/eager:2.4.3
4141

4242
- name: Pull docker image
4343
if: ${{ !env.MATCHED_FILES }}
4444
run: |
4545
docker pull nfcore/eager:dev
46-
docker tag nfcore/eager:dev nfcore/eager:dev
46+
docker tag nfcore/eager:dev nfcore/eager:2.4.3
4747
4848
- name: Install Nextflow
4949
env:

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6-
## [dev]
6+
## [2.4.3] - 2022-03-24
77

88
### `Added`
99

1010
### `Fixed`
1111

1212
- [#828](https://github.com/nf-core/eager/issues/828) Improved error message if required metagenomic screening parameters not set correctly
1313
- [#836](https://github.com/nf-core/eager/issues/836) Remove deprecated parameters from test profiles
14-
- [#838](https://github.com/nf-core/eager/issues/836) Fix --snpcapture_bed files not being picked up by Nextflow (❤ to @meganemichel for reporting)
14+
- [#838](https://github.com/nf-core/eager/issues/838) Fix --snpcapture_bed files not being picked up by Nextflow (❤ to @meganemichel for reporting)
1515
- [#843](https://github.com/nf-core/eager/issues/843) Re-add direct piping of AdapterRemovalFixPrefix to pigz
1616
- [#844](https://github.com/nf-core/eager/issues/844) Fixed reference masking prior to pmdtools
1717
- [#845](https://github.com/nf-core/eager/issues/845) Updates parameter documention to specify `-s` preseq parameter also applies to lc_extrap
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2020
- [#857](https://github.com/nf-core/eager/issues/857) Corrected samtools fastq flag to _retain_ read-pair information when converting off-target BAM files to fastq in paired-end mapping (❤ to @alexhbnr for reporting)
2121
- [#858](https://github.com/nf-core/eager/pull/858) Corrected tutorials to reflect updated BAM trimming flags (❤ to @marcel-keller for reporting)
2222
- [#866](https://github.com/nf-core/eager/issues/866) Fixed a typo in the indexing step of BWA mem when not-collapsing (❤ to @alexhbnr for reporting)
23+
- Corrected tutorials to reflect updated BAM trimming flags (❤ to @marcel-keller for reporting and correcting)
2324

2425
### `Dependencies`
2526

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY environment.yml /
77
RUN conda env create --quiet -f /environment.yml && conda clean -a
88

99
# Add conda installation dir to PATH (instead of doing 'conda activate')
10-
ENV PATH /opt/conda/envs/nf-core-eager-2.4.3dev/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-eager-2.4.3/bin:$PATH
1111

1212
# Dump the details of the installed packages to a file for posterity
13-
RUN conda env export --name nf-core-eager-2.4.3dev > nf-core-eager-2.4.3dev.yml
13+
RUN conda env export --name nf-core-eager-2.4.3 > nf-core-eager-2.4.3.yml

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# You can use this file to create a conda environment for this pipeline:
22
# conda env create -f environment.yml
3-
name: nf-core-eager-2.4.3dev
3+
name: nf-core-eager-2.4.3
44
channels:
55
- conda-forge
66
- bioconda
@@ -49,4 +49,4 @@ dependencies:
4949
- bioconda::eigenstratdatabasetools=1.0.2
5050
- bioconda::mapdamage2=2.2.1
5151
- bioconda::bbmap=38.92
52-
- bioconda::bcftools=1.12
52+
- bioconda::bcftools=1.12

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ if("${params.fasta}".endsWith(".gz")){
196196
} else {
197197
fasta_for_indexing = Channel
198198
.fromPath("${params.fasta}", checkIfExists: true)
199-
.into{ ch_fasta_for_bwaindex; ch_fasta_for_bt2index; ch_fasta_for_faidx; ch_fasta_for_seqdict; ch_fasta_for_circulargenerator; ch_fasta_for_circularmapper; ch_fasta_for_damageprofiler; ch_fasta_for_qualimap; ch_unmasked_fasta_for_masking; ch_unmasked_fasta_for_pmdtools; ch_fasta_for_genotyping_ug; ch_fasta__for_genotyping_hc; ch_fasta_for_genotyping_hc; ch_fasta_for_genotyping_freebayes; ch_fasta_for_genotyping_pileupcaller; ch_fasta_for_vcf2genome; ch_fasta_for_multivcfanalyzer;ch_fasta_for_genotyping_angsd;ch_fasta_for_damagerescaling;ch_fasta_for_bcftools_stats }
199+
.into{ ch_fasta_for_bwaindex; ch_fasta_for_bt2index; ch_fasta_for_faidx; ch_fasta_for_seqdict; ch_fasta_for_circulargenerator; ch_fasta_for_circularmapper; ch_fasta_for_damageprofiler; ch_fasta_for_qualimap; ch_unmasked_fasta_for_masking; ch_unmasked_fasta_for_pmdtools; ch_fasta_for_genotyping_ug; ch_fasta__for_genotyping_hc; ch_fasta_for_genotyping_hc; ch_fasta_for_genotyping_freebayes; ch_fasta_for_genotyping_pileupcaller; ch_fasta_for_vcf2genome; ch_fasta_for_multivcfanalyzer; ch_fasta_for_genotyping_angsd; ch_fasta_for_damagerescaling; ch_fasta_for_bcftools_stats }
200200
}
201201

202202
// Check that fasta index file path ends in '.fai'

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ params {
284284

285285
// Container slug. Stable releases should specify release tag!
286286
// Developmental code should specify :dev
287-
process.container = 'nfcore/eager:dev'
287+
process.container = 'nfcore/eager:2.4.3'
288288

289289
// Load base.config by default for all pipelines
290290
includeConfig 'conf/base.config'
@@ -414,7 +414,7 @@ manifest {
414414
description = 'A fully reproducible and state-of-the-art ancient DNA analysis pipeline'
415415
mainScript = 'main.nf'
416416
nextflowVersion = '>=20.07.1'
417-
version = '2.4.3dev'
417+
version = '2.4.3'
418418
}
419419

420420
// Function to ensure that resource requirements don't go beyond

0 commit comments

Comments
 (0)