From 2dcf215b6672e8e1e1212bb2d53e2313d99147e8 Mon Sep 17 00:00:00 2001 From: Marcel Martin Date: Tue, 30 Apr 2024 13:46:54 +0200 Subject: [PATCH] Test multi-block gzip files as input (Concatenated gzip files) --- tests/run.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/run.sh b/tests/run.sh index 32efab69..4df89aab 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -110,4 +110,10 @@ strobealign -C --no-PG --rg-id=1 --rg=SM:sample --rg=LB:library tests/phix.fasta diff tests/phix.tags.sam with-tags.sam rm with-tags.sam +# Multi-block gzip +( head -n 4 tests/phix.1.fastq | gzip ; tail -n +5 tests/phix.1.fastq | gzip ) > multiblock.fastq.gz +strobealign --no-PG --eqx --rg-id 1 --rg SM:sample --rg LB:library tests/phix.fasta multiblock.fastq.gz > multiblock.sam +diff tests/phix.se.sam multiblock.sam +rm multiblock.fastq.gz multiblock.sam + echo "Success"