I've got code so far that seems to change letters. However, this is how it should be changed: All G become C. All C become G. All T become A. And all A become T.
This is where my problem is happening. As seen, for example, since T becomes A and A becomes T, the code is just leaving it as a T. Because it's changing it to A and then just changing that same character back to T. I need to make it so it makes all the changes at the same time so it doesn't overlap like that. Same thing with G to C and C to G.
This is a sample of what's inside the text file: GTCGACTGCACTCGCCCCCACGAGAGAACAGTATTTAAGGAGCTGCGAAGGTCCAAGTCATGCATTATTG TCTCAGTGCAGTTGTCAGTTGCAGTTCAGCAGACGGGCTAACGAGTACTTGCATCTCTTCAAATTTACTT AATTGATCAAGTAAGTAGCAAAAGGGCACACAATTGAAGGAAATTCTTGTTTAATTGAATTTATTATGCA
Basically just massive string like that. I need to reverse all letters as outlined above. Likewise, I am trying to count the number of times the following string occurs: "GCAA" before changing the characters.
This is my code so far:
f = open("filename.txt", "r")
from string import maketrans
table = maketrans("G", "C")
table = maketrans("C", "G")
table = maketrans("T", "A")
table = maketrans("A", "t")
print(f.read().translate(maketrans('G','C')))
print(f.read().translate(maketrans('C','G')))
print(f.read().translate(maketrans('T','A')))
print(f.read().translate(maketrans('A','T')))
print(table)
I don't know how I would go about counting anything though, so I haven't gotten to that part yet.