Sequence 1.1.1 ATGCGCGCGATAAGGCGCTA
ATATTATAGCGCGCGCGCGGATATATATATATATATATATT
Sequence 1.2.2 ATATGCGCGCGCGCGCGGCG
ACCCCGCGCGCGCGCGGCGCGATATATATATATATATATATT
Sequence 2.1.1 ATTCGCGCGAGTATAGCGGCG

NOW,I would like to remove the last digit from each of the line that starts with '>'. For example, in this first line, i would like to remove '.1' (rightmost) and in second instance i would like to remove '.2' and then write the rest of the file to a new file. Thanks,

link|improve this question
2  
This will get closed. Just edit your other question. – Triptych Aug 14 '09 at 16:51
stackoverflow.com/questions/1278664/… I think Arshan needs to read up on parsing a bit. – Steve B. Aug 14 '09 at 16:52
This looks a LOT like a homework I had to do. Are you from quebec by any chance ;) – Silence Aug 14 '09 at 18:07
feedback

closed as exact duplicate by Steve B., Triptych, Dominic Rodger, Robert Harvey, Nadia Alramli Aug 14 '09 at 16:53

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

import re

input_file = open('in')
output_file = open('out', 'w')

for line in input_file:
    line = re.sub(r'(\d+[.]\d+)[.]\d+', r'\1', line)
    output_file.write(line)
link|improve this answer
Thanks so much. It worked. – Voldemort Aug 14 '09 at 17:17
One issue left please. It is working when I have 1.9.1 etc so it removes last digit but when I have 2.10.1, it does not work. – Voldemort Aug 14 '09 at 17:18
Resloved. Thank you. – Voldemort Aug 14 '09 at 17:38
I fixed it so it works with numbers with more than one digit. – Roberto Bonvallet Aug 14 '09 at 21:35
feedback