From 26ce23d07b433041d1fc99556926c02cb9094996 Mon Sep 17 00:00:00 2001 From: Bianca Frommer <frommer@cebitec.uni-bielefeld.de> Date: Mon, 21 Mar 2022 11:04:27 +0100 Subject: [PATCH] Upload New File --- Exercises/Python_course_2021_exercises_D.ipynb | 1 + 1 file changed, 1 insertion(+) create mode 100644 Exercises/Python_course_2021_exercises_D.ipynb diff --git a/Exercises/Python_course_2021_exercises_D.ipynb b/Exercises/Python_course_2021_exercises_D.ipynb new file mode 100644 index 0000000..4f2c94b --- /dev/null +++ b/Exercises/Python_course_2021_exercises_D.ipynb @@ -0,0 +1 @@ +{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"name":"Python_course_2021_exercises_D.ipynb","provenance":[],"collapsed_sections":[],"authorship_tag":"ABX9TyNjSyvLh7SDHkiQSK3gBPn/"},"kernelspec":{"name":"python3","display_name":"Python 3"}},"cells":[{"cell_type":"markdown","metadata":{"id":"xqfYLmi0LWEl"},"source":["# Python course 2021 - Exercises D"]},{"cell_type":"markdown","metadata":{"id":"LRZcpmP8LaR_"},"source":["## Part1 - writing files"]},{"cell_type":"markdown","metadata":{"id":"NDIaKYRcLfz1"},"source":["\n","\n","---\n","1.1) Read the file AtCol0_Exons.fasta and write all headers (starting with '>') into a new file!\n","\n"]},{"cell_type":"code","metadata":{"id":"aO4lTjReLsDC"},"source":[""],"execution_count":null,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"ddWzYDHlLsMN"},"source":["\n","\n","---\n","1.2) Read the file AtCol0_Exons.fasta and write the following:\n","* Line if it is a header\n","* Length of line if it is a sequence line\n"]},{"cell_type":"code","metadata":{"id":"HAaoquFmL4jV"},"source":[""],"execution_count":null,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"yvanoP6kL4rn"},"source":["\n","\n","---\n","1.3) Calculate the number of sequences, the cumulative length and the average length in a new file! Are they matching the values of the original file?\n"]},{"cell_type":"code","metadata":{"id":"N5lQi7dyMEXf"},"source":[""],"execution_count":null,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"L4KLtwRJMEgM"},"source":["\n","\n","---\n","1.4) Write sequences into a new file if their length is a multiple of 10!\n"]},{"cell_type":"code","metadata":{"id":"_87Mx4EUMKw9"},"source":[""],"execution_count":null,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"oOKcgJ_eMTgE"},"source":["## Part2 - characters"]},{"cell_type":"markdown","metadata":{"id":"MMM8BTO3MgXN"},"source":["\n","\n","---\n","2.1) Read the file AtCol0_Exons.fasta and write the following:\n","* Only Arabidopsis Gene Identifier (e.g. AT1G01010)\n","* Gene Identifier, exon name, exon length (tab-delimited)\n","\n","\n"]},{"cell_type":"code","metadata":{"id":"oiHgx5jQMyNX"},"source":[""],"execution_count":null,"outputs":[]}]} \ No newline at end of file -- GitLab