I am working with DNA sequences of length 25 (see examples below). I have a list of 230,000 and need to look for each sequence in the entire genome (toxoplasma gondii parasite). I am not sure how large the genome is, but …
I would like to write a regex for searching for the existence of some words, but their order of appearance doesn't matter.
For example, search for "Tim" and "stupid". My regex is Tim.*stupid|stupid.*Tim. But is it possible …