Skip to content

Commit 7f01bef

Browse files
authored
Merge branch 'major-release-wangen' into inline-barcode-trimming
2 parents 087ce5c + a4b3f02 commit 7f01bef

19 files changed

Lines changed: 2196 additions & 488 deletions

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
### `Added`
99

1010
- [#642](https://github.com/nf-core/eager/issues/642) and [#431](https://github.com/nf-core/eager/issues/431) adds post-adapter removal barcode/fastq trimming
11+
1112
### `Fixed`
1213

1314
- [#771](https://github.com/nf-core/eager/issues/771) Remove legacy code
@@ -16,20 +17,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1617
### `Dependencies`
1718

1819
### `Deprecated`
19-
## v2.3.5dev - [date]
20+
21+
## v2.3.5 - 2021-06-03
2022

2123
### `Added`
2224

2325
- [#722](https://github.com/nf-core/eager/issues/722) - Adds bwa `-o` flag for more flexibility in bwa parameters
2426
- [#736](https://github.com/nf-core/eager/issues/736) - Add printing of multiqc run report location on successful completion
27+
- New logo that is more visible when a user is using darkmode on GitHub or nf-core website!
2528

2629
### `Fixed`
2730

2831
- [#723](https://github.com/nf-core/eager/issues/723) - Fixes empty fields in TSV resulting in uninformative error
2932
- Updated template to nf-core/tools 1.14
3033
- [#688](https://github.com/nf-core/eager/issues/688) - Clarified the pipeline is not just for humans and microbes, but also plants and animals, and also for modern DNA
3134
- [#751](https://github.com/nf-core/eager/pull/751) - Added missing label to mtnucratio
32-
- General code cleanup and standarisation of parameters with no default setting
35+
- General code cleanup and standardisation of parameters with no default setting
36+
- [#750](https://github.com/nf-core/eager/issues/750) - Fixed piped commands requesting the same number of CPUs at each command step
37+
- [#757](https://github.com/nf-core/eager/issues/757) - Removed confusing 'Data Type' variable from MultiQC workflow summary (not consistent with TSV input)
38+
- [#759](https://github.com/nf-core/eager/pull/759) - Fixed malformed software scraping regex that resulted in N/A in MultiQC report
39+
- [#761](https://github.com/nf-core/eager/pull/759) - Fixed issues related to instability of samtools filtering related CI tests
3340

3441
### `Dependencies`
3542

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.3.5dev/bin:$PATH
10+
ENV PATH /opt/conda/envs/nf-core-eager-2.4dev/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.3.5dev > nf-core-eager-2.3.5dev.yml
13+
RUN conda env export --name nf-core-eager-2.4dev > nf-core-eager-2.4dev.yml

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ![nf-core/eager](docs/images/nf-core_eager_logo.png)
1+
# ![nf-core/eager](docs/images/nf-core_eager_logo_outline_drop.png)
22

33
**A fully reproducible and state-of-the-art ancient DNA analysis pipeline**.
44

@@ -7,6 +7,7 @@
77
[![Nextflow](https://img.shields.io/badge/nextflow-%E2%89%A520.07.1-brightgreen.svg)](https://www.nextflow.io/)
88
[![nf-core](https://img.shields.io/badge/nf--core-pipeline-brightgreen.svg)](https://nf-co.re/)
99
[![DOI](https://zenodo.org/badge/135918251.svg)](https://zenodo.org/badge/latestdoi/135918251)
10+
[![Published in PeerJ](https://img.shields.io/badge/peerj-published-%2300B2FF)](https://peerj.com/articles/10947/)
1011

1112
[![install with bioconda](https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg)](https://bioconda.github.io/)
1213
[![Docker](https://img.shields.io/docker/automated/nfcore/eager.svg)](https://hub.docker.com/r/nfcore/eager)

assets/multiqc_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
custom_logo: 'nf-core_eager_logo.png'
1+
custom_logo: 'nf-core_eager_logo_outline_drop.png'
22
custom_logo_url: https://github.com/nf-core/eager/
33
custom_logo_title: 'nf-core/eager'
44

bin/scrape_software_versions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'Bowtie2': ['v_bowtie2.txt', r"bowtie2-([0-9]+\.[0-9]+\.[0-9]+) -fdebug"],
1717
'Qualimap': ['v_qualimap.txt', r"QualiMap v.(\S+)"],
1818
'GATK HaplotypeCaller': ['v_gatk.txt', r" v(\S+)"],
19-
#'GATK UnifiedGenotyper': ['v_gatk3_5.txt', r"version (\S+)"],
19+
'GATK UnifiedGenotyper': ['v_gatk3.txt', r"(\S+)"],
2020
'bamUtil' : ['v_bamutil.txt', r"Version: (\S+);"],
2121
'fastP': ['v_fastp.txt', r"([\d\.]+)"],
2222
'DamageProfiler' : ['v_damageprofiler.txt', r"DamageProfiler v(\S+)"],
@@ -37,7 +37,7 @@
3737
'kraken':['v_kraken.txt', r"Kraken version (\S+)"],
3838
'eigenstrat_snp_coverage':['v_eigenstrat_snp_coverage.txt',r"(\S+)"],
3939
'mapDamage2':['v_mapdamage.txt',r"(\S+)"],
40-
'bbduk':['v_bbduk.txt',r"(\S+)"]
40+
'bbduk':['v_bbduk.txt',r"(.*)"]
4141
}
4242

4343
results = OrderedDict()
-187 KB
Binary file not shown.

docs/images/nf-core_eager_logo.svg

Lines changed: 331 additions & 301 deletions
Loading
File renamed without changes.

docs/images/nf-core_eager_logo_flat_black.svg

Lines changed: 498 additions & 0 deletions
Loading
160 KB
Loading

0 commit comments

Comments
 (0)