Merge branch 'pychop_threads_CW-4010' into 'dev'

Give pychopper more threads

See merge request epi2melabs/workflows/wf-transcriptomes!174
This commit is contained in:
Neil Horner 2024-06-25 14:11:28 +00:00
commit 1fed562746
2 changed files with 6 additions and 2 deletions

View File

@ -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/),
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]
### Added
- Workflow now accepts BAM or FASTQ files as input (using the --bam or --fastq parameters, respectively).

View File

@ -139,7 +139,7 @@ process preprocess_reads {
*/
label "isoforms"
cpus 4
cpus params.threads
memory "2 GB"
input:
tuple val(meta), path('seqs.fastq.gz')
@ -198,7 +198,7 @@ process split_bam{
label 'isoforms'
cpus params.threads
memory "2 GB"
memory "4 GB"
input:
tuple val(sample_id), path(bam)