Skip to content

Commit 41b44b0

Browse files
authored
Merge branch 'dev' into pditommaso-patch-1
2 parents 5d20e28 + da7b999 commit 41b44b0

File tree

103 files changed

+1690
-452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+1690
-452
lines changed

CHANGELOG.md

+38-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## v3.16.0dev - [date]
77

8-
- [PR #1374](https://github.com/nf-core/rnaseq/pull/1374) - Bump pipeline version to 3.16.0dev
8+
9+
### Enhancements & fixes
10+
911
- [PR #1376](https://github.com/nf-core/rnaseq/pull/1376) - Fix invalid named parameter syntax
12+
- [PR #1386](https://github.com/nf-core/rnaseq/pull/1386) - Bump pipeline version to 3.16.0dev
13+
- [PR #1388](https://github.com/nf-core/rnaseq/pull/1388) - Adding Kraken2/Bracken on unaligned reads as an additional quality control step to detect sample contamination
1014

11-
### Credits
15+
### Parameters
1216

13-
Special thanks to the following for their contributions to the release:
17+
| Old parameter | New parameter |
18+
| ------------- | --------------------------- |
19+
| | `--contaminant_screening` |
20+
| | `--kraken_db` |
21+
| | `--save_kraken_assignments` |
22+
| | `--save_kraken_unassigned` |
23+
| | `--bracken_precision` |
24+
25+
> **NB:** Parameter has been **updated** if both old and new parameter information is present.
26+
> **NB:** Parameter has been **added** if just the new parameter information is present.
27+
> **NB:** Parameter has been **removed** if new parameter information isn't present.
28+
29+
### Software dependencies
30+
31+
| Dependency | Old version | New version |
32+
| ---------- | ----------- | ----------- |
33+
| `Kraken2` | ----------- | 2.1.3 |
34+
| `Bracken` | ----------- | 2.9 |
35+
36+
> **NB:** Dependency has been **updated** if both old and new version information is present.
37+
>
38+
> **NB:** Dependency has been **added** if just the new version information is present.
39+
>
40+
> **NB:** Dependency has been **removed** if new version information isn't present.
41+
42+
## [[3.15.1](https://github.com/nf-core/rnaseq/releases/tag/3.15.1)] - 2024-09-16
1443

1544
### Enhancements & fixes
1645

46+
- [PR #1374](https://github.com/nf-core/rnaseq/pull/1374) - Bump pipeline version to 3.16.0dev
47+
- [PR #1380](https://github.com/nf-core/rnaseq/pull/1380) - Fix issues with R modules changing sample names
48+
- [PR #1381](https://github.com/nf-core/rnaseq/pull/1381) - Update all modules following massive conda usage update in nf-core modules
49+
- [PR #1382](https://github.com/nf-core/rnaseq/pull/1381) - Slight fixes for rnaseq preprocessing
50+
- [P$ #1383](https://github.com/nf-core/rnaseq/pull/1383) - Prerelease 3.15.1 version bumps
51+
1752
## [[3.15.0](https://github.com/nf-core/rnaseq/releases/tag/3.15.0)] - 2024-09-04
1853

1954
### Credits

CITATIONS.md

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
> Quinlan AR, Hall IM. BEDTools: a flexible suite of utilities for comparing genomic features. Bioinformatics. 2010 Mar 15;26(6):841-2. doi: 10.1093/bioinformatics/btq033. Epub 2010 Jan 28. PubMed PMID: 20110278; PubMed Central PMCID: PMC2832824.
1818
19+
- [Bracken](https://doi.org/10.7717/peerj-cs.104)
20+
21+
> Lu, J., Breitwieser, F. P., Thielen, P., & Salzberg, S. L. (2017). Bracken: estimating species abundance in metagenomics data. PeerJ. Computer Science, 3(e104), e104. https://doi.org/10.7717/peerj-cs.104
22+
1923
- [fastp](https://www.ncbi.nlm.nih.gov/pubmed/30423086/)
2024

2125
> Chen S, Zhou Y, Chen Y, Gu J. fastp: an ultra-fast all-in-one FASTQ preprocessor. Bioinformatics. 2018 Sep 1;34(17):i884-i890. doi: 10.1093/bioinformatics/bty560. PubMed PMID: 30423086; PubMed Central PMCID: PMC6129281.
@@ -38,6 +42,10 @@
3842

3943
> Kim D, Paggi JM, Park C, Bennett C, Salzberg SL. Graph-based genome alignment and genotyping with HISAT2 and HISAT-genotype Graph-based genome alignment and genotyping with HISAT2 and HISAT-genotype. Nat Biotechnol. 2019 Aug;37(8):907-915. doi: 10.1038/s41587-019-0201-4. Epub 2019 Aug 2. PubMed PMID: 31375807.
4044
45+
- [Kraken2](https://doi.org/10.1186/s13059-019-1891-0)
46+
47+
> Wood, D. E., Lu, J., & Langmead, B. (2019). Improved metagenomic analysis with Kraken 2. Genome Biology, 20(1), 257. https://doi.org/10.1186/s13059-019-1891-0
48+
4149
- [MultiQC](https://pubmed.ncbi.nlm.nih.gov/27312411/)
4250

4351
> Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
3. [`dupRadar`](https://bioconductor.org/packages/release/bioc/html/dupRadar.html)
4747
4. [`Preseq`](http://smithlabresearch.org/software/preseq/)
4848
5. [`DESeq2`](https://bioconductor.org/packages/release/bioc/html/DESeq2.html)
49+
6. [`Kraken2`](https://ccb.jhu.edu/software/kraken2/) -> [`Bracken`](https://ccb.jhu.edu/software/bracken/) on unaligned sequences; _optional_
4950
15. Pseudoalignment and quantification ([`Salmon`](https://combine-lab.github.io/salmon/) or ['Kallisto'](https://pachterlab.github.io/kallisto/); _optional_)
5051
16. Present QC for raw read, alignment, gene biotype, sample similarity, and strand-specificity checks ([`MultiQC`](http://multiqc.info/), [`R`](https://www.r-project.org/))
5152

docs/images/bracken-top-n-plot.png

54.7 KB
Loading
10.1 KB
Loading

0 commit comments

Comments
 (0)