Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

force COLLATE_CUTADAPT_JSONS to run on 1 cpu #21

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ Initial release of QUANTS, created with the [nf-core](https://nf-co.re/) templat

* Collation of cutadapt JSON results into single JSON file
* Collation of SeqKit statistics results into a single TSV file
* Update version of pyQUEST to version 1.1.0
* Improved handling of 0-length reads
* Ability to extract top 50 library-independent counts as FASTA
* Update version of pyQUEST to version 1.1.0
* Improved handling of 0-length reads
* Ability to extract top 50 library-independent counts as FASTA
## 3.0.0.3 - [24th January 2024]

* Hotfix to force COLLATE_CUTADAPT_JSONS to run on 1 cpu
1 change: 1 addition & 0 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@ process {

withName:COLLATE_CUTADAPT_JSONS {
executor = 'local'
cpus = 1
}
}
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ manifest {
description = 'Analysis pipeline for saturation genome editing screens'
mainScript = 'main.nf'
nextflowVersion = '!>=21.10.6'
version = '3.0.0.2'
version = '3.0.0.3'
}

// Function to ensure that resource requirements don't go beyond
Expand Down