{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"name":"Python_course_2021_exercises_G.ipynb","provenance":[],"authorship_tag":"ABX9TyN8UZbswpB0LFtSKu6oqjWx"},"kernelspec":{"name":"python3","display_name":"Python 3"}},"cells":[{"cell_type":"markdown","metadata":{"id":"ehDzitPJRWMi"},"source":["# Python course 2021 - Exercises G"]},{"cell_type":"markdown","metadata":{"id":"zaUOHYyFRXP9"},"source":["## Part1 - easygui"]},{"cell_type":"markdown","metadata":{"id":"poOraNGORZmI"},"source":["\r\n","\r\n","---\r\n","1.1) Write a script to handle input of primer names and sequences! All information should be saved in a multiple FASTA file.\r\n"]},{"cell_type":"code","metadata":{"id":"0PsA0s6zRiFJ"},"source":[""],"execution_count":null,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"HSo3WWsTRiP9"},"source":["\r\n","\r\n","---\r\n","1.2) Write a script to return a matching primer sequence from a FASTA file based on a given primer name.\r\n"]},{"cell_type":"code","metadata":{"id":"cI5tRUFgRqtG"},"source":[""],"execution_count":null,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"j04uPl8rRq0w"},"source":["\r\n","\r\n","---\r\n","1.3) Write a script to combine both functionalities: return primer sequence, if name is already present OR generate new entry if primer is novel.\r\n"]},{"cell_type":"code","metadata":{"id":"QRh4qD7JR1TG"},"source":[""],"execution_count":null,"outputs":[]}]}
\ No newline at end of file
%% Cell type:markdown id: tags:
# Python course 2021 - Exercises G
%% Cell type:markdown id: tags:
## Part1 - easygui
%% Cell type:markdown id: tags:
---
1.1) Write a script to handle input of primer names and sequences! All information should be saved in a multiple FASTA file.
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.2) Write a script to return a matching primer sequence from a FASTA file based on a given primer name.
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.3) Write a script to combine both functionalities: return primer sequence, if name is already present OR generate new entry if primer is novel.