mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
chores: remove fasta file from bwamem2 mem process
This commit is contained in:
parent
0afddf6ca4
commit
9c98194d3c
2 changed files with 2 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue