Maybe I miss something crucial, but if I understood correctly you are looking for exact matches of TATATAA or TATAAAA in a short sequence, what about just getting the piece of DNA and cntrl-F using your favorite text editor?
I wrote a command-line genome browser, ASCIIGenome, that may be handy in cases like this to find sequence motifs in a reference fasta file and show them together with an annotation file.
First load the reference sequence and an annotation file (this can be a remote file. Fasta file must be indexed):
find ENSG00000168487
grep -i \tgene\t.*ENSG00000168487 gff3
seqRegex -iupac TATAWAA
zo 8
print seqRegex
seqRegex > matches.bed
save matches.png
Explained: Find the gene ENSG00000168487, for clarity only show the "gene" feature (grep ...). Then search the motif TATAWAA as iupac code, zoom out x times (e.g. 8 times) to see some matches in the sequence.
The matches can be show on screen (print seqRegex) and saved to file (print seqRegex). Finally save a picture as png.
Gene locations were stored in sequence header.
For exmaple, 2_68865481-68871517:-_usf:1000 means 1000bp upstream flanking sequence of region 68865481-68871517 in negative strand of chromosome 2.
Maybe I miss something crucial, but if I understood correctly you are looking for exact matches of TATATAA or TATAAAA in a short sequence, what about just getting the piece of DNA and cntrl-F using your favorite text editor?
Yeah you are right. I do that so, but i thought i missed something. Thank you.