Skip to content

Commit 0189ac1

Browse files
Compile an old version of Tabix, and use in validation
1 parent e69af65 commit 0189ac1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

validation-data/Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,14 @@ all: 1kg_2020_chr20.bcf.csi \
3939
# 1000 genomes phase 1
4040
1KG_P1_ALL_URL=http://ftp.1000genomes.ebi.ac.uk/vol1/ftp/phase1/analysis_results/integrated_call_sets/ALL.chr6.integrated_phase1_v3.20101123.snps_indels_svs.genotypes.vcf.gz
4141

42+
old_tabix:
43+
rm -fR tabix old_tabix
44+
git clone https://github.com/samtools/tabix.git
45+
cd tabix && make
46+
cp tabix/tabix ./old_tabix
4247

4348
%.vcf.gz.tbi: %.vcf.gz
44-
tabix $<
49+
./old_tabix $<
4550

4651
%.2.split: %
4752
./split.sh $< 2

0 commit comments

Comments
 (0)