Bioinformatics Internship Task Portal Access
Kindly mark your attendance here : Click here
Kindly submit your Doubts here (Regarding any task ): Click here
Hi Interns ,
Welcome to the Internship Task Portal of Embedded systems technologies .
Here you will get all the intimations regarding your tasks , sessions , assignments and any updated briefing .
(The information and content provided in this portal is purely confidential and is under protected surveillance by the technical support team.)
🧬 Python for Bioinformatics – Internship Update
The Python for Bioinformatics Internship is designed to help students build strong foundations in programming while applying it to real-world biological data analysis. This program focuses on combining Python skills with bioinformatics concepts such as DNA sequence analysis, string manipulation, and data processing.
Throughout the internship, participants will:
- Learn Python basics tailored for biological applications
- Work with DNA/RNA sequences using string operations
- Perform sequence analysis like GC content and base counting
- Handle bioinformatics file formats (such as FASTA)
- Build a mini project to apply their learning
Each task includes:
- 📺 Session-based learning
- 📝 Notes preparation
- 💻 Hands-on coding practice
- 📤 Submission via Google Forms
By the end of the internship, students will gain practical experience in computational biology and develop skills useful for careers in bioinformatics, data science, and research.
✅ TASK 1: Python Basics for Bioinformatics
🎯 Objective:
Understand basic Python concepts
📺 Session:
Click here to Watch your uploaded session (Python basics)
📝 Task:
Write notes on:
Variables
Data Types
Input/Output
Practice:
Print your name
Take input and display it
💻 Practice Code:
print(“Welcome to Bioinformatics,”, name)
📤 Submission Form:
👉 https://forms.gle/task1-bio-python-basics
✅ TASK 2: Working with DNA Strings
🎯 Objective:
Understand basic Python concepts
📺 Session:
Click here to Watch your uploaded session (Python basics)
📝 Task:
Write notes on:
Variables
Data Types
Input/Output
Practice:
Print your name
Take input and display it
💻 Practice Code:
print(“Length:”, len(dna))
print(“First 5 bases:”, dna[:5])
📤 Submission Form:
👉 https://forms.gle/task1-bio-python-basics
✅ TASK 3: Sequence Analysis Practice
🎯 Objective:
Understand basic Python concepts
📺 Session:
Click here to Watch your uploaded session (Python basics)
📝 Task:
Write notes on:
Variables
Data Types
Input/Output
Practice:
Print your name
Take input and display it
💻 Practice Code:
print(“Length:”, len(dna))
print(“First 5 bases:”, dna[:5])
📤 Submission Form:
👉 https://forms.gle/task1-bio-python-basics
✅ TASK 3: Sequence Analysis Practice
🎯 Objective:
Understand basic Python concepts
📺 Session:
Click here to Watch your uploaded session (Python basics)
📝 Task:
Write notes on:
Variables
Data Types
Input/Output
Practice:
Print your name
Take input and display it
💻 Practice Code:
dna = “ATGCTAGCTA”
print(“A:”, dna.count(“A”))
print(“T:”, dna.count(“T”))
print(“G:”, dna.count(“G”))
print(“C:”, dna.count(“C”))
gc = (dna.count(“G”) + dna.count(“C”)) / len(dna) * 100
print(“GC Content:”, gc)
📤 Submission Form:
👉 https://forms.gle/task1-bio-python-basics
✅ TASK 4: Sequence Analysis Practice
🎯 Objective:
Understand basic Python concepts
📺 Session:
Click here to Watch your uploaded session (Python basics)
📝 Task:
Write notes on:
Variables
Data Types
Input/Output
Practice:
Print your name
Take input and display it
💻 Practice Code:
file = open(“dna.txt”, “r”)
data = file.read()
print(data)
file.close()
📤 Submission Form:
👉 https://forms.gle/task1-bio-python-basics
✅ TASK 5: Sequence Analysis Practice
🎯 Objective:
Understand basic Python concepts
📺 Session:
Click here to Watch your uploaded session (Python basics)
📝 Task:
Write notes on:
Variables
Data Types
Input/Output
Practice:
Print your name
Take input and display it
💻 Practice Code:
dna = input(“Enter DNA sequence: “)
print(“Length:”, len(dna))
gc = (dna.count(“G”) + dna.count(“C”)) / len(dna) * 100
print(“GC Content:”, gc)
print(“Reverse:”, dna[::-1])
