diff --git a/tests/software/bwa/main.nf b/tests/software/bwa/main.nf index a4dcdbbf..e4b3896e 100644 --- a/tests/software/bwa/main.nf +++ b/tests/software/bwa/main.nf @@ -21,8 +21,7 @@ workflow test_bwa_mem_single_end { BWA_MEM_SE ( input, - file("${launchDir}/tests/data/index/E_coli/bwa/NC_010473.fa.{amb,ann,bwt,pac,sa}", checkIfExists: true), - file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) + file("${launchDir}/tests/data/index/E_coli/bwa/", checkIfExists: true) ) } @@ -38,7 +37,6 @@ workflow test_bwa_mem_paired_end { BWA_MEM_PE ( input, - file("${launchDir}/tests/data/index/E_coli/bwa/NC_010473.fa.{amb,ann,bwt,pac,sa}", checkIfExists: true), - file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) + file("${launchDir}/tests/data/index/E_coli/bwa/", checkIfExists: true) ) }