Update tests/software/samtools/faidx/main.nf

Co-authored-by: Maxime Garcia <maxime.garcia@scilifelab.se>
This commit is contained in:
Patrick Hüther 2021-02-17 17:24:50 +01:00 committed by GitHub
parent a156bdfc03
commit 0cbe0a4173
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,8 +6,5 @@ include { SAMTOOLS_FAIDX } from '../../../../software/samtools/faidx/main.nf' ad
workflow test_samtools_faidx {
def input = []
input = file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true)
SAMTOOLS_FAIDX ( input )
SAMTOOLS_FAIDX ( file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) )
}