Skip to content
Snippets Groups Projects
Unverified Commit 2555926a authored by Laurent Modolo's avatar Laurent Modolo
Browse files

SNP_calling.nf: change cpus number for bowtie

parent f48326c5
No related branches found
No related tags found
No related merge requests found
......@@ -87,11 +87,11 @@ filter_fasta_files.into{
process index_fasta {
tag "$file_id"
cpus 4
cpus 12
publishDir "results/mapping/index/", mode: 'copy'
input:
set fasta_id, file(fasta) from filtered_fasta_files
set file_id, file(fasta) from filtered_fasta_files
output:
file "*.index*" into index_files
......@@ -109,8 +109,8 @@ fi
process mapping_fastq {
tag "$pair_id"
cpus 4
publishDir "results/mapping/bams/", mode: 'copy'
cpus 12
publishDir "results/mapping/bam/", mode: 'copy'
input:
set pair_id, file(reads) from fastq_files_trim
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment