https://github.com/ZhiGroup/bi-PBWT
Raw File
Tip revision: d9cc2d61fd836d1f5193699438367e3306fd5735 authored by Ardalan Naseri on 22 November 2023, 04:41:46 UTC
Update run.sh
Tip revision: d9cc2d6
Makefile
all: PBWT rPBWT

PBWT: PBWT.cpp
	g++ -std=c++17 -Wshadow -Wall -o PBWT PBWT.cpp -O2 -Wno-unused-result

rPBWT: rPBWT.cpp
	g++ -std=c++17 -Wshadow -Wall -o rPBWT rPBWT.cpp -O2 -Wno-unused-result

clean:
	rm -f PBWT rPBWT

.PHONY: all clean 
back to top