hsinnan75 / MapCaller

MapCaller – An efficient and versatile approach for short-read alignment and variant detection in high-throughput sequenced genomes
MIT License
30 stars 5 forks source link

Only need to compile libhts.a #17

Closed tseemann closed 4 years ago

tseemann commented 4 years ago

Because you only use the static htslib library, you don't need to compile the dynamic .so ones. This makes it quicker to compile the makefile:

OLD:

htslib:
                $(MAKE) -C src/htslib

NEW:

htslib:
                $(MAKE) -C src/htslib libhts.a
hsinnan75 commented 4 years ago

Thanks. The makefile is updated.