Skip to content
Snippets Groups Projects
Commit 9a984d75 authored by petkoa97's avatar petkoa97
Browse files

changed readme

parent 29e944d9
No related branches found
No related tags found
No related merge requests found
# THIS IS THE POWER RANGERS REPO
### This is stolen from https://github.com/SGSSGene/ImplementingSearch
# ImplementingSearch # ImplementingSearch
This is an exercise to demonstrate the power of Suffix-Array and FM-Index based searching. This is an exercise to demonstrate the power of Suffix-Array and FM-Index based searching.
......
...@@ -29,17 +29,13 @@ void findOccurences(std::vector<seqan3::dna5> const& ref, std::vector<seqan3::dn ...@@ -29,17 +29,13 @@ void findOccurences(std::vector<seqan3::dna5> const& ref, std::vector<seqan3::dn
}else if(j=m-1) }else if(j=m-1)
{ {
std::cout << "Infix found at position: " << i <<std::endl; std::cout << "Infix found at position: " << i <<std::endl;
// std::cout << i << std::endl;
// std::cout << "\n" << std::endl;
total_count+=1; total_count+=1;
} }
} }
if(total_count> 10){
break;
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment