bwa_perf/main.cpp

15 lines
249 B
C++
Raw Normal View History

#include <iostream>
#include <stdint.h>
#include <stdlib.h>
#include <vector>
#include <sys/time.h>
#include "common.h"
using namespace std;
int main(int argc, char **argv)
{
// main_sa(argc, argv);
main_fmtidx(argc, argv);
return 0;
}