Skip to content
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
mkdir -p $NXF_SINGULARITY_LIBRARYDIR

- name: Cache pdiff
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
uses: actions/cache@v4 # v4
id: cache-pip-pdiff
with:
path: ~/.cache/pip
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### `Changed`

- [#103](https://github.com/nf-core/riboseq/pull/103) - Updated the JSON schema to make input validation stricter([@andreirie](https://github.com/andreirie))
- [#104](https://github.com/nf-core/riboseq/pull/104) - Updated SortMeRNA params to lower memory usage by not looking for best alignment [@jackcurragh](https://github.com/jackcurragh)

### `Fixed`

Expand Down
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ if (!params.skip_bbsplit) {
if (params.remove_ribo_rna) {
process {
withName: '.*:FASTQ_QC_TRIM_FILTER_SETSTRANDEDNESS:SORTMERNA' {
ext.args = '--num_alignments 1 -v --index 0'
ext.args = '--no-best -v --index 0'
publishDir = [
[
path: { "${params.outdir}/preprocessing/sortmerna" },
Expand Down
Loading