granges 0.2.2

A Rust library and command line tool for genomic range operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# does all the bgzip/indexing of test files

.PHONY: clean all

all: test_case_01.fa.gz.fai test_case_01.fa.gz.gzi


test_case_01.fa.gz: test_case_01.fa
	bgzip -c $< > $@


test_case_01.fa.gz.fai test_case_01.fa.gz.gzi: test_case_01.fa.gz
	samtools faidx $< > $@

clean: 
	rm -f test_case_01.fa.gz.fai test_case_01.fa.gz.gzi test_case_01.fa.gz.fai test_case_01.fa.gz