Give pychopper more threads
This commit is contained in:
parent
9353e23cc9
commit
411290d5a4
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
### Changed
|
||||||
|
- Increase some memory and CPU allocations.
|
||||||
|
|
||||||
## [v1.2.0]
|
## [v1.2.0]
|
||||||
### Added
|
### Added
|
||||||
- Workflow now accepts BAM or FASTQ files as input (using the --bam or --fastq parameters, respectively).
|
- Workflow now accepts BAM or FASTQ files as input (using the --bam or --fastq parameters, respectively).
|
||||||
|
|||||||
4
main.nf
4
main.nf
@ -139,7 +139,7 @@ process preprocess_reads {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
label "isoforms"
|
label "isoforms"
|
||||||
cpus 4
|
cpus params.threads
|
||||||
memory "2 GB"
|
memory "2 GB"
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path('seqs.fastq.gz')
|
tuple val(meta), path('seqs.fastq.gz')
|
||||||
@ -198,7 +198,7 @@ process split_bam{
|
|||||||
|
|
||||||
label 'isoforms'
|
label 'isoforms'
|
||||||
cpus params.threads
|
cpus params.threads
|
||||||
memory "2 GB"
|
memory "4 GB"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(sample_id), path(bam)
|
tuple val(sample_id), path(bam)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user