Skip to content

Commit 3e2c2a5

Browse files
removed hardcoded chromosomes in main.cpp
1 parent fec0274 commit 3e2c2a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ int main(int argc, char* argv[]) {
1616
// unsigned int max_threads = std::thread::hardware_concurrency();
1717
// std::cout << max_threads << " threads" << std::endl;
1818
auto start = std::chrono::high_resolution_clock::now();
19-
std::vector<std::string> chromosomes = {"chr19"}; // "chr1", "chr9",
19+
std::vector<std::string> chromosomes; // = {"chr19"}; // "chr1", "chr9",
2020
// default values (if not provided by user)
2121
int position_tolerance = 20; // [3,5,7,10]
2222
int min_length = 10; //[5, 10]

0 commit comments

Comments
 (0)