diff --git a/README.md b/README.md index 462a7a0b7be982c1473d6c9ca61329ab0cc7c229..6a9a056bebd26458540542da792374a47ab2ac65 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# THIS IS THE POWER RANGERS REPO +### This is stolen from https://github.com/SGSSGene/ImplementingSearch + # ImplementingSearch This is an exercise to demonstrate the power of Suffix-Array and FM-Index based searching. diff --git a/src/naive_search.cpp b/src/naive_search.cpp index 2f0a32225820bb6baeaf81b3658ad20ff8974eca..775a63417b8820db75fcfc061dcd38c859414789 100644 --- a/src/naive_search.cpp +++ b/src/naive_search.cpp @@ -29,17 +29,13 @@ void findOccurences(std::vector<seqan3::dna5> const& ref, std::vector<seqan3::dn }else if(j=m-1) { std::cout << "Infix found at position: " << i <<std::endl; - // std::cout << i << std::endl; - // std::cout << "\n" << std::endl; total_count+=1; } } - if(total_count> 10){ - break; - } + } }