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
43 commits
Select commit Hold shift + click to select a range
2ab50cf
Post-release bump versions
jfy133 Apr 8, 2021
2b9db90
Fix pigz issues
apeltzer Apr 9, 2021
150fbe8
Update CHANGELOG.md
apeltzer Apr 9, 2021
4122f17
Update CHANGELOG.md
apeltzer Apr 9, 2021
7ec7a80
Update environment.yml
apeltzer Apr 9, 2021
60fbe38
Nicer changelog
apeltzer Apr 9, 2021
6d6c5b0
Merge pull request #721 from nf-core/fix-env-pigz
apeltzer Apr 9, 2021
253507e
update bwa_index doc
maxibor Apr 19, 2021
7fe1501
Update nextflow_schema.json
maxibor Apr 19, 2021
58fb1f0
Update nextflow_schema.json
ashildv Apr 19, 2021
47e18a0
Update main.nf
jfy133 Apr 20, 2021
ad448fe
Update main.nf
jfy133 Apr 20, 2021
2f6e3cc
Update CHANGELOG.md
ashildv Apr 20, 2021
cae5161
Update CHANGELOG.md
jfy133 Apr 20, 2021
3ffe92e
Merge pull request #727 from ashildv/dev
jfy133 Apr 20, 2021
0e4ef9c
update changelog
maxibor Apr 23, 2021
6709431
merge from PR
maxibor Apr 23, 2021
aa4d0a6
Citation for damageprofiler
apeltzer Apr 25, 2021
806e247
Update CHANGELOG.md
jfy133 Apr 25, 2021
bed1baf
Update CHANGELOG.md
jfy133 Apr 25, 2021
5fa6e53
Merge branch 'dev' into minor-doc-update
jfy133 Apr 25, 2021
f1577ab
Merge pull request #725 from nf-core/minor-doc-update
jfy133 Apr 25, 2021
e84cf29
Update CHANGELOG.md
jfy133 Apr 25, 2021
380374c
Merge branch 'dev' into dmgprof-add-citation
jfy133 Apr 25, 2021
28ac4e4
Update CHANGELOG.md
jfy133 Apr 25, 2021
e612aad
Merge branch 'dev' into re-pipe-arfixprefix
jfy133 Apr 25, 2021
6c495df
Added --maxins for bt2
jfy133 Apr 25, 2021
1687722
Update CHANGELOG.md
jfy133 Apr 25, 2021
b0fd5ba
Merge pull request #730 from nf-core/dmgprof-add-citation
apeltzer Apr 26, 2021
561ad8b
Merge branch 'dev' into re-pipe-arfixprefix
apeltzer Apr 26, 2021
55e2eee
Merge pull request #732 from nf-core/bt2-maxins
apeltzer Apr 26, 2021
f92ac3c
feat: remove social preview image to use GitHub OpenGraph
maxulysse Apr 26, 2021
a6b6212
Merge pull request #733 from maxulysse/dev
ewels Apr 26, 2021
1c184aa
Merge pull request #731 from nf-core/re-pipe-arfixprefix
jfy133 Apr 26, 2021
a5c6a1e
feat: remove social preview image to use GitHub OpenGraph
maxulysse Apr 26, 2021
33f1b68
Merge pull request #734 from maxulysse/dev
jfy133 Apr 26, 2021
4d9773b
Fix --maxins parameter in paired-end bowtie2
charles-plessy Apr 27, 2021
ba5fd98
Merge pull request #735 from charles-plessy/patch-6
jfy133 Apr 28, 2021
7ba7016
Merge pull request #12 from nf-core/dev
jfy133 May 4, 2021
656e8e8
Version bump for release
jfy133 May 4, 2021
0cddbbf
More version bumps
jfy133 May 4, 2021
2e7f527
Merge pull request #738 from jfy133/ver-bump
apeltzer May 5, 2021
13c2f41
Update CHANGELOG.md
jfy133 May 5, 2021
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 @@ -34,13 +34,13 @@ jobs:

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

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

- name: Install Nextflow
env:
Expand Down
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,28 @@
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).

## v2.3.3 - 2021-01-06
## v2.3.4 - 2021-05-05

### `Added`

- [#729](https://github.com/nf-core/eager/issues/729) Added Bowtie2 flag `--maxins` for PE mapping modern DNA mapping contexts

### `Fixed`

- Corrected explanation of the "--min_adap_overlap" parameter for AdapterRemoval in the docs
- [#725](https://github.com/nf-core/eager/pull/725) `bwa_index` doc update
- Re-adds gzip piping to AdapterRemovalFixPrefix to speed up process after reports of being very slow
- Updated DamageProfiler citation from bioRxiv to publication

### `Dependencies`

- Removed pinning of `tbb` (upstream bug in bioconda fixed)
- Bumped `pigz` to 2.6 to fix rare stall bug when compressing data after AdapterRemoval
- Bumped Bowtie2 to 2.4.2 to fix issues with `tbb` version

### `Deprecated`

Comment on lines +25 to +26
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `Deprecated`

I tend to remove empty sections, but not sure if it's how it really should be done

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I personally always carry all sections over for consistency, so will keep here. Dev choice I guess 🤷

## v2.3.3 - 2021-04-08

### `Added`

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ 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.3.3/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-eager-2.3.4/bin:$PATH

# Dump the details of the installed packages to a file for posterity
RUN conda env export --name nf-core-eager-2.3.3 > nf-core-eager-2.3.3.yml
RUN conda env export --name nf-core-eager-2.3.4 > nf-core-eager-2.3.4.yml

# Instruct R processes to use these empty files instead of clashing with a local version
RUN touch .Rprofile
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ In addition, references of tools and data used in this pipeline are as follows:
* **AdapterRemoval v2** Schubert, M., Lindgreen, S., & Orlando, L. (2016). AdapterRemoval v2: rapid adapter trimming, identification, and read merging. BMC Research Notes, 9, 88. [https://doi.org/10.1186/s13104-016-1900-2](https://doi.org/10.1186/s13104-016-1900-2). Download: [https://github.com/MikkelSchubert/adapterremoval](https://github.com/MikkelSchubert/adapterremoval)
* **bwa** Li, H., & Durbin, R. (2009). Fast and accurate short read alignment with Burrows-Wheeler transform. Bioinformatics , 25(14), 1754–1760. [https://doi.org/10.1093/bioinformatics/btp324](https://doi.org/10.1093/bioinformatics/btp324). Download: [http://bio-bwa.sourceforge.net/bwa.shtml](http://bio-bwa.sourceforge.net/bwa.shtml)
* **SAMtools** Li, H., Handsaker, B., Wysoker, A., Fennell, T., Ruan, J., Homer, N., … 1000 Genome Project Data Processing Subgroup. (2009). The Sequence Alignment/Map format and SAMtools. Bioinformatics , 25(16), 2078–2079. [https://doi.org/10.1093/bioinformatics/btp352](https://doi.org/10.1093/bioinformatics/btp352). Download: [http://www.htslib.org/](http://www.htslib.org/)
* **DamageProfiler** Neukamm, J., Peltzer, A., & Nieselt, K. (2020). DamageProfiler: Fast damage pattern calculation for ancient DNA. In biorXiv (p. 2020.10.01.322206). [https://doi.org/10.1101/2020.10.01.322206](https://doi.org/10.1101/2020.10.01.322206). Download: [https://github.com/Integrative-Transcriptomics/DamageProfiler](https://github.com/Integrative-Transcriptomics/DamageProfiler)
* **DamageProfiler** Neukamm, J., Peltzer, A., & Nieselt, K. (2020). DamageProfiler: Fast damage pattern calculation for ancient DNA. In Bioinformatics (btab190). [https://doi.org/10.1093/bioinformatics/btab190](https://doi.org/10.1093/bioinformatics/btab190). Download: [https://github.com/Integrative-Transcriptomics/DamageProfiler](https://github.com/Integrative-Transcriptomics/DamageProfiler)
* **QualiMap** Okonechnikov, K., Conesa, A., & García-Alcalde, F. (2016). Qualimap 2: advanced multi-sample quality control for high-throughput sequencing data. Bioinformatics , 32(2), 292–294. [https://doi.org/10.1093/bioinformatics/btv566](https://doi.org/10.1093/bioinformatics/btv566). Download: [http://qualimap.bioinfo.cipf.es/](http://qualimap.bioinfo.cipf.es/)
* **preseq** Daley, T., & Smith, A. D. (2013). Predicting the molecular complexity of sequencing libraries. Nature Methods, 10(4), 325–327. [https://doi.org/10.1038/nmeth.2375](https://doi.org/10.1038/nmeth.2375). Download: [http://smithlabresearch.org/software/preseq/](http://smithlabresearch.org/software/preseq/)
* **PMDTools** Skoglund, P., Northoff, B. H., Shunkov, M. V., Derevianko, A. P., Pääbo, S., Krause, J., & Jakobsson, M. (2014). Separating endogenous ancient DNA from modern day contamination in a Siberian Neandertal. Proceedings of the National Academy of Sciences of the United States of America, 111(6), 2229–2234. [https://doi.org/10.1073/pnas.1318934111](https://doi.org/10.1073/pnas.1318934111). Download: [https://github.com/pontussk/PMDtools](https://github.com/pontussk/PMDtools)
Expand Down
Binary file removed assets/nf-core-eager_social_preview.png
Binary file not shown.
Loading