Skip to content

Commit 5671b65

Browse files
authored
Merge pull request #1009 from nf-core/dev
Dev -> Master for 3.11.2 release
2 parents 287afcf + 7f61509 commit 5671b65

File tree

7 files changed

+29
-9
lines changed

7 files changed

+29
-9
lines changed

CHANGELOG.md

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

6+
## [[3.11.2](https://github.com/nf-core/rnaseq/releases/tag/3.11.2)] - 2023-04-25
7+
8+
### Credits
9+
10+
Special thanks to the following for their contributions to the release:
11+
12+
- [Jonathan Manning](https://github.com/pinin4fjords)
13+
- [Maxime Garcia](https://github.com/maxulysse)
14+
- [Rob Syme](https://github.com/robsyme)
15+
- [W. Lee Pang](https://github.com/wleepang)
16+
17+
Thank you to everyone else that has contributed by reporting bugs, enhancements or in any other way, shape or form.
18+
19+
### Enhancements & fixes
20+
21+
- [[#1003](https://github.com/nf-core/rnaseq/pull/1003)] - `FASTQ_SUBSAMPLE_FQ_SALMON:SALMON_INDEX` is launched multiple times and fails
22+
623
## [[3.11.1](https://github.com/nf-core/rnaseq/releases/tag/3.11.1)] - 2023-03-31
724

825
### Credits

conf/test.config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ params {
1919
max_memory = '6.GB'
2020
max_time = '6.h'
2121

22+
2223
// Input data
24+
// params.test_data_base (default) = 'https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq3/'
2325
input = "${params.test_data_base}/samplesheet/v3.10/samplesheet_test.csv"
2426

2527
// Genome references

modules.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"custom/dumpsoftwareversions": {
1919
"branch": "master",
20-
"git_sha": "b6d4d476aee074311c89d82a69c1921bd70c8180",
20+
"git_sha": "7101db4432d3268b7fcb5b8f75fa0a022dc5561b",
2121
"installed_by": ["modules"]
2222
},
2323
"custom/getchromsizes": {
@@ -77,7 +77,7 @@
7777
},
7878
"qualimap/rnaseq": {
7979
"branch": "master",
80-
"git_sha": "75027bf77472b1f4fd2cdd7e46f83119dfb0f2c6",
80+
"git_sha": "0a9c4eb264cce197707491861ce058a4c79d9c4f",
8181
"installed_by": ["modules"]
8282
},
8383
"rsem/calculateexpression": {

modules/nf-core/custom/dumpsoftwareversions/templates/dumpsoftwareversions.py

100755100644
File mode changed.

modules/nf-core/qualimap/rnaseq/main.nf

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ manifest {
261261
description = """RNA sequencing analysis pipeline for gene/isoform quantification and extensive quality control."""
262262
mainScript = 'main.nf'
263263
nextflowVersion = '!>=22.10.1'
264-
version = '3.11.1'
264+
version = '3.11.2'
265265
doi = 'https://doi.org/10.5281/zenodo.1400710'
266266
}
267267

workflows/rnaseq.nf

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ workflow RNASEQ {
247247
PREPARE_GENOME.out.fasta
248248
.combine(ch_strand_fastq.auto_strand)
249249
.map { it.first() }
250+
.first()
250251
.set { ch_genome_fasta }
251252

252253
FASTQ_SUBSAMPLE_FQ_SALMON (
@@ -321,7 +322,7 @@ workflow RNASEQ {
321322

322323
//
323324
// Get list of samples that failed trimming threshold for MultiQC report
324-
//
325+
//
325326
ch_trim_read_count
326327
.map {
327328
meta, num_reads ->
@@ -332,7 +333,7 @@ workflow RNASEQ {
332333
}
333334
}
334335
.collect()
335-
.map {
336+
.map {
336337
tsv_data ->
337338
def header = ["Sample", "Reads after trimming"]
338339
WorkflowRnaseq.multiqcTsvFromList(tsv_data, header)
@@ -604,7 +605,7 @@ workflow RNASEQ {
604605
ch_pass_fail_mapped
605606
.fail
606607
.collect()
607-
.map {
608+
.map {
608609
tsv_data ->
609610
def header = ["Sample", "STAR uniquely mapped reads (%)"]
610611
WorkflowRnaseq.multiqcTsvFromList(tsv_data, header)
@@ -765,7 +766,7 @@ workflow RNASEQ {
765766
ch_versions = ch_versions.mix(BAM_RSEQC.out.versions)
766767

767768
ch_inferexperiment_multiqc
768-
.map {
769+
.map {
769770
meta, strand_log ->
770771
def inferred_strand = WorkflowRnaseq.getInferexperimentStrandedness(strand_log, 30)
771772
pass_strand_check[meta.id] = true
@@ -775,7 +776,7 @@ workflow RNASEQ {
775776
}
776777
}
777778
.collect()
778-
.map {
779+
.map {
779780
tsv_data ->
780781
def header = [
781782
"Sample",

0 commit comments

Comments
 (0)