Hi,
I need to generate the strings STA and STB.
STA and STB are strings of length 10, and each one can contain only the characters A,T,G or C.
I have to generate all possible combinations of STA, and depending on STA, I generate STB.
The ways is that the character A is always associated with T and viceversa and G with C and viceversa.
so it is possible combinations like:
STA: ATGC...
STB: TACG...
or
STA: GTTA...
STB: CAAT...
and so on.
I wonder what would be the best way of doing this using bash or python
Thanks