mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Fix/samtools flagstat (#1979)
* fix samtools stats thread usage * flagstat: fix threads
This commit is contained in:
parent
f4eab79459
commit
bbb99cb8d6
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
process SAMTOOLS_FLAGSTAT {
|
||||
tag "$meta.id"
|
||||
label 'process_low'
|
||||
label 'process_single'
|
||||
|
||||
conda (params.enable_conda ? "bioconda::samtools=1.15.1" : null)
|
||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||
|
@ -23,7 +23,7 @@ process SAMTOOLS_FLAGSTAT {
|
|||
"""
|
||||
samtools \\
|
||||
flagstat \\
|
||||
--threads ${task.cpus-1} \\
|
||||
--threads ${task.cpus} \\
|
||||
$bam \\
|
||||
> ${prefix}.flagstat
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
- name: samtools flagstat test_samtools_flagstat
|
||||
command: nextflow run ./tests/modules/samtools/flagstat -entry test_samtools_flagstat -c ./tests/config/nextflow.config -c ./tests/modules/samtools/flagstat/nextflow.config
|
||||
tags:
|
||||
- samtools
|
||||
- samtools/flagstat
|
||||
- samtools
|
||||
files:
|
||||
- path: output/samtools/test.flagstat
|
||||
md5sum: 4f7ffd1e6a5e85524d443209ac97d783
|
||||
|
|
Loading…
Reference in a new issue