From 7871ee074ee9c361f20a643eb1742e9845763eb2 Mon Sep 17 00:00:00 2001 From: Harshil Patel Date: Thu, 28 Apr 2022 17:47:30 +0100 Subject: [PATCH] Fix #814 --- CHANGELOG.md | 13 +++++++------ README.md | 6 ++++++ nextflow_schema.json | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92f63f287..44f9b4bdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### :warning: Major enhancements - Updated default STAR version to latest available (`2.7.10a`; see [#808](https://github.com/nf-core/rnaseq/issues/808])) -- Vanilla Linux Docker container changed from `biocontainers/biocontainers:v1.2.0_cv1` to `ubuntu:20.04` (see [#764](https://github.com/nf-core/rnaseq/issues/764])) +- Vanilla Linux Docker container changed from `biocontainers/biocontainers:v1.2.0_cv1` to `ubuntu:20.04` to fix issues observed on GCP (see [#764](https://github.com/nf-core/rnaseq/issues/764])) ### Enhancements & fixes @@ -18,17 +18,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [[#799](https://github.com/nf-core/rnaseq/issues/799)] - Issue with using `--retain_unpaired` with the `FASTQC_UMITOOLS_TRIMGALORE:TRIMGALORE` module - [[#802](https://github.com/nf-core/rnaseq/issues/802)] - `--bam_csi_index` error generated if `--skip_alignment` specified - [[#808](https://github.com/nf-core/rnaseq/issues/808)] - Auto-detect usage of Illumina iGenomes reference +- [[#814](https://github.com/nf-core/rnaseq/issues/814)] - Use decimal values for `--min_mapped_reads` - Updated pipeline template to [nf-core/tools 2.3.2](https://github.com/nf-core/tools/releases/tag/2.3.2) ### Software dependencies Note, since the pipeline is now using Nextflow DSL2, each process will be run with its own [Biocontainer](https://biocontainers.pro/#/registry). This means that on occasion it is entirely possible for the pipeline to be using different versions of the same tool. However, the overall software dependency changes compared to the last release have been listed below for reference. -| Dependency | Old version | New version | -| ------------- | ----------- | ----------- | -| `samtools` | 1.14 | 1.15.1 | -| `star` | 2.6.1d | 2.7.10a | -| `stringtie` | 2.1.7 | 2.2.1 | +| Dependency | Old version | New version | +| ----------- | ----------- | ----------- | +| `samtools` | 1.14 | 1.15.1 | +| `star` | 2.6.1d | 2.7.10a | +| `stringtie` | 2.1.7 | 2.2.1 | > **NB:** Dependency has been **updated** if both old and new version information is present. > **NB:** Dependency has been **added** if just the new version information is present. diff --git a/README.md b/README.md index eb9244228..f9083e6e0 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,12 @@ On release, automated continuous integration tests run the pipeline on a [full-s The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It uses Docker/Singularity containers making installation trivial and results highly reproducible. The [Nextflow DSL2](https://www.nextflow.io/docs/latest/dsl2.html) implementation of this pipeline uses one container per process which makes it much easier to maintain and update software dependencies. Where possible, these processes have been submitted to and installed from [nf-core/modules](https://github.com/nf-core/modules) in order to make them available to all nf-core pipelines, and to everyone within the Nextflow community! +## Online videos + +A short talk about the history, current status and functionality on offer in this pipeline was given on [8th February 2022](https://nf-co.re/events/2022/bytesize-32-nf-core-rnaseq) as part of the nf-core/bytesize series. + +You can find numerous talks on the [nf-core events page](https://nf-co.re/events) from various topics including writing pipelines/modules in Nextflow DSL2, using nf-core tooling, running nf-core pipelines as well as more generic content like contributing to Github. Please check them out! + ## Pipeline summary The SRA download functionality has been removed from the pipeline (`>=3.2`) and ported to an independent workflow called [nf-core/fetchngs](https://nf-co.re/fetchngs). You can provide `--nf_core_pipeline rnaseq` when running nf-core/fetchngs to download and auto-create a samplesheet containing publicly available samples that can be accepted directly as input by this pipeline. diff --git a/nextflow_schema.json b/nextflow_schema.json index 95aa6fb5b..3c0229840 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -374,7 +374,7 @@ "help_text": "See [Salmon docs](https://salmon.readthedocs.io/en/latest/library_type.html)." }, "min_mapped_reads": { - "type": "integer", + "type": "number", "default": 5, "fa_icon": "fas fa-percentage", "description": "Minimum percentage of uniquely mapped reads below which samples are removed from further processing.",