chores: remove fasta file from bwamem2 mem process

This commit is contained in:
MaxUlysse 2021-02-12 16:00:59 +01:00
parent 0afddf6ca4
commit 9c98194d3c
2 changed files with 2 additions and 5 deletions

View file

@ -21,7 +21,6 @@ process BWAMEM2_MEM {
input:
tuple val(meta), path(reads)
path index
path fasta
output:
tuple val(meta), path("*.bam"), emit: bam

View file

@ -15,8 +15,7 @@ workflow test_bwamem2_mem_single_end {
BWAMEM2_MEM (
input,
file("${launchDir}/tests/data/index/E_coli/bwamem2/", checkIfExists: true),
file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true)
file("${launchDir}/tests/data/index/E_coli/bwamem2/", checkIfExists: true)
)
}
@ -32,7 +31,6 @@ workflow test_bwamem2_mem_paired_end {
BWAMEM2_MEM (
input,
file("${launchDir}/tests/data/index/E_coli/bwamem2/", checkIfExists: true),
file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true)
file("${launchDir}/tests/data/index/E_coli/bwamem2/", checkIfExists: true)
)
}