Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c808e4b
dev version bump
TCLamnidis Aug 2, 2022
07e7eb4
Merge pull request #912 from nf-core/bump-dev-version-2-4-5
jfy133 Aug 4, 2022
1df5012
Update endorS.py
aidaanva Aug 11, 2022
14ef471
Update CHANGELOG.md
aidaanva Aug 11, 2022
42149c8
Update CHANGELOG.md
jfy133 Aug 11, 2022
e28fc20
Merge pull request #913 from nf-core/endorspy_license_change
jfy133 Aug 14, 2022
97c830a
Update usage.md
aidaanva Aug 25, 2022
8b42000
Update CHANGELOG.md
jfy133 Aug 25, 2022
8b7b018
Merge pull request #914 from nf-core/tsv-documentation-fix
apeltzer Sep 5, 2022
94d61c6
Add missing people and fix order
jfy133 Sep 28, 2022
dab6cee
Try fix for damageprofiler sometimes needing a fai file
jfy133 Oct 24, 2022
801a900
Update CHANGELOG.md
jfy133 Oct 24, 2022
701847d
Re-add picard replacereadgroups for MVA only
jfy133 Oct 24, 2022
d1039b8
Update CHANGELOG.md
jfy133 Oct 24, 2022
415d05e
Update CHANGELOG.md
jfy133 Oct 24, 2022
9ea34fa
Merge pull request #930 from nf-core/patch-multivcfanalyzer-readgroups
jfy133 Oct 27, 2022
7c848e4
Merge branch 'patch' into patch-damageprofiler-fai
jfy133 Nov 2, 2022
c2b6e42
Merge pull request #929 from nf-core/patch-damageprofiler-fai
jfy133 Nov 2, 2022
d78c15e
Fix MALT version to 0.61 as this will prevent previously borked MALT …
jfy133 Nov 8, 2022
116f0e1
update MQC and add pinned MALT
jfy133 Nov 8, 2022
49550f4
Merge pull request #931 from nf-core/patch-fix-malt-ver
apeltzer Nov 8, 2022
d90edc3
increase mean coverage decimals and parameter docs for snpcapture bed
jfy133 Nov 11, 2022
9e6cb22
Fix mapDamage command and add support for --seq-length parameter
jfy133 Nov 11, 2022
b902341
Correctl bump version
jfy133 Nov 11, 2022
8bc8c00
Merge pull request #932 from nf-core/patch-significance
jfy133 Nov 11, 2022
3f77e26
Merge branch 'patch' into patch-mapdamage
jfy133 Nov 11, 2022
745b63e
Linitng
jfy133 Nov 11, 2022
f0c4a7a
Merge pull request #935 from nf-core/patch-mapdamage
jfy133 Nov 13, 2022
2c58480
Bump to vers 2.4.6
TCLamnidis Nov 14, 2022
8c97202
Add contributors from Changelog
TCLamnidis Nov 15, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:

- name: Build new docker image
if: env.MATCHED_FILES
run: docker build --no-cache . -t nfcore/eager:2.4.5
run: docker build --no-cache . -t nfcore/eager:2.4.6

- name: Pull docker image
if: ${{ !env.MATCHED_FILES }}
run: |
docker pull nfcore/eager:dev
docker tag nfcore/eager:dev nfcore/eager:2.4.5
docker tag nfcore/eager:dev nfcore/eager:2.4.6

- name: Install Nextflow
env:
Expand Down
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,30 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.4.5] - 2022-07-39
## [2.4.6] - 2022-11-14

### `Added`

- [#933](https://github.com/nf-core/eager/issues/933) Added support for customising --seq-length in mapDamage rescaling (♥ to @ashildv for requesting)

### `Fixed`

- Changed endors.py license from GPL to MIT (♥ to @aidaanva for fixing)
- Removed erroneous R2 in single-end example in input TSV of usage docs (♥ to @aidaanva for fixing)
- [#928](https://github.com/nf-core/eager/issues/928) Fixed read group incompatibility by re-adding picard AddOrReplaceReadGroups for MultiVCFAnalyzer (♥ to @aidaanva, @meganemichel for reporting)
- Fixed edge case of DamageProfiler occasionally requiring FASTA index (♥ to @asmaa-a-abdelwahab for reporting)
- [#834](https://github.com/nf-core/eager/issues/834) Increased significance values in general stats table for Qualimap mean/median coverages (♥ to @neija2611 for reporting)
- Fixed parameter documentation for `--snpcapture_bed` regarding on-target SNP stats to state these stats currently not displayed in MultiQC only in the Qualimap results (♥ to @meganemichel and @TCLamnidis for reporting)
- [#934](https://github.com/nf-core/eager/issues/934) Fixed broken parameter setting in mapDamage2 rescale length (♥ to @ashildv for reporting)

### `Dependencies`

- Updated MultiQC to official 1.13 version (rather than alpha)
- Added pinned MALT dependency to ensure working version in future versions of eager

### `Deprecated`

## [2.4.5] - 2022-08-02

### `Added`

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY environment.yml /
RUN conda env create --quiet -f /environment.yml && conda clean -a

# Add conda installation dir to PATH (instead of doing 'conda activate')
ENV PATH /opt/conda/envs/nf-core-eager-2.4.5/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-eager-2.4.6/bin:$PATH

# Dump the details of the installed packages to a file for posterity
RUN conda env export --name nf-core-eager-2.4.5 > nf-core-eager-2.4.5.yml
RUN conda env export --name nf-core-eager-2.4.6 > nf-core-eager-2.4.6.yml
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,29 +160,36 @@ of this pipeline:

Those who have provided conceptual guidance, suggestions, bug reports etc.

* [Alex Hübner](https://github.com/alexhbnr)
* [Alexandre Gilardet](https://github.com/alexandregilardet)
* Arielle Munters
* [Åshild Vågene](https://github.com/ashildv)
* [Asmaa Ali](https://github.com/asmaa-a-abdelwahab)
* [Charles Plessy](https://github.com/charles-plessy)
* [Elina Salmela](https://github.com/esalmela)
* [Fabian Lehmann](https://github.com/Lehmann-Fabian)
* [He Yu](https://github.com/paulayu)
* [Hester van Schalkwyk](https://github.com/hesterjvs)
* [Ido Bar](https://github.com/IdoBar)
* [Irina Velsko](https://github.com/ivelsko)
* [Işın Altınkaya](https://github.com/isinaltinkaya)
* [Johan Nylander](https://github.com/nylander)
* [Jonas Niemann](https://github.com/NiemannJ)
* [Katerine Eaton](https://github.com/ktmeaton)
* [Kathrin Nägele](https://github.com/KathrinNaegele)
* [Kevin Lord](https://github.com/lordkev)
* [Laura Lacher](https://github.com/neija2611)
* [Luc Venturini](https://github.com/lucventurini)
* [Mahesh Binzer-Panchal](https://github.com/mahesh-panchal)
* [Marcel Keller](https://github.com/marcel-keller)
* [Megan Michel](https://github.com/meganemichel)
* [Pierre Lindenbaum](https://github.com/lindenb)
* [Pontus Skoglund](https://github.com/pontussk)
* [Raphael Eisenhofer](https://github.com/EisenRa)
* [Roberta Davidson](https://github.com/roberta-davidson)
* [Torsten Günter](https://bitbucket.org/tguenther/)
* [Kevin Lord](https://github.com/lordkev)
* [He Yu](https://github.com/paulayu)
* [Rodrigo Barquera](https://github.com/RodrigoBarquera)
* [Selina Carlhoff](https://github.com/scarlhoff)
* [Torsten Günter](https://bitbucket.org/tguenther)

If you've contributed and you're missing in here, please let us know and we will add you in of course!

Expand Down
Loading