Skip to content

Commit

Permalink
Updated path in test_14.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
johausmann committed Oct 5, 2023
1 parent 7b0482e commit 5e90601
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/scripts/test_14.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ output=tests/output/test14
nextflow main.nf -profile conda --name test_data \
--output $output \
--reference_generate \
--reference reference/Sars_cov_2.ASM985889v3.dna.toplevel.fa \
--gff reference/Sars_cov_2.ASM985889v3.101.gff3 \
--reference $(pwd)/reference/Sars_cov_2.ASM985889v3.dna.toplevel.fa \
--gff $(pwd)/reference/Sars_cov_2.ASM985889v3.101.gff3 \
--snpeff_organism Sars_cov_2

# Test reference genome related output
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/test_15.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source bin/assert.sh
output=tests/output/test15
nextflow main.nf -profile conda --name test_data \
--output $output \
--vcf tests/test_data/test_data.lofreq.vcf \
--vcf $(pwd)/tests/test_data/test_data.lofreq.vcf \
--lineage_mode

test -s $output/test_data.input.fasta || { echo "Missing VCF2FASTA fasta file (lineage mode with vcf input)!"; exit 1; }
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/test_16.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source bin/assert.sh
output=tests/output/test15
nextflow main.nf -profile conda --name test_data \
--output $output \
--fasta tests/test_data/test_data.fasta \
--fasta $(pwd)/tests/test_data/test_data.fasta \
--lineage_mode

test -s $output/test_data.assembly.pangolin.csv || { echo "Missing pangolin output file (lineage mode with vcf input)!"; exit 1; }
Expand Down

0 comments on commit 5e90601

Please sign in to comment.