This project was very nice for this hackathon. It inspired for more such science projects with python
You have to write your DNA and it will find out A,T,C,G and GC ratio.
You can build it with python and some commands
Challenges were faced as how are we going to make a science project with Python.
Accomplishments that we're proud of are that we were able to make a science project with python and coding
We learned some new commands and how can we make a subject work with coding.
What's next for Untitled- WE will try to make a more interactive project
CODE FOR THE PROJECT:
Kindly enter your DNA sequence
DNA= input("please enter your DNA sequence below:\n") A= DNA.count("A") T= DNA.count("T") C= DNA.count("C") G= DNA.count("G") print("the number of A in your DNA sequence is :",A) print("the number of T in your DNA sequence is :",T) print("the number of C in your DNA sequence is :",C) print("the number of G in your DNA sequence is :",G) print("the GC ratio of your DNA sequence is:",(G+C)/(G+C+T+A))
Log in or sign up for Devpost to join the conversation.