Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using Python: 1. Write a function called 'back_trans' that takes an RNA sequence as an argument and returns the original DNA sequence. For example, if
Using Python: 1. Write a function called 'back_trans' that takes an RNA sequence as an argument and returns the original DNA sequence. For example, if the RNA sequence is: uaguacua Then the backwards transcribed DNA sequence should be: tagtacta Write a program to prompt the user to enter an RNA sequence and validate the sequence using the function you wrote in lab 5 and display the original DNA sequence. 2. Write a function called 'gc_percent' that takes a DNA sequence as an argument and returns the percentage of the sequence that are 'G' or 'C' nucleotides. For example, if the DNA sequence is: tagtacta Then the function will return 0.25. For this problem, your program must read the DNA sequence from a file called "fasta.txt". The contents of the file are: >monkey tatagctacgtagcaatagcgccgatacg
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started