Skip to content

Commit

Permalink
Parameterize cpus and memory
Browse files Browse the repository at this point in the history
  • Loading branch information
ozlemmuslu authored Feb 4, 2025
1 parent 42e4d79 commit f86e95b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/merge_replicates.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

process MERGE_REPLICATES {
tag "$name"
cpus 1
memory '4g'
cpus "${params.cpus}"
memory "${params.memory}"

conda (params.enable_conda ? 'conda-forge::libgcc-ng=10.3.0 conda-forge::gsl=2.7 bioconda::samtools=1.15.1' : null)

Expand Down Expand Up @@ -37,4 +37,4 @@ process MERGE_REPLICATES {
${normal_merge_cmd}
samtools index ${name}.normal.bam
"""
}
}

0 comments on commit f86e95b

Please sign in to comment.