Using python please answer: The regular expression corresponding to…
Question Answered step-by-step Using python please answer: The regular expression corresponding to… Using python please answer:The regular expression corresponding to a potential coding sequence (CDS) is given by: “ATG(?:.{3})*?(?:TAG|TAA|TGA)” Note: it is not necessary to understand the regular expression (this is much more advanced than the examples covered in class). But for an explanation, put the regular expression into https://regex101.com/ and look at the description below: ATG – the start codon, ‘ATG’ (?:.{3})*?- any number of codons (0 or more) (will match as few times as possible, i.e., non-greedy) (?:TAG|TAA|TGA)- matches any of the stop codonsQuestion: Suppose that a file called sequences.fasta contains a large number of sequences in FASTA format. Code a python script that generates a list of the sequences that contain at least one possible CDS. Computer Science Engineering & Technology Python Programming CSC 314 Share QuestionEmailCopy link Comments (0)


