Skip to content

Commit

Permalink
adding mem and cpu for fastqc
Browse files Browse the repository at this point in the history
  • Loading branch information
adigenova committed Sep 21, 2022
1 parent a347b11 commit 48a4b70
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions FastQC.nf
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ params.input_folder = "FASTQ/"
params.output_folder = "."
params.ext = "fastq.gz"
params.multiqc_config = 'NO_FILE'
params.cpu = 2
params.mem = 10
params.cpu = 1
params.mem = 2

log.info ""
log.info "-----------------------------------------------------------------------"
Expand Down Expand Up @@ -92,6 +92,9 @@ if(params.ext=="bam"){
}

process fastqc {
cpus params.cpu
memory params.mem+'G'

tag { fastqc_tag }

publishDir "${params.output_folder}", mode: 'copy'
Expand Down

0 comments on commit 48a4b70

Please sign in to comment.