studium 0.18.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (821) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3310 -0
  3. data/bin/all_passed_exams +14 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d150 +7 -0
  11. data/bin/d20 +7 -0
  12. data/bin/d25 +7 -0
  13. data/bin/d3 +7 -0
  14. data/bin/d30 +7 -0
  15. data/bin/d5 +7 -0
  16. data/bin/determine_curricula +7 -0
  17. data/bin/display_lecture_url +7 -0
  18. data/bin/exam_registration_at +7 -0
  19. data/bin/exam_statistics +7 -0
  20. data/bin/exams_per_month +9 -0
  21. data/bin/finished_exams_at_this_university +7 -0
  22. data/bin/flashcards +7 -0
  23. data/bin/from_curriculum_id_to_university +9 -0
  24. data/bin/location_to_this_exam_topic.rb +7 -0
  25. data/bin/mandatory_continuous_assessment +7 -0
  26. data/bin/mandatory_upcoming_courses +10 -0
  27. data/bin/n_ECTS +7 -0
  28. data/bin/n_exam_questions_already_answered +15 -0
  29. data/bin/names_of_all_solved_exams +7 -0
  30. data/bin/not_completed_exams +7 -0
  31. data/bin/nquestions +7 -0
  32. data/bin/nsolved +7 -0
  33. data/bin/open_last_exam_question_asked_file +7 -0
  34. data/bin/passed_exams +7 -0
  35. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  36. data/bin/passed_this_exam_on +10 -0
  37. data/bin/pdf_for +7 -0
  38. data/bin/question_answer +7 -0
  39. data/bin/random_exam_topic +7 -0
  40. data/bin/registered_for_this_exam +15 -0
  41. data/bin/report_solved_topics +7 -0
  42. data/bin/return_n_ects_from_this_file +7 -0
  43. data/bin/return_n_questions_solved_in_total +7 -0
  44. data/bin/rti_conflict +7 -0
  45. data/bin/search_for_n_ects +7 -0
  46. data/bin/show_lectures_on_the_commandline +7 -0
  47. data/bin/show_passed_exams_having_this_grade +7 -0
  48. data/bin/show_themes +7 -0
  49. data/bin/solved +9 -0
  50. data/bin/solved_ects +7 -0
  51. data/bin/studienkennzahl +7 -0
  52. data/bin/studium +7 -0
  53. data/bin/studium_actions +7 -0
  54. data/bin/studium_skeleton +7 -0
  55. data/bin/ufind +7 -0
  56. data/bin/upcoming_exams +7 -0
  57. data/bin/week_parser +7 -0
  58. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +85 -0
  59. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  60. data/doc/README.gen +3263 -0
  61. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  62. data/doc/deprecated_components/deprecated_components.md +46 -0
  63. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  64. data/doc/elegant_colours/elegant_colours.md +21 -0
  65. data/doc/statistics/yearly_statistics.md +8 -0
  66. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  67. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  68. data/img/STUDIES.png +0 -0
  69. data/lib/studium/actions/actions.rb +134 -0
  70. data/lib/studium/autoinclude.rb +7 -0
  71. data/lib/studium/base/base.rb +3554 -0
  72. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  73. data/lib/studium/base/html_colours_module.rb +632 -0
  74. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  75. data/lib/studium/c/README.md +2 -0
  76. data/lib/studium/c/a.out +0 -0
  77. data/lib/studium/c/obtain_random_entry.c +11 -0
  78. data/lib/studium/check_and_sanitize/README.md +15 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  81. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  82. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  83. data/lib/studium/check_and_sanitize/check_important_exams.rb +138 -0
  84. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  85. data/lib/studium/check_and_sanitize/correct_all_dates_in_the_file_lecture_information.rb +115 -0
  86. data/lib/studium/check_and_sanitize/date_sanitizer.rb +350 -0
  87. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  88. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  89. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +434 -0
  90. data/lib/studium/colours/colours.rb +1711 -0
  91. data/lib/studium/commandline/commandline.rb +1848 -0
  92. data/lib/studium/constants/constants.rb +2063 -0
  93. data/lib/studium/css/project.css +273 -0
  94. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  95. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  96. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  97. data/lib/studium/curricula/curriculum.rb +213 -0
  98. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  100. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  101. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  102. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  103. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  104. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  107. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  108. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  109. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  110. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  111. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  112. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  113. data/lib/studium/curricula/determine_curricula/report.rb +141 -0
  114. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  115. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  116. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  117. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  118. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  119. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +99 -0
  120. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  121. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  122. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  123. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  124. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +73 -0
  125. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  126. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  127. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  128. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  129. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  130. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  131. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  132. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  133. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  134. data/lib/studium/ects/ects_scanner.rb +141 -0
  135. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  136. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  137. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  138. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +47 -0
  139. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  140. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  141. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  142. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +245 -0
  143. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  144. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  145. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  146. data/lib/studium/ects/solved_ects/reset.rb +50 -0
  147. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  148. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  149. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +116 -0
  150. data/lib/studium/ects/still_missing.rb +129 -0
  151. data/lib/studium/ects/sum_of_ects.rb +144 -0
  152. data/lib/studium/encoding/encoding.rb +109 -0
  153. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  154. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  155. data/lib/studium/exam_topics/advanced_biochemistry +937 -0
  156. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  157. data/lib/studium/exam_topics/advanced_cellbiology +251 -0
  158. data/lib/studium/exam_topics/advanced_chemistry +547 -0
  159. data/lib/studium/exam_topics/advanced_immunology +225 -0
  160. data/lib/studium/exam_topics/advanced_microbiology +49 -0
  161. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +117 -0
  162. data/lib/studium/exam_topics/advanced_virology +273 -0
  163. data/lib/studium/exam_topics/ageing +154 -0
  164. data/lib/studium/exam_topics/agrar_ecology +67 -0
  165. data/lib/studium/exam_topics/agrarmarkt +73 -0
  166. data/lib/studium/exam_topics/agrarphysik +35 -0
  167. data/lib/studium/exam_topics/alcohols +30 -0
  168. data/lib/studium/exam_topics/algorithms +104 -0
  169. data/lib/studium/exam_topics/allergie +76 -0
  170. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  171. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1012 -0
  172. data/lib/studium/exam_topics/aminoacids +469 -0
  173. data/lib/studium/exam_topics/analytische_chemie_1 +134 -0
  174. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  175. data/lib/studium/exam_topics/anatomie +378 -0
  176. data/lib/studium/exam_topics/anorganische_chemie +357 -0
  177. data/lib/studium/exam_topics/anthropologie +239 -0
  178. data/lib/studium/exam_topics/antibodies_and_antigens +790 -0
  179. data/lib/studium/exam_topics/apoptosis +35 -0
  180. data/lib/studium/exam_topics/archaea +112 -0
  181. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  182. data/lib/studium/exam_topics/archaeology +5 -0
  183. data/lib/studium/exam_topics/architecture +8 -0
  184. data/lib/studium/exam_topics/artificial_intelligence +90 -0
  185. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  186. data/lib/studium/exam_topics/audio +11 -0
  187. data/lib/studium/exam_topics/bacteriophages +266 -0
  188. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  189. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  190. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  191. data/lib/studium/exam_topics/basic_virology +1008 -0
  192. data/lib/studium/exam_topics/bauwesen +6 -0
  193. data/lib/studium/exam_topics/betriebssysteme +128 -0
  194. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  195. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +451 -0
  196. data/lib/studium/exam_topics/biochips +80 -0
  197. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  198. data/lib/studium/exam_topics/biofilms +58 -0
  199. data/lib/studium/exam_topics/bioinformatics +523 -0
  200. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  201. data/lib/studium/exam_topics/biologie +152 -0
  202. data/lib/studium/exam_topics/biomarkers +137 -0
  203. data/lib/studium/exam_topics/biomaterials +90 -0
  204. data/lib/studium/exam_topics/biomedical_studies +16 -0
  205. data/lib/studium/exam_topics/biomembranes +6 -0
  206. data/lib/studium/exam_topics/bionik +65 -0
  207. data/lib/studium/exam_topics/biophysik +34 -0
  208. data/lib/studium/exam_topics/biopolymers +10 -0
  209. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  210. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  211. data/lib/studium/exam_topics/birds +5 -0
  212. data/lib/studium/exam_topics/bodenkunde +384 -0
  213. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  214. data/lib/studium/exam_topics/cancerbiology +488 -0
  215. data/lib/studium/exam_topics/cell_cultures +229 -0
  216. data/lib/studium/exam_topics/cellbiology +1011 -0
  217. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  218. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  219. data/lib/studium/exam_topics/cellulose +6 -0
  220. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +210 -0
  221. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  222. data/lib/studium/exam_topics/chemisches_labor +60 -0
  223. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  224. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  225. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  226. data/lib/studium/exam_topics/clinical_microbiology +520 -0
  227. data/lib/studium/exam_topics/computer_science +309 -0
  228. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +15 -0
  229. data/lib/studium/exam_topics/crispr +51 -0
  230. data/lib/studium/exam_topics/cyanobacteria +45 -0
  231. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +598 -0
  232. data/lib/studium/exam_topics/databases_and_sql +126 -0
  233. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +186 -0
  234. data/lib/studium/exam_topics/dna_replication +80 -0
  235. data/lib/studium/exam_topics/ecogenetics +26 -0
  236. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  237. data/lib/studium/exam_topics/ecology +332 -0
  238. data/lib/studium/exam_topics/economy +226 -0
  239. data/lib/studium/exam_topics/electron_microscopy +7 -0
  240. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  241. data/lib/studium/exam_topics/elektrophorese +132 -0
  242. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  243. data/lib/studium/exam_topics/elisa +55 -0
  244. data/lib/studium/exam_topics/embryologie_und_entwicklung +657 -0
  245. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  246. data/lib/studium/exam_topics/enzymes_and_cofactors +395 -0
  247. data/lib/studium/exam_topics/epigenetik +188 -0
  248. data/lib/studium/exam_topics/erste_hilfe +414 -0
  249. data/lib/studium/exam_topics/ethik +143 -0
  250. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +372 -0
  251. data/lib/studium/exam_topics/excel +7 -0
  252. data/lib/studium/exam_topics/fish +19 -0
  253. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  254. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  255. data/lib/studium/exam_topics/forensik +65 -0
  256. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  257. data/lib/studium/exam_topics/fortgeschrittene_genetik +692 -0
  258. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +221 -0
  259. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  260. data/lib/studium/exam_topics/fungi +119 -0
  261. data/lib/studium/exam_topics/genetische_krankheiten +209 -0
  262. data/lib/studium/exam_topics/genexpression +1008 -0
  263. data/lib/studium/exam_topics/genomics_and_metagenomics +290 -0
  264. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +961 -0
  265. data/lib/studium/exam_topics/geochemistry +67 -0
  266. data/lib/studium/exam_topics/geography +9 -0
  267. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  268. data/lib/studium/exam_topics/geometrie +56 -0
  269. data/lib/studium/exam_topics/geschichte +95 -0
  270. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  271. data/lib/studium/exam_topics/glycogen +45 -0
  272. data/lib/studium/exam_topics/glycolysis +118 -0
  273. data/lib/studium/exam_topics/glykomik +131 -0
  274. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  275. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  276. data/lib/studium/exam_topics/hormone +152 -0
  277. data/lib/studium/exam_topics/html +8 -0
  278. data/lib/studium/exam_topics/human_ecology +8 -0
  279. data/lib/studium/exam_topics/hygiene +224 -0
  280. data/lib/studium/exam_topics/imaging_and_microscopy +270 -0
  281. data/lib/studium/exam_topics/immunanalytik +94 -0
  282. data/lib/studium/exam_topics/immunologie +1011 -0
  283. data/lib/studium/exam_topics/informatik +117 -0
  284. data/lib/studium/exam_topics/innate_immunity +52 -0
  285. data/lib/studium/exam_topics/insekten +66 -0
  286. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  287. data/lib/studium/exam_topics/java +624 -0
  288. data/lib/studium/exam_topics/javascript +29 -0
  289. data/lib/studium/exam_topics/klima +6 -0
  290. data/lib/studium/exam_topics/kryptographie +10 -0
  291. data/lib/studium/exam_topics/landtechnik +26 -0
  292. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +224 -0
  293. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  294. data/lib/studium/exam_topics/light_microscopy +19 -0
  295. data/lib/studium/exam_topics/linux_and_unix +36 -0
  296. data/lib/studium/exam_topics/lipids +145 -0
  297. data/lib/studium/exam_topics/macroeconomics +39 -0
  298. data/lib/studium/exam_topics/marketing +53 -0
  299. data/lib/studium/exam_topics/mathematics +311 -0
  300. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  301. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +441 -0
  302. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  303. data/lib/studium/exam_topics/metabolismus +482 -0
  304. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  305. data/lib/studium/exam_topics/microbial_ecology +37 -0
  306. data/lib/studium/exam_topics/microcontrollers +11 -0
  307. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +58 -0
  308. data/lib/studium/exam_topics/mikrobielle_physiologie +313 -0
  309. data/lib/studium/exam_topics/mitochondria +57 -0
  310. data/lib/studium/exam_topics/mixed +287 -0
  311. data/lib/studium/exam_topics/molecular_biology_of_plants +281 -0
  312. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  313. data/lib/studium/exam_topics/nanotechnologie +456 -0
  314. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +247 -0
  315. data/lib/studium/exam_topics/naturstoffe +9 -0
  316. data/lib/studium/exam_topics/netzwerke +63 -0
  317. data/lib/studium/exam_topics/neuroanatomie +25 -0
  318. data/lib/studium/exam_topics/neurobiology +356 -0
  319. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  320. data/lib/studium/exam_topics/nutztierethologie +11 -0
  321. data/lib/studium/exam_topics/object_oriented_modeling +15 -0
  322. data/lib/studium/exam_topics/obstbau +249 -0
  323. data/lib/studium/exam_topics/organische_chemie +1007 -0
  324. data/lib/studium/exam_topics/organische_chemie_2 +137 -0
  325. data/lib/studium/exam_topics/paleobiology +39 -0
  326. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  327. data/lib/studium/exam_topics/patent_law +55 -0
  328. data/lib/studium/exam_topics/pathologie +761 -0
  329. data/lib/studium/exam_topics/pcr +155 -0
  330. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  331. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  332. data/lib/studium/exam_topics/pflanzenanatomie +262 -0
  333. data/lib/studium/exam_topics/pflanzenbau +24 -0
  334. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  335. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  336. data/lib/studium/exam_topics/pharmaceutical_biotechnology +252 -0
  337. data/lib/studium/exam_topics/physik +449 -1
  338. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  339. data/lib/studium/exam_topics/physiology_and_histology +592 -0
  340. data/lib/studium/exam_topics/phytochemie +33 -0
  341. data/lib/studium/exam_topics/plant_biotechnology +132 -0
  342. data/lib/studium/exam_topics/plant_breeding +64 -0
  343. data/lib/studium/exam_topics/plant_development +50 -0
  344. data/lib/studium/exam_topics/populationsgenetik +143 -0
  345. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +198 -0
  346. data/lib/studium/exam_topics/programming +41 -0
  347. data/lib/studium/exam_topics/projektmanagement +226 -0
  348. data/lib/studium/exam_topics/prokaryote_genetics +587 -0
  349. data/lib/studium/exam_topics/protein_engineering +35 -0
  350. data/lib/studium/exam_topics/proteolyse +39 -0
  351. data/lib/studium/exam_topics/proteomik +42 -0
  352. data/lib/studium/exam_topics/protozoans +24 -0
  353. data/lib/studium/exam_topics/prozesstechnik +95 -0
  354. data/lib/studium/exam_topics/psychologie +21 -0
  355. data/lib/studium/exam_topics/python +391 -0
  356. data/lib/studium/exam_topics/quality_management +266 -0
  357. data/lib/studium/exam_topics/rechtsgrundlagen +126 -0
  358. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  359. data/lib/studium/exam_topics/rna_and_dna +535 -0
  360. data/lib/studium/exam_topics/rna_seq +13 -0
  361. data/lib/studium/exam_topics/robotics +12 -0
  362. data/lib/studium/exam_topics/ruby +240 -0
  363. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  364. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  365. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  366. data/lib/studium/exam_topics/sexualbiologie +327 -0
  367. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +215 -0
  368. data/lib/studium/exam_topics/sozialbiologie +17 -0
  369. data/lib/studium/exam_topics/soziologie +5 -0
  370. data/lib/studium/exam_topics/splicing_exons_and_introns +67 -0
  371. data/lib/studium/exam_topics/sport_und_sportverletzungen +6 -0
  372. data/lib/studium/exam_topics/statistik +306 -0
  373. data/lib/studium/exam_topics/stemcells +182 -0
  374. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  375. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  376. data/lib/studium/exam_topics/strukturbiologie +445 -0
  377. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  378. data/lib/studium/exam_topics/systematische_zoologie +446 -0
  379. data/lib/studium/exam_topics/technical_ecology +144 -0
  380. data/lib/studium/exam_topics/technik +5 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +43 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +102 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +40 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +32 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +508 -0
  398. data/lib/studium/exam_topics/transcription +188 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +155 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +253 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +79 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +144 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +338 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  422. data/lib/studium/exams/ask_random_question.rb +195 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/average_grade/average_grade.rb +404 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  426. data/lib/studium/exams/cycle.rb +291 -0
  427. data/lib/studium/exams/dataset/dataset.rb +126 -0
  428. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  429. data/lib/studium/exams/exam/exam.rb +130 -0
  430. data/lib/studium/exams/exam_bubble/exam_bubble.rb +444 -0
  431. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  432. data/lib/studium/exams/exam_question/README.md +3 -0
  433. data/lib/studium/exams/exam_question/exam_question.rb +434 -0
  434. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  435. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  436. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  437. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  438. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  439. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  440. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  441. data/lib/studium/exams/exam_topics.rb +194 -0
  442. data/lib/studium/exams/exams.rb +20 -0
  443. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2442 -0
  444. data/lib/studium/exams/exams_this_week.rb +182 -0
  445. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  446. data/lib/studium/exams/frozen.rb +36 -0
  447. data/lib/studium/exams/last_exams/last_exams.rb +479 -0
  448. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  449. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1358 -0
  450. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  451. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  452. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  453. data/lib/studium/exams/next_exam.rb +106 -0
  454. data/lib/studium/exams/next_exams.rb +378 -0
  455. data/lib/studium/exams/not_completed/README.md +5 -0
  456. data/lib/studium/exams/not_completed/not_completed.rb +143 -0
  457. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  460. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  461. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  462. data/lib/studium/exams/question_answer/question_answer.rb +2936 -0
  463. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +379 -0
  464. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  465. data/lib/studium/exams/repeat_last_question.rb +78 -0
  466. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  467. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  468. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +114 -0
  469. data/lib/studium/exams/show_exams_for/show_exams_for.rb +172 -0
  470. data/lib/studium/exams/show_themes/constants.rb +28 -0
  471. data/lib/studium/exams/show_themes/menu.rb +61 -0
  472. data/lib/studium/exams/show_themes/misc.rb +538 -0
  473. data/lib/studium/exams/show_themes/reset.rb +62 -0
  474. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  475. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1537 -0
  476. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  477. data/lib/studium/exams/solved/solved.rb +434 -0
  478. data/lib/studium/exams/timetable/constants.rb +142 -0
  479. data/lib/studium/exams/timetable/timetable.rb +448 -0
  480. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  481. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +555 -0
  482. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  483. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  484. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  485. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  486. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  487. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  488. data/lib/studium/graphviz/README.md +4 -0
  489. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  490. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  491. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +40 -0
  492. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +191 -0
  493. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  494. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  495. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  496. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  497. data/lib/studium/gui/jruby/exam_trainer/exam_trainer.rb +637 -0
  498. data/lib/studium/gui/jruby/show_upcoming_exams/show_upcoming_exams.rb +85 -0
  499. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +347 -0
  500. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +305 -0
  501. data/lib/studium/gui/shared_code/exam_trainer/exam_trainer_widget_module.rb +0 -0
  502. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +0 -0
  503. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +129 -0
  504. data/lib/studium/gui/universal_widgets/curriculum_viewer/curriculum_viewer.rb +549 -0
  505. data/lib/studium/gui/universal_widgets/ects_per_university/ects_per_university.rb +302 -0
  506. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.config +6 -0
  507. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.rb +3266 -0
  508. data/lib/studium/gui/universal_widgets/exam_trainer/manifest.yml +12 -0
  509. data/lib/studium/gui/universal_widgets/expand_time_range/expand_time_range.rb +309 -0
  510. data/lib/studium/gui/universal_widgets/information_about_a_lecture/information_about_a_lecture.rb +242 -0
  511. data/lib/studium/gui/universal_widgets/show_upcoming_exams/show_upcoming_exams.rb +252 -0
  512. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  513. data/lib/studium/images/outdated.png +0 -0
  514. data/lib/studium/images/small_logos/DNA.png +0 -0
  515. data/lib/studium/images/small_logos/README.md +2 -0
  516. data/lib/studium/images/small_logos/solved.png +0 -0
  517. data/lib/studium/images/studies_favicon.png +0 -0
  518. data/lib/studium/java/README.md +5 -0
  519. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  520. data/lib/studium/java/studium/Base.java +123 -0
  521. data/lib/studium/java/studium/Constants.java +122 -0
  522. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  523. data/lib/studium/java/studium/Mkdir.java +13 -0
  524. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  525. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  526. data/lib/studium/java/studium/Solved.java +112 -0
  527. data/lib/studium/java/studium/Test.java +60 -0
  528. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  529. data/lib/studium/java/studium/studium/Base.class +0 -0
  530. data/lib/studium/java/studium/studium/Constants.class +0 -0
  531. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  532. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  533. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  534. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  535. data/lib/studium/java/studium/studium/Solved.class +0 -0
  536. data/lib/studium/java/studium/studium/Test.class +0 -0
  537. data/lib/studium/jobs/jobs.rb +80 -0
  538. data/lib/studium/logging/README.md +2 -0
  539. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  540. data/lib/studium/logging/html_log_directory.rb +42 -0
  541. data/lib/studium/logging/log_directory.rb +112 -0
  542. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  543. data/lib/studium/parsers/README.md +2 -0
  544. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  545. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  546. data/lib/studium/project/project.rb +88 -0
  547. data/lib/studium/requires/common_popular_requires.rb +37 -0
  548. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  549. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  550. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  551. data/lib/studium/requires/require_encoding.rb +7 -0
  552. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  553. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  554. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  555. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  556. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  557. data/lib/studium/requires/require_the_parsers.rb +28 -0
  558. data/lib/studium/requires/require_the_studium_constants.rb +7 -0
  559. data/lib/studium/requires/require_the_studium_project.rb +72 -0
  560. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  561. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  562. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  563. data/lib/studium/requires/require_yaml.rb +7 -0
  564. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  565. data/lib/studium/requires/with_GUI.rb +13 -0
  566. data/lib/studium/requires/www_mode.rb +17 -0
  567. data/lib/studium/statistics/README.md +4 -0
  568. data/lib/studium/statistics/best_exam_months.rb +92 -0
  569. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +423 -0
  570. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  571. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +117 -0
  572. data/lib/studium/statistics/max_stats.rb +169 -0
  573. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  574. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  575. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  576. data/lib/studium/statistics/show_exam_statistics.rb +75 -0
  577. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  578. data/lib/studium/statistics/top_stats.rb +126 -0
  579. data/lib/studium/toplevel_methods/e_and_esystem.rb +34 -0
  580. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3986 -0
  581. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +31 -0
  582. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11611 -0
  583. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  584. data/lib/studium/toplevel_methods/roebe.rb +16 -0
  585. data/lib/studium/toplevel_methods/runmode.rb +45 -0
  586. data/lib/studium/toplevel_methods/toplevel_methods.rb +7295 -0
  587. data/lib/studium/universities_in_austria/README.md +2 -0
  588. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  589. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  590. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  591. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  592. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  593. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  594. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  595. data/lib/studium/university_course/university_course.rb +409 -0
  596. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  597. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  598. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  599. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  600. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  601. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  602. data/lib/studium/utility_scripts/autogeneration/autogeneration.rb +158 -0
  603. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +100 -0
  604. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +153 -0
  605. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  606. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  607. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  608. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  609. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  610. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  611. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  612. data/lib/studium/utility_scripts/create/README.md +2 -0
  613. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  614. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  615. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  616. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  617. data/lib/studium/utility_scripts/create_database/create_database.rb +126 -0
  618. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  619. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  620. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  621. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  622. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +171 -0
  623. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  624. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  625. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  626. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  627. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  628. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  629. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  630. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  631. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +353 -0
  632. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  633. data/lib/studium/utility_scripts/holidays/holidays.rb +154 -0
  634. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  635. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  636. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  637. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +427 -0
  638. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  639. data/lib/studium/utility_scripts/moodle/moodle.rb +214 -0
  640. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  641. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  642. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  643. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  644. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  645. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  646. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  647. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  648. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +352 -0
  649. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  650. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  651. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  652. data/lib/studium/utility_scripts/priority_points/priority_points.rb +261 -0
  653. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  654. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  655. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  656. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  657. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  658. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  659. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +129 -0
  660. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  661. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  662. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  663. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  664. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +373 -0
  665. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  666. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +96 -0
  667. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  668. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  669. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  670. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  671. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  672. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  673. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  674. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  675. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +906 -0
  676. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  677. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  678. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3160 -0
  679. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  680. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  681. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  682. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  683. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  684. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  685. data/lib/studium/utility_scripts/steop/README.md +4 -0
  686. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  687. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  688. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  689. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  690. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +241 -0
  691. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  692. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  693. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  694. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  695. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  696. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  697. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  698. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  699. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  700. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  701. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  702. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  703. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  704. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  705. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  706. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  707. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  708. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  709. data/lib/studium/version/version.rb +46 -0
  710. data/lib/studium/www/exams/exams.cgi +54 -0
  711. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  712. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  713. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  714. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  715. data/lib/studium/www/sinatra/app.rb +231 -0
  716. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  717. data/lib/studium/www/sinatra/misc.rb +115 -0
  718. data/lib/studium/www/statistics/statistics.cgi +82 -0
  719. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  720. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  721. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  722. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  723. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  724. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  725. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  726. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  727. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  728. data/lib/studium/yaml/current_exams.yml +30 -0
  729. data/lib/studium/yaml/curricula/README.md +39 -0
  730. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  731. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  732. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  733. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  734. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  735. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  736. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  737. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  738. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  739. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  740. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  741. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +134 -0
  742. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  743. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  744. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  745. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  746. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  747. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  748. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  749. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  750. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  751. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  752. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  753. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  754. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  755. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  756. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  757. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  758. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  759. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  760. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  761. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  762. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  763. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  764. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  765. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  766. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  767. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  768. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  769. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  770. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  771. data/lib/studium/yaml/curricula.yml +562 -0
  772. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +2019 -0
  773. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml~ +1983 -0
  774. data/lib/studium/yaml/default_delay.yml +4 -0
  775. data/lib/studium/yaml/default_encoding.yml +1 -0
  776. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  777. data/lib/studium/yaml/editor.yml +1 -0
  778. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  779. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  780. data/lib/studium/yaml/german/README.md +2 -0
  781. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  782. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +264 -0
  783. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  784. data/lib/studium/yaml/important_exams.yml +286 -0
  785. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  786. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  787. data/lib/studium/yaml/lecture_information/lecture_information.yml +66145 -0
  788. data/lib/studium/yaml/log_dir.yml +1 -0
  789. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  790. data/lib/studium/yaml/max_stats/max_stats.yml +262 -0
  791. data/lib/studium/yaml/max_stats.yml +263 -0
  792. data/lib/studium/yaml/meta_themes +1 -0
  793. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  794. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  795. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  796. data/lib/studium/yaml/n_total_questions.yml +1 -0
  797. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  798. data/lib/studium/yaml/roebe/ad_hoc_exam_topics.md +19 -0
  799. data/lib/studium/yaml/roebe/sommersemester_2024_opportunities.md +441 -0
  800. data/lib/studium/yaml/semester_planner/README.md +4 -0
  801. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  802. data/lib/studium/yaml/show_topic.yml +1 -0
  803. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  804. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  805. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  806. data/lib/studium/yaml/week/01_monday.yml +25 -0
  807. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  808. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  809. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  810. data/lib/studium/yaml/week/05_friday.yml +31 -0
  811. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  812. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  813. data/lib/studium/yaml/week/README.md +10 -0
  814. data/lib/studium.rb +5 -0
  815. data/studium.gemspec +82 -0
  816. data/test/testing_colourized_question_and_answer.rb +18 -0
  817. data/test/testing_studium.rb +244 -0
  818. data/test/testing_studium_base_class.rb +31 -0
  819. data/test/testing_the_file_lecture_information.rb +18 -0
  820. data/test/testing_time_component.rb +29 -0
  821. metadata +1042 -0
@@ -0,0 +1,1008 @@
1
+ # =========================================================================== #
2
+ # === Gene expression
3
+ #
4
+ # Genex tag. Gen-Techniques. Genexpression tag.
5
+ # Vor allem mRNA Synthese und differenzielle Genexpression.
6
+ # Auch Translationskontrolle.
7
+ # =========================================================================== #
8
+
9
+ - Kann man mit Hilfe des Y2H-Systems Interaktionen von STATS nachweisen? Nein, da zwei STATs nur dann dimerisieren wenn sie phosphoryliert sind. Die Phosphorylierung und Dimerisierung erfolgt im Cytoplasma, über die JAKs. Ein DNA-bindingdomain-STAT Fusionsprotein hätte also auch bei einer Kernlokalistation, die für das Binden an die DNA benötigt würde, das Problem, dass es in der nicht phosphorylierten Form vorliegt und deswegen nicht mit anderen STAT-Fusionsproteinen interagieren kann Es besteht daher ein Problem zwischen der Phosphorylierung, und der Notwendigkeit im Zellkern vorzuliegen.
10
+ - Nenne einen <one>safety mechanism</one> bei den <two>tRNAs</two>. A: Die Nukleotide in der 3. Position der Anticodon Loop kodieren alle für die selbe Aminosäure wenn die Nukleotide davor G oder C sind. Der Grund ist das 3 Wasserstoffbrückenbindungen zwischen G und C entstehen.
11
+ - Proteine mit <one>Bromodomäne</one> <two>erwerben welche Bindungseigenschaft</two>? A: Sie <one>können an Acetyl-Lysin Seitengruppen binden</one>.
12
+ - <one>eIF2</one> <two>bindet an ...</two>? <one>Methionyl-tRNA</one>.
13
+ - Was sind eigentlich <one>Inteins</one>? <one>Inteins</one> sind <two>Proteine die sich selbst heraus-exzisieren können</two>. Der andere Teil des Proteins, der nicht herausgeschnitten wird, wird Exteine genannt. URL: https://en.wikipedia.org/wiki/Intein
14
+ - What is the <one>effector molecule</one> for the <two>glmS ribozyme</two>? <one>Glucosamine-6-phosphat</one>.
15
+ - <one>Wann</one> erschien das Wort <two>Ribozyme</two> zum ersten Mal? Im Jahre <one>1982</one>.
16
+ - Das <one>src-Protein</one> <two>hat wieviele Untereinheiten</two>? <three>Nenne diese</three>. A: <one>Vier Domänen</one>. (1) <two>Kleine Kinase-Domäne</two> (2) große Kinase-Domäne (3) <two>SH2-Domäne</two>, sowie (4) <two>SH3-Domäne</two>
17
+ - <one>What auxiliary factor</one> does <two>RNaseP</two> <three>require for cleavage</three>? <one>Mg²⁺ Ion</one>.
18
+ - <one>Wie groß</one> (<two>in n kDa</two>) muss ein Protein sein, um die Zellkern-Poren noch passieren zu können? <one>40 kDa</one>.
19
+ - <one>CTD</one> trägt welche zwei Protein-Komplexe? A: (1) <one>CPSF</one> (2) <one>CSTF</one>
20
+ - Die <one>Aktivität von CAP</one> <two>wird woduch gesteuert</two>? Durch den <one>intrazellulären Gehalt von cAMP</one>.
21
+ - <one>Which part of the RNA polymerase II</one> <two>contains the CTD</two>? The <one>beta subunit</one> contains the CTD.
22
+ - <one>FACT</one> hilft bei welchem <two>zellulären</two> Vorgang? Bei der <one>Elongation</one> (da FACT die H2A und H2B Dimere trennt).
23
+ - <one>Wo</one> befinden sich <two>Destabilisierungselemente in einer mRNA</two> generell? In der <one>5'-UTR</one>.
24
+ - Wofür steht die Abkürzung <one>ESEs</one>? A: <one>Exon Splicing Enhancers</one>. URL: https://en.wikipedia.org/wiki/Exonic_splicing_enhancer
25
+ - Provide <one>two specific examples</one> for "gene regulation by riboswitches". A: (1) Translation activation of virulence genes in Listeria (2) Translation activation by binding and stabilisation of mRNA by E.coli sigma factor
26
+ - In <one>gene expression</one>: <two>where</two> could an <three>anchor region</three> be found? In <one>gRNAs</one> (<two>guide RNAs</two>).
27
+ - Was produziert <one>ODC</one>? A: <one>Polyamine</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8254008/
28
+ - Bei der Genexpression, im Zuge der <one>Regulation</one>: <two>worauf bezieht sich positive und negative Regulation</two>? <one>Auf die Transkription</one>: negativ schaltet sie ab, <three>positiv schaltet sie ein</three>.
29
+ - <one>Which U-snurp</one> <two>creates the intron RNA loop</two>? <one>U5</one>.
30
+ - In Genexpression gibt es die Abkürzung <one>Raptor</one>. Wofür steht diese Abkürzung? A: <one>Regulator associated protein of mTor</one>.
31
+ - Der Elongationsfaktor G wirkt als ... ? Translokase.
32
+ - <one>Wie stabil</one> kann <two>mRNA</two> maximal sein? Die <one>mRNAs in Oocyten</one> können jahrelang stabil bleiben.
33
+ - <one>Minimum number of genes</one> required to make a living cell? <one>470 genes</one> - <two>but this is actually a parasite</two>.
34
+ - <one>Which type of genes</one> make use of <two>GUG</two> rather than <two>AUG</two> in prokarya? <one>Regulatory proteins</one> such as <two>LacI</two>.
35
+ - Why can it be said that <one>translation</one> is accurate? Because of <one>the consistency</one> <two>found</two> when we determine the sequence of a polypeptide.
36
+ - <one>Zellen ohne TK-Gen</one> (= <two>Thymidin-Kinase Gen</two>) können was nicht? Sie können nicht überleben. Die Thymidinkinase (TK) konvertiert Desoxythymidin zu Desoxythymidinphosphat. Sie ist essentiell beim Aufbau der DNA.
37
+ - Die <one>tmRNA</one> <two>ist mit welchem Protein assoziiert</two>? <one>SmpB</one>.
38
+ - <one>Welche drei Aufgaben</one> hat <two>p-TEFb</two>? A: (1) Er phosphoryliert Serin 2 in der Heptapeptid-Sequenz YSPTSPS (2) er rekrutiert danach hSPT5 und (3) danach rekrutiert p-TEFb <two>TAT-SF1</two>
39
+ - What are the <one>two</one> <two>bindings sites</two> of an <three>aminoacyl-tRNA-synthetase</three>? (1) <one>tRNA binding site</one> (2) <one>aminoacid</one>
40
+ - Nenne einen <one>Vertreter der Tyrosinkinasen</one>. A: <one>Protein-Tyrosinkinase</one> (<two>PTK</two>).
41
+ - Die <one>rRNA-Gen Cluster</one> besitzen ein <two>Terminatorelement</two> (T). <three>Welches Protein bindet daran</three>? A: <one>TTF1</one>. URL: https://www.genecards.org/cgi-bin/carddisp.pl?gene=TTF1
42
+ - Was kann an der <one>active site</one> <two>einer Topoisomerase</two> gefunden werden? Einen <one>Tyrosin-Rest</one>, also die Aminosäure Tyrosin.
43
+ - Trivialname für <one>NtrC</one>? Stickstoff-Regulator Protein (<two>NtrC</two>).
44
+ - Use another term for the <one>minor spliceosome</one>. A: <one>AT-AC Spliceosome</one> (<two>attack spliceosome</two>).
45
+ - In <one>proofreading of DNA-dependent RNA-polymerase II</one>: can we say that <two>pyrophosphorolytic editing</two> <three>is extensive</three>? <one>No</one> - it only works on the last nucleotide of the growing RNA, which is replaced by pyrophosphate. So it only operates on one nucleotide.
46
+ - Nenne <one>ein Beispiel</one> für einen <two>Anti-VEGF</two> Wirkstoff. A: <one>Avastin</one>. URL: https://de.wikipedia.org/wiki/Bevacizumab
47
+ - Nenne einen <one>common cause</one> für <two>RNA Polymerase arrest</two> an. A: <one>Geschädigte DNA</one>.
48
+ - <one>Welcher Teil einer Aminosäure</one> <two>wird mit der tRNA verknüpft</two>? Der <one>Carboxyterminus</one> - es entsteht eine C=O Verbindung beziehungsweise ein <two>-C=O-O Ester</two>.
49
+ - <one>Puromycin</one> <two>mimics ... </two>? <one>Tyrosyl tRNA</one>.
50
+ - <one>Wieso</one> ist die Kozak-Sequenz wichtig? Die <one>Kozak Sequenz</one> ist für die <two>Initiation der Translation</two> wichtig, bei eukaryotischer mRNA. URL: https://en.wikipedia.org/wiki/Kozak_consensus_sequence
51
+ - Worum geht es bei <one>LRP</one> und <one>GATC Sequenzen</one>? A: Um <one>Pap Pilus Synthesis</one>.
52
+ - <one>mTOR</one> phosphoryliert was? <one>4E-BP</one>.
53
+ - Angenommen wir eliminieren <one>Untereinheiten des Mediator Komplexes</one>. Was können wir beobachten? A: Verschiedene Gene werden nun nicht mehr abgelesen, wahrscheinlich weil die Mediator-Subunits mit verschiedenen Coaktivatoren zusammenarbeiten.
54
+ - What is <one>the most important part of a</one> <two>tRNA</two>? The <one>anticodon arm</one>.
55
+ - <one>Welches Protein</one> ladet die <two>Histone H3+H4</two> und <three>welches andere Protein</three> ladet <four>H2A+H2B</four> auf die DNA? (1) NAP-1 für H2A+H2B. (2) CAF-1 für H3-H4.
56
+ - What is typically <one>the maximum distance</one> <two>enhancers</two> and <two>silencers</two> can still act, in eukaryotes, in n bp? About at a distance of <one>100 kb</one>.
57
+ - What are <one>ribosomopathies</one>? <one>Ribosomopathies</one> are <two>human disorders of ribosome dysfunction</two>.
58
+ - Wofür steht die Abkürzung <one>SUMO1</one>? A: <one>Small ubiquitine-like modifier</one>.
59
+ - Give <one>one good example</one> for an <two>archael repressor</two>. A: The <one>NrpR Protein</one>.
60
+ - The <one>cap</one> in eukaryotic mRNA has the methyl group where? At <one>position-7</one>.
61
+ - <one>Welche Funktion</one> erfüllt die <two>Pol 5' -> 3' exconuclease activity</two>? Sie <one>entfernt RNA Primer</one>.
62
+ - Name <one>two histone modifications</one> that start with the letter <two>A</two>. A: (1) <one>Acetylation</one> (2) <one>ADP-ribosylation</one>
63
+ - A <one>regulatory site</one> that binds more negative regulators than positive regulators to control transcription is called ... ? A <one>silencer</one>.
64
+ - Which two histones are sometimes replaced? (1) H2A (2) <one>H3</one>
65
+ - The <one>MTE</one> (motif ten element) requires which other element? The <one>INR element</one>.
66
+ - Name <one>two motifs</one> in leucine zipper proteins. A: (1) A <one>basic region</one> that recognizes DNA sequence, and (2) a series of repeated Leucine residues.
67
+ - Nenne <one>drei post-translationale Modifikationen</one>. A: (1) <one>Glykosylierung</one> (2) <one>Myristylierung</one> (3) <one>Phosphorylierung</one>
68
+ - Beim freien <one>Signal-Aptamer</one>: <two>wie wird die Fluoreszenz unterdrückt</two>? Durch die <one>räumliche Nähe von Quencher und Fluorophor</one>.
69
+ - Name a way how we could induce <one>hsp70</one> in the lab, <two>without using heat as inducer</two>. A: We can add <one>heavy metals</one>, such as <two>cadmium chloride</two>.
70
+ - <one>Wo</one> kann die <two>IRES-Sequenz</two> gefunden werden? A: In der <one>5' NCR</one>.
71
+ - Wie kann <one>bei Eukaryoten</one> die zweite mRNA von der 1. mRNA unterschieden werden wenn das Genende erreicht wird und weiter transkribiert wird? A: Diese kurze mRNA ist uncapped, im Gegensatz zur ersten mRNA.
72
+ - <one>Wann</one> werden <two>leaky</two> Promotoren zu einem Problem? Wenn da Genprodukt <one>toxisch</one> ist.
73
+ - <one>AraB</one>, <one>AraA</one>, <one>AraD</one> kodieren jeweils für ... ? A: (1) <one>L-Ribulokinase</one> (2) L-Arabinose-Isomerase (3) <one>L-Ribulose-5-phosphat-4-Epimerase</one>
74
+ - <one>Where</one> <two>in Eukarya</two> can <three>diphthamide</three> be found? In the elongation factor <one>eEF2</one>.
75
+ - In welchen <one>Protein-Typen</one> ist <three>Arginin</three> vor allem wichtig? A: Bei <one>Proteinen</one> <two>die an DNA binden</two>.
76
+ - What is <one>R-loop mapping</one>? When RNA is incubated with dsDNA, the RNA displaces one RNA stretch.
77
+ - <one>MukB</one> kann was? <one>DNA-Stränge umklammern</one>.
78
+ - <one>TFIIH</one> <two>consists of</two> <three>n subunits</three>? <one>9</one>.
79
+ - <one>Elongation</one> und Promotor Escape: welche Serin-Positionen werden hierbei jeweils phosphoryliert? A: (1) Bei <one>Elongation</one> <two>Serin 2</two>. (2) Bei <one>Promotor Escape</one> <two>Serin 5</two>.
80
+ - In <one>gene expression</one>: <two>what type</two> is the <three>FtsK protein</three>? The <one>FtsK</one> <two>is a dsDNA translocase</two>, a motor that converts the chemical energy from ATP into movement of a DNA substrate.
81
+ - <one>U2AF</one> besitzt <two>zwei Motive</two>. <three>Welche</three>? A: <one>RRM</one> und <one>RS Motiv</one>.
82
+ - The <one>snRNAs of the snurps</one> <two>recognize which three sites</two>? (1) 5' splice site (2) 3' splice site (3) branch site
83
+ - Das Paradebeispiel eines <one>Ribozym</one>, ausgenommen dem Ribozyme-Anteil im Ribosom, ist ...? <one>RNase P</one>.
84
+ - Woraus besteht die <one>Transaktivierungsdomäne</one> von CRE verwandten Proteinen? A: Aus "Q1", der "P-Box" und <one>Q2</one>.
85
+ - Das <one>Bantam-Gen</one> <two>in Drosophila</two> <three>kodiert für ...</three>? A: Eine <one>21 Nukleotide lange miRNA</one>.
86
+ - Es gibt die <one>Lipidkinase PI3K</one>. <two>Was heißt PI3K</two>? <one>Phosphoinositid-3-Kinase</one>.
87
+ - <one>HATs</one> <two>add acetyl groups</two> from where, where to? From <one>Acetyl-CoA</one> to <two>Lysine residues</two>.
88
+ - If any given cell may contain <one>lots of (RNA) helicases</one>, what may we conclude from this? It may be that this cell has quite some mRNAs that have a secondary structure which has to be removed.
89
+ - <one>Helici</one> in Homöobox-Domänen haben eine <two>Erkennungshelix</two>. <three>Welche ist es</three>? A: <one>Helix 3</one> ist diese <two>Erkennungshelix</two>.
90
+ - Wie wurde die <one>tmRNA</one> früher genannt? <one>10S RNA</one>.
91
+ - <one>Proteine</one>, die im Endoplasmatischen Retikulum sind, haben am C-Terminal ein Tetrapeptide. Wie lautet dessen Sequenz? A: <one>KDEL</one> (Merkschema: <two>C-KDEL</two>)
92
+ - <one>Ago2</one> (<two>Argonaute 2</two>) is similar to which other cellular protein? <one>RNaseH</one>.
93
+ - Can <one>a protein</one> <two>recognize DNA segments</two> <three>without unwinding DNA</three>? <one>Yes</one>, it can.
94
+ - Which <one>kinase</one> controls <two>ribosome abundance</two>? The <one>mTORC1 kinase</one>. URL: https://www.nature.com/articles/nature12122
95
+ - What is meant with the term <one>leaky scanning</one>? When we overlook ORF1 and initiate translation at the start of ORF2.
96
+ - What is the job of the <one>ribosome modulation factor</one>? It binds to ribosomes and <two>inactivates them</two>.
97
+ - Name two examples for sequence motif types. A: <one>Enhancers</one> und <one>Silencers</one>.
98
+ - Which three RNA degradation pathways exist. A: (1) RNA Turnover (2) RNA Processing (3) <one>Quality Control</one>
99
+ - <one>Histone phosphorylation</one> <two>occurs on ... </two>? The <one>hydroxyl-group of serine and threonine</one>.
100
+ - Eine <one>enzymatische Strukturanalyse</one> kann durch ... erfolgen. A: <one>RNasen</one>.
101
+ - <one>Wo</one> liegt <two>die Signalsequenz</two> die die Steuerung ins Peroxisom bedingt? A: An <one>C-Terminaler Seite</one>.
102
+ - Nenne die <one>drei Sequenzmotive</one> um PolyA in Eukaryoten anzufügen. A: (1) AAUAAA (tail signal) (2) <one>CA-dinucleotide</one> (3) <one>GU-rich tract</one>
103
+ - <one>Welche Strategie</one> verwendet Poliovirus gegen eIF4G? A: Das Poliovirus <one>spaltet</one> den <two>aminoterminalen Teil</two> von eIF4G ab, mit dem Effekt das die Synthese zellulärer Proteine zum Erliegen kommt.
104
+ - <one>mTOR</one> <two>kann 4E-BP phosphorylieren</two>. Hierzu benötigt es welches Protein? <one>Raptor</one>. URL: https://en.wikipedia.org/wiki/RPTOR#Function
105
+ - Nenne <one>zwei Beispiele</one> für <two>Proteine mit Zinkfingermotiven</two>. A: (1) <one>Sp1</one> (2) <one>TFIIIA</one>
106
+ - In der Genetik: wofür steht die Abkürzung <one>Max</one>? A: <one>Myc associated factor X</one>.
107
+ - <one>trn1</one> und <one>trnA</one> liegen wo? Neben der <one>16S rRNA</one>.
108
+ - <one>Wie</one> geht die <two>CRE Sequenz</two>? A: <one>5' TGACGTCA</one>.
109
+ - Die <one>Fehlerrate</one> bei den tRNA-Synthetasen im Zuge der Aminosäurebeladung, in %? Etwa <one>0.1%</one>.
110
+ - Another way to say that a gene is being expressed is to say that ... ? the <one>gene</one> is <two>on</two>.
111
+ - <one>How long</one> are <two>eukaryotic replicons</two>, from-to? About <one>40 kb to 100 kb in length</one>.
112
+ - During <one>cold shock</one> and <one>heat shock</one> response: <two>which proteins are synthesized significantly more often</two>? <one>Chaperones</one> that may <two>help refold unfolded proteins</two>.
113
+ - <one>Wo</one> findet man <two>rut-sites</two>? A: Upstream von Sequenzmotiven, die die Geschwindigkeit der RNA Polymerase verringern können.
114
+ - <one>Was für eine Aufgabe</one> hat <two>TFIIA</two>? TFIIA stabilisiert die <two>TFIID-Bindung</two>.
115
+ - Is the <one>micronucleus</one> <two>of ciliates</two> "transcriptionally active"? <one>No</one> - it is <two>transcriptionally inactive</two>.
116
+ - Was heißt <one>mTORC1</one>, vor allem das <two>C</two> dabei? <one>mTOR Complex 1</one>.
117
+ - <one>Wie</one> wirken <two>Tetracycline</two> genau? <one>Tetracycline</one> lagern sich an die 30 S-Ribosomenuntereinheit an und verhindern damit die Anlagerung der tRNA.
118
+ - <one>mTOR</one> ist eine <two>Proteinkinase</two>. <three>Welche Aminosäure oder welche Aminosäuren sind das Ziele von mTOR</three>? (1) <one>Serin</one> (2) <one>Threonin</one>
119
+ - There is the <one>C3H1-type zinc finger</one> motiv. <two>It interacts with ...</two>? With the <one>3' untranslated region of mRNAs</one>.
120
+ - <one>Wo</one> beginnt <two>PIC formation</two>? A: An der <one>TATA Box</one> (<two>-30</two>).
121
+ - <one>Which polymerase</one> transcribes "Alu-Sequences"? The <one>RNA-Polymerase III</one>. But <two>it only transcribes them</two> - these RNA sequences are not translated.
122
+ - The <one>DNA-Polymerase V</one> <two>is also called ..</two>? <one>Error-prone polymerase</one>.
123
+ - <one>Wo</one> findet man die <two>Anti-Shine-Dalgarno</two> Sequenz? A: Auf der <one>16S rRNA</one>.
124
+ - <one>Welchen Nachteil</one> <two>haben Proteine die Selenocystein verwenden</two>? <one>Selen</one> <two>ist anfällig gegenüber Oxidationen</two>. Diese Proteine müssen ergo vor Sauerstoff geschützt werden.
125
+ - Can <one>aminoacyl-tRNA synthases</one> <two>recognize modified residues</two>? Yes, of course.
126
+ - Gib ein Beispiel für ein <one>Zinkfingerprotein</one>. A: Der Transkriptionsfaktor <one>SP1</one>. URL: https://en.wikipedia.org/wiki/Sp1_transcription_factor
127
+ - In genetics: what is an <one>antiterminator</one>? A regulatory protein that acts by preventing transcription termination.
128
+ - Was heißt <one>p-TEFb</one>? A: <one>Positive transcription elongation factor b</one>.
129
+ - Why was the name <one>positive regulation</one> chosen? Because an activator protein must bind to its target DNA site for transcription to begin.
130
+ - How do we call the interval between <one>transcription</one> and <one>translation</one>? <one>Post-transcriptional phase</one>; or rather, <two>co-transcriptional phase</two> in bacteria.
131
+ - Why is the <one>RNA polymerase II CTD</one> important in eukaryotes? Because the CTD <one> coordinates transcription and RNA processing</one>.
132
+ - What is a <one>transcriptase</one>? A <two>transcriptase</two> is a general term for <one>an enzyme that carries out transcription</one>.
133
+ - Name <one>a technique</one> <two>with which we can identify</two> <three>sequences bound by</three> <four>transcription factors</four> in-vivo. A: <one>Chromatin immunoprecipitation</one>. URL: https://en.wikipedia.org/wiki/Chromatin_immunoprecipitation
134
+ - We can <one>profile total mRNA from cells</one> and can thus find out which genes are <two>transcriptionally induced</two> and which genes are <two>transcriptionally repressed</two>. But is there a problem with this technique? Yes. mRNAs that are potentially regulated by translational control are not detected.
135
+ - <one>Wie</one> können wir herausfinden <two>ob DNA methyliert vorliegt oder nicht</two>? Durch <one>Restriktionsanalysen</one>, wie mit dem <two>Enzym HpaII</two> (erkennt <three>CCGG</three> Sequenzen).
136
+ - Das <one>Schlüsselenzym der Genexpression</one> ist ... ? Die <one>RNA-Polymerase II</one> (genauer: die <two>DNA-abhängige RNA-Polymerase II</two>).
137
+ - What is <one>RNAsin</one>? RNAsin is a <two>RNAse inhibitor</two>.
138
+ - Wie geht der <one>Gal Pathway</one>? Gal 2,1,7,10,7 Glycosis.
139
+ - Wie unterscheidet sich <one>Pseudouridine</one> von <one>Uridine</one>? <one>Pseudouridine</one> besitzt Ribose an einem C des Ringes.
140
+ - Nenne eine möglichst einfache Möglichkeit für eine Zelle einen <one>Aminosäure Mangel</one> <two>wahrzunehmen</two>. A: Der Anstieg unbeladener tRNA aufgrund des Fehlens der zugehörigen Aminosäure.
141
+ - Nenne einen <one>Grund</one> wieso es so <two>schwierig war</two> <three>Ribosomen zu kristallisieren</three>. A: Weil Ribosomen so <one>heterogen</one> waren.
142
+ - <one>TBP</one> <two>ist Bestandteil welchen Komplexes</two> bei RNA-Polymerasen III Genen? A: <one>TFIIIB</one>.
143
+ - Wenn eine <one>Proteinkinase</one> 2 ATP für seine Aktivität benötigt, was mögen wir (etwas naiv) annehmen? Das es sich hierbei um einen <one>Dimer</one> handelt; 1 ATP pro Untereinheit.
144
+ - U1 snRNA gene contains <one>DSE</one> and <one>PSE</one>. <two>What do these abbreviations stand for</two>? (1) <one>DSE</one>: <two>distal sequence element</two> (2) <one>PSE</one>: <two>proximal sequence element</two>
145
+ - <one>TFIIF</one> <two>entspricht in Bakterien welchem Protein ...</two>? A: Dem <one>Sigmafaktor</one>.
146
+ - Bei der <one>eukaryoten 5' cap</one>: wo finden wir die 5-prime-to-5-prime triphosphate bridge? Zwischen dem 7-methylguanosine und dem 5-prime Ende der mRNA.
147
+ - Was sind <one>Aptamere</one>? <one>DNA oder RNA-Oligonucleotide</one> (<two>15-16 Nukleotide</two>) <three>die an Proteine binden kann</three>.
148
+ - <one>Wo</one> befindet sich die <two>RBS Stelle</two> typischerweise? A: Etwa 3-9 Basenpaare vor dem Startcodon der 5' mRNA.
149
+ - Was heißt <one>PIC</one>, und <two>woraus besteht dieser</two>? A: <one>Präinitiationscomplex</one>. Dieser besteht aus <two>DAB-PolII-FEH</two>.
150
+ - <one>Which enzyme</one> <two>in E. coli</two> does the <three>de-novo synthesis of DNA strands</three>? <one>DNA polymerase IV</one>.
151
+ - <one>Warum</one> heißt der Mediator Mediator? A: Er vermittelt zwischen stromaufwärts gelegenen Enhancern (Aktivatoren) und der RNA Polymerase II.
152
+ - Nenne <one>eine Region im Sigmafaktor</one>, die als <two>molecular mimic von DNA</two> agiert. A: <one>Region 1.1</one>.
153
+ - <one>MRP-RNP</one> ist womit verwandt? A: Mit <one>RNAse P</one>, welches wiederum korrekte 5' Enden bei tRNAs herstellt.
154
+ - Besitzen <one>Housekeeping genes</one> <two>schwache Promotoren</two>? <one>Nein</one>, da ihre Produkte immer benötigt werden, per Definition.
155
+ - <one>Welchen Unterschied</one> gibt es zwischen <two>pyrophosphorolytic editing PE</two> (PE) und <two>hydrolytic editing HE</two> (HE)? A: (1) Beim PE wird das letzte Nukleotid der wachsenden RNA Kette durch ein "Polyphosphat" ersetzt. (2) Beim HE geht die Polymerase zurück und entfernt das fehlerhafte Stück.
156
+ - Nenne <one>ein Beispiel</one> für einen Organismus der <two>Antitermination</two> verwendet. A: Der <one>Phage</one> <two>Lambda</two>.
157
+ - <one>Welche Besonderheit</one> haben <two>U1</two> und <two>U2 Gene</two>? Sie sind <one>TATA-less</one> - <two>haben also keine TATA Box</two>.
158
+ - <one>When</one> does the <two>packaging of chromatin</two> change? It <one>changes</one> <two>during the eukaryotic cell cycle</two>.
159
+ - <one>Aktivator</one> <two>der tRNA</two>? <one>ATP</one>.
160
+ - Name <one>a mRNA in Eukarya</one> <two>that has a stem-loop structure in the 3'-UTR</two>. A: <one>Histone mRNA</one>.
161
+ - Name <one>three differences</one> between <two>primary tRNAs</two> and <two>mature tRNAs</two>. A: (1) <one>no 5' leader sequence</one> (2) <one>no 3-trailer sequence</one> (3) <one>no introns</one>
162
+ - In gene expression: what is <one>Rat 1</one>? Rat 1 is a nuclear <one>5'-to-3' exonuclease</one>, <two>involved in mRNA Degradation</two>.
163
+ - Warum ist es eigentlich möglich, das distale regulatorische Elemente mit dem Promoter interagieren können? Dies ist möglich da die dazwischenliegenden DNA-Abschnitte Schleifen ausbilden können.
164
+ - <one>Was passiert</one> wenn das Hormon <one>Thyroid</one> zu menschlichen Erythroblasten gelangt? Wir sehen hier ein <one>erhöhtes Maß an Differenzierung</one>.
165
+ - Das <one>Ribosom</one> <two>bedeckt wieviele Basen auf der mRNA</two>? Etwa <one>35</one>.
166
+ - What is the job of the <one>rudder</one> structure that is found in the RNA polymerase? The <one>rudder</one> <two>helps to separate the RNA from the DNA</two>.
167
+ - Name <one>three pathways</one> that <two>remove mRNA from a cell</two>. A: (1) deadenylation-dependent mRNA decay (2) deadenylation-independent mRNA decay (3) <one>Endoribonuclease-mediated mRNA decay</one>
168
+ - <one>Wo</one> liegen die E. coli <two>Lac O2</two> und <two>Lac O3</two> Repressorstellen? A: (1) <one>O2</one> bei <two>+410</two> (2) O3 bei <two>-83</two>
169
+ - In Eukarya: <one>Ser5</one> <two>of the RNA-Polymerase</two> is phosphorylated by ...? <one>TFIIH</one>.
170
+ - Nenne zwei Elongation-Factors. A: <one>TFIIS</one> und hSPT5.
171
+ - What is <one>the general action</one> <two>of the enzyme</two> <three>RNase H</three>? <one>RNase H</one> <two>cleaves RNA</two> in a <three>DNA-RNA Hybrid Duplex</three>.
172
+ - Name <one>the two major nuclear mRNA decay enzymes</one>. A: (1) 5 prime- 3 prime exoribonuclease Rat1p (Xrn2 in humans) (2) <one>Nuclear Exosome</one>
173
+ - <one>SL1</one> <two>besteht aus welchen Untereinheiten</two>? A: <one>TBP</one> sowie drei weiteren TAFs (48, 63, 110).
174
+ - For <one>eukaryotic promoters</one>: name <two>two additional regulatory elements</two> <three>aside from the TATA box</three>. A: (1) CCAAT-Box (2) <one>GC-rich regions</one>
175
+ - Name <one>two areas</one> <two>of a tRNA</two> that are close together in 3D. A: The T-Loop and <one>D loop</one>.
176
+ - Welchen <one>Vorteil</one> hat die <two>RNA Polymerase</two> gegenüber der DNA-Polymerase? Die <one>RNA Polymerase</one> <two>benötigt keinen Primer</two>.
177
+ - <one>Wann</one> wurde <two>Tyrosine phosphorylation</two> entdeckt? <one>1979</one>.
178
+ - Nenne <one>drei Methoden</one> zum <two>Einschleusen von Fremd-DNA</two> in Mäuse. A: (1) Einschleusen gentechnisch veränderter Stammzellen (2) <one>Mikroinjektion</one> (3) <one>Retrovirusvektoren</one>
179
+ - Nenne <one>ein Enzym</one> das "Inosine" produzieren kann. A: <one>ADAR</one> (<two>Adenosine Deaminase acting on RNA</two>)
180
+ - Wofür steht das <one>H</one> in <two>rpoH</two>? <one>Heat shock response</one>.
181
+ - <one>Wie</one> werden <two>Gene genannt</two> <three>die strändig transkribiert werden</three>? <one>Konstitutiv exprimierte Gene</one>.
182
+ - <one>Welche Scherkräfte</one> werden meistens im Zuge der <two>ChIP-Technik</two> in der Genexpression eingesetzt? <one>Ultraschall</one>.
183
+ - What was <one>Yanofsky's</one> great achievement in the year <two>1963</two>? A: <one>Yanofsky</one> <two>showed that mutations appear in the same order</two> (<three>colinearity of mutations</three>).
184
+ - In der <one>tRNA</one>: nenne <two>zwei Komponenten</two> die man am <three>T-Arm</three> findet. A: <one>Thymidin</one> und <one>Pseudouridin</one>.
185
+ - Wie können wir das <one>Nucleoid</one> isolieren? Wir müssen viel <one>NaCl</one> verwenden, sowie <two>Lysozym</two> und eine <three>Sucrose-Gradienten-Zentrifugation</three>.
186
+ - The <one>RNA for the globin protein</one> <two>is found ...</two>? Only in <one>reticulocytes</one>.
187
+ - Nenne die <one>zwei wichtigsten Funktionen</one> der <two>mTOR-Signalstation</two>. A: (1) <one>Einleiten der Translation</one> über <two>eIF4E</two> (2) verstärkte Synthese von ribosomalen Proteinen (und damit mehr Ribosomen in der Zelle)
188
+ - At the <one>eukaryotic cap</one>, the <two>Cap II group</two> is ...? <one>-CH₃</one> - in other words, <two>a methyl group</two>.
189
+ - In <one>mRNA decay</one> <two>in eukaryotes</two>: what is usually the first step? <one>Deadenylation</one> - that is, the removal or shortening of the Poly-A tail.
190
+ - <one>Wann</one> wurden <two>Ribozymes</two> entdeckt? <one>1982</one>.
191
+ - Nenne einen markanten <one>Unterschied</one> zwischen <two>tRNA-Synthetase Klasse I und Klasse II</two>. A: (1) <one>Klasse I</one> heftet an 2'-OH der Ribose an (2) <one>Klasse II</one> heftet hingegen an 3' OH an.
192
+ - Name <one>one key change</one> in the transformation of silent to active chromatin. A: The <one>acetylation of histones</one>. HATs do this transformation.
193
+ - The <one>forkhead box transcription factors</one> were found in which organism? In <one>Drosophila</one>.
194
+ - <one>At which stage</one> specifically is the <two>Ser5 position</two> phosphorylated by <three>TFIIH</three>? During <one>transcription initiation</one>.
195
+ - <one>Rtt103</one> <two>bindet woran genau</two>? A: <one>An phosphoryliertes Serin 2</one> in der <two>YSPTSPS-Sequenz</two>.
196
+ - Does <one>slow decoding</one> (aka <two>the codon match between tRNA and ribosome</two>) <three>have an effect on mRNA stability</three>? <one>Yes</one> - <two>slower decoding</two> is <three>coupled to reduced mRNA stability</three>.
197
+ - <one>Wann</one> konnte die <two>Struktur einer tRNA</two> erstmals aufgeklärt werden? <one>1974</one>.
198
+ - <one>Where</one> can <two>uORFs</two> be found? In between the <one>5' and the start of the gene</one>.
199
+ - What is meant with the term <one>nested gene</one>? When <one>a complete gene is found within the intron</one> <two>of a larger host gene</two>. URL: https://en.wikipedia.org/wiki/Nested_gene
200
+ - What is the sequence of the <one>CPE-consensus sequence</one>? <one>UUUAU</one>
201
+ - Name <one>five important levels</one> of "gene regulation in prokaryotes". A: (1) "Transcription" (2) "RNA processing" (3) "RNA stability" (4) "Translation" (5) <one>Post-Translation</one>
202
+ - Viele <one>Genregulatorproteine</one> bestehen aus zwei unabhängigen Domänen mit definierten Funktionen. Welche Domänen sind dies, typischerweise? (1) eine <one>DNA-bindende Domäne</one> (2) eine (oder mehrere) "Protein-bindende Domäne"; auch "Transaktivierungsdomäne" genannt
203
+ - Name <one>three DNA-binding proteins</one> that contain a <two>helix-turn-helix structure</two>. A: (1) <one>lac repressor</one> (2) <one>trp repressor</one> (3) lambda repressor
204
+ - <one>SmpB</one> <two>structurally mimics ...</two>? <one>The anticodon arm</one> <two>of a canonical tRNA</two>.
205
+ - <one>Sirtuins</one> are <two>De-Acetylases</two>. <three>They depend on which cofactor</three>? <one>NAD⁺</one>.
206
+ - <one>What happens</one> when <two>Arabinose</two> binds to AraC? This step <one>converts AraC</one> <two>from being a repressor</two> <three>to become an activator</three>.
207
+ - <one>Woher</one> nehmen die <two>Histon-Acetyltransferasen</two> die Acetylgruppen? Von <one>Acetyl-Coenzym A</one>.
208
+ - <one>Welche Proteine</one> <two>regulieren die Stabilität von mRNAs</two>? Die <one>ARE-Bindungsproteine</one>.
209
+ - Die <one>alternative Polyadenylierung</one> führt zu ... ? Sie führt dazu, <one>das die mRNAs unterschiedlich lang sind an ihrem 3'-Ende</one>. Es führt zudem dazu, das die Proteine am C-Terminus unterschiedlich lang sind.
210
+ - Name <one>four steps</one> that can be found as part of <two>tRNA processing</two>. A: (1) <one>cleavage</one> (2) <one>splicing</one> (3) <one>base addition</one> (4) <one>base modification</one>
211
+ - <one>Was genau</one> bewirkt der <two>lac-Repressor</two>? A: Der <one>lac-Repressor</one> verhindert die Trennung der Promoter-DNA Stränge und somit die Initiation der Transkription.
212
+ - <one>Ringförmige RNA</one> <two>kann welche merkwürdige Form annehmen</two>? Aufgrund zahlreicher Basenpaarungen kann das <one>potato spindle tuber viroid</one> die Form eines <two>Stäbchens</two> annehmen.
213
+ - Was genau ist <one>Genexpression</one>? Das sind <one>all diejenigen Schritte, welche dazu führen, dass der DNA-Code in eine definierte Menge und Aktivität eines Genprodukts (RNA, Protein) übertragen wird</one>.
214
+ - Was heißt <one>TAFs</one>? <one>TBF-assoziierte Faktoren</one>. URL: https://en.wikipedia.org/wiki/TBP-associated_factor
215
+ - Können <one>distale Elemente</one> wie Enhancer und Silencer sowohl stromauwfwärts als auch stromabwärts an DNA binden? Ja.
216
+ - Was ist ein <one>Regulon</one>? Ein <one>Regulon</one> ist <two>eine Gruppe aus gemeinsam regulierten Genen</two>. Sie können im (bakteriellen) Genom oft weit verteilt sein. Ein Beispiel ist das <one>Hitzeschockregulon</one>.
217
+ - Define the term <one>insertional mutagenesis</one>. A: This technique <one>causes mutations</one> through random insertion of foreign DNA Fragments.
218
+ - <one>Activators</one> recognize DNA sequences in which area? In <one>Enhancers</one>.
219
+ - Die <one>Auslösung einer gesteigerten Genexpression</one> <two>durch ein Hormon nennt man ... </two>? <one>Hormonelle Induktion</one>. URL: https://de.wikipedia.org/wiki/Induktion_(Biologie)#Embryonale_und_hormonelle_Induktion
220
+ - Die <one>Pol II</one> <two>besitzt jeweils n Heptapeptidrepeats</two>, bei <three>Hefe</three> / <three>Drosophila</three> / Säugetier? <one>26</one>/<one>44</one>/<one>52</one>.
221
+ - <one>TRCF</one> <two>hat was für eine Aktivität</two>? A: TRCF hat eine <one>ATPase Aktivität</one>.
222
+ - Nenne <one>drei Ereignisse</one> die zum Thema RNA-Prozessierung in eukaryoten Organismen gehören. A: (1) das Anbringen der 5'-Kappe (2) das Entfernen der Intronsequenzen (3) das Anheften des Poly(A)-Endes von mRNA
223
+ - The <one>81-nucleotide long RybB RNA</one> <two>can cause mRNA in E. coli to be degraded</two>, by association with which nuclease? <one>RNase E</one>.
224
+ - Was meinen wir mit <one>Hotspot Mutationen</one> <two>in PI3K</two>? Dies sind <one>Mutationen die die Kinase Aktivität erhöhen</one>.
225
+ - What is the meaning of <one>H3K4me3</one>? <one>Lysin 4</one> of <two>histone H3</two> is <three>trimethylated</three>.
226
+ - <one>Wann</one> entstand Crick's tRNA Adapter Hypothesis? A: <one>1958</one>. URL: https://en.wikipedia.org/wiki/Adaptor_hypothesis
227
+ - <one>Bacterial enhancers</one> <two>employ which sigma factor</two>? <one>Sigma 54</one>.
228
+ - <one>Wieso</one> verwenden wir <two>tagged proteins</two>? Da wir sie (a) einfach über Antikörper einfangen können und (b) diese Tags mit Proteasen abspalten können.
229
+ - Wie wirkt <one>cAMP</one> <two>bei Eukaryoten</two>? A: Indirekt, über die <one>Protein-Kinase A</one>.
230
+ - In bacteria: <one>EF-Tu</one> and <one>EF-G</one>, complexed with <two>GTP</two>, <three>interact with which center of the prokaryotic ribosome</three>? With <one>the factor-binding center</one>.
231
+ - Der <one>EJC</one> (<cadetblue>Exon-Junction Complex</cadetblue>) wird durch das <two>Spliceosome</two> stromaufwärts oder stromabwärts von einer exon-exon-junction deponiert? <one>Stromaufwärts</one>. URL: https://en.wikipedia.org/wiki/Exon_junction_complex
232
+ - <one>Wann</one> wurde die <two>Shine-Dalgarno-Sequenz</two> entdeckt? <one>1975</one>.
233
+ - Warum ist <one>Poly-A</one> <two>bei Eukarya</two> nicht immer praktisch zur Isolation geeignet? A: Weil man manchmal nur cytoplasmatische mRNA isolieren möchte, bei der Isolation jedoch die gesamte mRNA Fraktion isoliert die einen Poly-A Schwanz hat - auch jene des Zellkerns.
234
+ - In der Genexpression: was heißt <one>STAT</one>? A: Signaltransduktoren und Aktivatoren der Transkription.
235
+ - What do we mean with the term <one>monosome</one>? A monosome is <one>a single ribosome</one> - <three>its two subunits are joined</three>.
236
+ - Do <one>eukaryotic mRNAs</one> have a <two>ribosome binding site</two>? <one>No</one>.
237
+ - In Eukarya: <one>which factors</one> are required for <two>correct initiation</two>? (1) <one>IF1</one> (2) <one>IF2</one> (3) <one>IF3</one>
238
+ - <one>Polyadenylation</one> <two>typically involves which two events</two>? (1) cleavage of the RNA-trascript (2) addition of A residues onto the resulting free 3' end of that RNA
239
+ - Nenne einen Faktor der bei <one>hydrolytic editing</one> stimulierend wirkt. A: <one>Gre factors</one>.
240
+ - <one>Alternative splicing</one> is most commonly found in/for ... which mRNAs? For <one>regulatory sequences</one> <two>in mRNAs</two>.
241
+ - Name <one>four regulatory nucleotides</one>. A: (1) <one>cyclic AMP</one> (2) <one>cyclic GMP</one> (3) <one>ppGpp</one> (4) <one>cyclic di-GMP</one>
242
+ - Der <one>Output von Drosha</one> ist wie lange? A: Etwa 70 Nukleotide.
243
+ - Andere Bezeichnung für das <one>Polyadenylierungssignal</one>? <one>Schwanzsignal</one>.
244
+ - Nenne eine <one>strukturelle</one> Eigenschaft der <two>snRNAs</two>. A: Sie besitzen <one>viele Uridinnucleotide</one>.
245
+ - <one>Warum</one> braucht die <one>Aminoacyl-tRNA Synthetase</one> ein <two>editing center</two>? Um zwischen Isoleucin und <one>Valin</one> unterscheiden zu können.
246
+ - Which <one>protease</one> <two>activates the anti-sigma factor RseA</two>? <one>DegS</one>.
247
+ - Give four examples for <one>specific histone marks</one> associated with transcriptionally active genes. A: (1) acetylated H3K9 (2) <one>acetylated H4K16</one> (3) methylated H3K4 (4) <one>methylated H3K36</one>
248
+ - Name <one>three general ways</one> how <two>translation initiation</two> can be blocked. A: (1) starvation (2) <one>drugs</one> (3) <one>genetic manipulation</one>
249
+ - Was macht <one>Rtt103</one>? A: <one>Rtt103</one> ladet eine RNAse auf den CTD Tail der Polymerase.
250
+ - <one>Warum</one> wird mRNA verpackt mit Proteinen durch die eukaryotische Membran geschleust? Weil die RNA negativ geladen ist, und es ohne Abschirmung der Proteine schwer möglich ist, diese durch die Membran zu transportieren.
251
+ - Name <one>a kinase</one> that phosphorylates lipids. A: Die <one>PI 3-kinase</one>.
252
+ - <one>How</one> can <two>modification enzymes</two> protect? <one>Modification enzymes</one> transfer a methyl group onto the DNA.
253
+ - In gene expression: what does the abbreviation <one>ITAFs</one> <two>stand for</two>? <one>IRES trans-acting factors</one>.
254
+ - Nenne <one>zwei Beispiele</one> für RNAs die für <two>genome defence</two> zuständig sind. A: (1) <one>piRNA</one> (2) <one>siRNA</one>
255
+ - <one>CREB</one> ist was <two>für ein Typ eines Transkriptionsfaktors</two>? <one>CREB</one> ist ein <two>bZip-Protein</two>.
256
+ - Was <one>können</one> <two>Ribozyme</two>? Zum Beispiel <one>sich selbst ausschneiden</one>.
257
+ - Name a step in <one>eukaroytic gene expression</one> <two>that can not be found in</two> <three>Prokaryotes</three>. A: <one>Splicing</one>.
258
+ - Was ist mit dem Begriff <one>RNA-Editing</one> gemeint? <one>RNA-Editing</one> ist eine posttranskriptionale Modifikation von RNA deren Sequenz verändert wird.
259
+ - <one>How</one> is <two>an exon</two> defined? This is <one>any region retained in a mature RNA</one>.
260
+ - Wie kann <one>TBP</one> spezifisch die TATA Box erkennen? A: Durch <two>zwei Phenylalanin-Reste</two>.
261
+ - Was heißt <one>ADAR</one>? A: (<one>RNA editing</one>) by <two>Adenosine Deaminases that acts on RNA</two> (ADARs).
262
+ - <one>Womit genau</one> interagiert der <two>Mediator</two>? A: Mit dem <one>CTD Tail der Polymerase</one>.
263
+ - <one>Which general role</one> does <two>chromatin</two> have, <three>in regards to gene expression</three>? <one>Chromatin</one> in general <two>represses the expression of genes</two>.
264
+ - Warum der Name <one>Cosuppression</one>? Weil <one>sowohl</one> das Transgen <one>als auch</one> das endogene Gen unterdrückt werden (<two>suppression</two>).
265
+ - What is the general role of the <one>allosteric effector</one>? It <one>binds to the allosteric site</one> of the regulatory protein in such a way as to change its activity.
266
+ - The protein <one>U2AF</one> <two>binds where to</two>? To the <one>3' splice site</one>.
267
+ - Nenne <one>zwei Beispiele</one> für "bZIP Proteine"! A: (1) CREB (2) <one>JunD</one>
268
+ - Was ist der <one>non-sense-mediated RNA decay</one> und <two>wann tritt er ein</two>? A: Ein <one>RNA-Abbau</one> der die Zelle vor der Produktion funktionsunfähiger, verkürzter Proteine schützt, und immer dann einsetzt, wenn mRNAs mit "premature stop-Codons" im Cytoplasma auftreten. URL: https://en.wikipedia.org/wiki/Nonsense-mediated_decay
269
+ - Wenn der <one>Transkriptionsfaktor</one> <two>BCL11A</two> aktiv ist, geschieht was? Wenn der Zinkfinger-Transkriptionsfaktor BCL11A aktiv ist so steigt der Gehalt an adultem Hämoglobin an. URL: https://www.ncbi.nlm.nih.gov/gene/53335
270
+ - Was macht <one>TFIIH</one>? TFIIH <one>phosphoryliert</one> <two>die carboxyterminale Domäne der Pol II</two>.
271
+ - <one>Welche Relation</one> gibt es zwischen <two>ppGpp</two> und GTPasen? ppGpp can bind and inhibit GTPases.
272
+ - <one>Welche Sequenzfolge</one> hat die <one>Kozak sequence</one>? 5' <one>ACCAUGG</one> 3'
273
+ - Der <one>SP1-Transkriptionsfaktor</one> <two>besteht aus n Domänen</two>? SP1 besteht aus <one>zwei Domänen</one>.
274
+ - Wie wirken <one>HMGN-Proteine</one> allgemein in Bezug auf die Genexpression? <one>HMGN-Proteine</one> (High Mobility Group Nucleosome-binding proteins) fördern die Transkription von Genen im Chromatin. URL: https://en.wikipedia.org/wiki/HMGN
275
+ - <one>Sp1</one> <two>is linked to the maintenance of ... </two>? <one>methylation-free CpG islands</one>.
276
+ - Der <one>Mediator-Komplex</one> <two>lagert sich woran genau an</two>? An die <one>C-terminale Region</one> der <two>RNA-Polymerase II</two>.
277
+ - <one>4E-BP</one> <two>bindet an</two> (und inaktiviert dadurch) <two>welches Protein</two>? <one>eIF4E</one>. URL: https://en.wikipedia.org/wiki/EIF4E
278
+ - <one>Welche drei Domänen</one> hat die <two>lac-Repressor Untereinheit</two>? (1) DNA bindende Domäne. (2) Core Domain, sowie die (3) Tetramisierungs-domain.
279
+ - <one>Nucleotides may be removed one at a time</one> from the 5' and 3' of a <two>tRNA</two>, <three>in a process known as ... </three>? <one>Trimming</one>.
280
+ - Wie funktionieren <one>release factors</one>? Sie lösen die Hydrolysis der Peptidyl-tRNA aus, die an der P-Site ist. Das Protein wird dadurch freigesetzt.
281
+ - Name <one>an advantage</one> for a cell to "regulate post transcription-initiation"? The <one>response time can be reduced</one>.
282
+ - Why is <one>control of enzyme activity</one> important in gene expression? Because it <one>allows for a fast response</one>.
283
+ - Nenne eine Kuriosität von <one>Pol-III Promotoren. A: Sie befinden sich <one>downstream</one> von der Startstelle.
284
+ - <one>UBF Proteine</one> <two>ähneln welchen anderen Proteinen</two>? <one>HMG1 Chromatin Proteinen</one>.
285
+ - <one>SL1</one> <two>bindet an DNA nur</two> wenn ... ? A: Nur <one>wenn sein Kofaktor UBF an die DNA gebunden ist</one>.
286
+ - <one>S. cerevisie</one> besitzt <two>n Kopien</two> an <three>YSPTSPS</three>, <four>Säugetiere</four> hingegen n? (1) <one>S. cerevisiae</one>: 26 Kopien von YSPTSPS. (2) <one>Säugetiere</one>: 52 Kopien von <three>YSPTSPS</three>.
287
+ - Was ist <one>STAB-SD</one> in der Genetik? Sogenannte <one>stabilizer SD Sequences</one>.
288
+ - In <one>apoptosis</one>: what means <two>DISC</two>? <one>Death inducing signalling complex</one>.
289
+ - Welche <one>Proofreading Eigenschaften</one> hat die RNA Polymerase? A: <one>Hydrolytic editing</one> und <one>Pyrolytic editing</one>.
290
+ - Was liegt in der <one>active site</one> der <two>RNA Polymerase</two>? <one>Mg²⁺</one>.
291
+ - Die <one>U4-snRNA</one> geht eine Basenpaarung mit ... ein? Mit der <one>U6-snRNA</one>; später auch mit der <two>U2-snRNA</two>.
292
+ - Nenne <one>zwei Möglichkeiten</one> wie Proteine zur Regulation in der Genexpression beitragen können. A: Mittels ihrer (1) Half-life, sowie mit Interaktion von (2) <one>Cofaktoren</one>
293
+ - Die <one>Rossman-Schleife</one> bei <two>tRNA-Klasse-I-Synthetase</two> macht was? Sie <one>bindet ATP</one> und heftet Aminosäure an die 2 Strich OH-Gruppe der entständigen Ribose.
294
+ - <one>RISC</one> akzeptiert was für einen Input? A: <one>ssRNA</one>.
295
+ - Nenne einen <one>Cofaktor</one> der <two>RNA Pol III</two>. A: Das <one>La-Protein</one>.
296
+ - <one>Where</one> can we find <two>polysomes</two>? In both <one>bacteria</one> and <one>eukaryota</one>.
297
+ - Was haben <one>starke Promotoren</one> und <two>womit interagieren sie</two>? A: <one>Starke Promotoren</one> <two>besitzen ein UP Element</two>, welches mit dem Carboxyteil der Alpha-Untereinheit der Polymerase interagiert.
298
+ - <one>Which protein</one> recognizes both <two>tRNA-sec</two> and the <two>stem-loop</two> in Prokarya? <one>SelB</one>.
299
+ - <one>When Arabinose is absent</one>, <two>how</two> does the <three>Arabinose operon</three> behave? It is <one>repressed</one> <two>in this case</two>.
300
+ - <one>BamH1</one> <two>schneidet an welcher Sequenzfolge</two>? <one>GGATCC</one>.
301
+ - Name <one>three different RNA products</one> of Polymerase II. A: (1) <one>hnRNA</one> (2) <one>mRNA</one> (3) <one>snRNA</one>
302
+ - Definiere den Begriff <one>trans-splicing</one>. A: Beim trans-splicing wird <one>die Information von zwei oder mehr verschiedenen mRNAs kombiniert</one> (findet man in "Trypanosomen" und <two>Euglenoiden</two>).
303
+ - The <one>proofreading of DNA polymerase III</one> <two>requires what specific activity</two>? 3' to 5' exonuclease activity.
304
+ - Does the <one>TBP</one> bind to the minor or the major groove of DNA? <one>TBP</one> <two>binds to the minor groove of DNA</two>.
305
+ - <one>Welche Sigmafaktor-70 Region</one> ist <two>für das promoter melting zuständig</two>? <one>Region 2.3</one>.
306
+ - <one>Which bacterial protein</one> <two>helps a sRNA bind to its target mRNA</two>? The protein <one>Hfq</one>.
307
+ - <one>Which bacterial, ribosomal subunit</one> binds the mRNA? The <one>30S subunit</one>, the <two>small subunit</two>.
308
+ - Wie geht die <one>Consensus Sequenz</one> der -35 Region? A: <one>TTGACAT</one>.
309
+ - The <one>PABP</one> (<two>Poly(A)-binding protein</two>) <three>covers how many nucleotides</three>? Around <one>50 nucleotides</one>.
310
+ - Wie lange <one>"überlebt"</one> der <two>Sigmafaktor 32</two> normalerweise, bevor er degradiert wird? Vergleiche dies bei Hitze. A: Etwa <one>2 Minuten</one>; <two>bei Hitze ist der Sigmafaktor allerdings viel stabiler</two>.
311
+ - In Eukaryoten: <one>welche Proteine</one> erkennen <two>premature termination codons</two>? <one>UPF-Proteine</one> (up frameshift). URL: https://en.wikipedia.org/wiki/UPF1
312
+ - <one>How long</one> is <two>the final tmRNA</two>? <one>363 nucleotides</one>.
313
+ - Name <one>an organism</one> <two>containig catalytic RNA</two>. A: <one>Oxytricha nova</one>.
314
+ - <one>In mammals</one>: who or what recognizes "nonsense codons" within a mRNA? <one>Exon-junction complexes</one>.
315
+ - <one>Welche Zielaminosäuren</one> haben <two>SH2-</two> und <two>SH3-Domänen</two>? (1) <one>SH2</one>: <two>Prolin</two> (2) <one>SH3</one>: <two>Phosphotyrosin</two>
316
+ - <one>Antisense RNA</one> <two>ist komplementär zu ...</two>? Zu <one>mRNA</one>.
317
+ - Name <one>two factors</one> that <two>help dissociate ribosomal subunits</two>. A: (1) <one>RRF</one> (2) <one>EF-G</one>
318
+ - Why do not all genes have <one>strong promoters</one>? Primarily because <one>strong promoters will keep gene expression tuned to the highest level</one>, <two>which represents a significant metabolic load</two>.
319
+ - If we see an <one>Up element</one>, what may we conclude from that? That this is a <one>very strong promoter</one>.
320
+ - <one>UBF</one> besitzt <two>eine besondere Domäne</two>. <three>Welche Eigenschaft weist diese Domäne auf</three>? A: Sie besitzt eine saure carboxymale Domäne (mit viel Asparaginsäure und Glutaminsäure).
321
+ - <one>DNA Polymerase II</one> <two>in eukaryotes</two> is composed of n subunits? <one>12</one>.
322
+ - Nenne <one>eine kurze Erkennungssequenz</one> die wir in/an Exons finden können - zumindest bei prä-mRNAs. A: <one>ESEs</one>: <two>Exon-Spleiß-Enhancers</two>.
323
+ - Nenne <one>eine nicht-tRNA</one>, <two>welche durch die RNA Polymerase III transkribiert wird.</two> A: Die <one>5S rRNA</one>.
324
+ - <one>Welche Aufgabe</one> hat <two>IF3</two>? <one>IF3</one> <two>bindet an eine 30S Untereinheit</two> und verhindert dessen Interaktion mit einer 50S Untereinheit.
325
+ - Name <one>a famous deadenylase</one> in mammalian cells. A: The <one>PARN-deadenylase</one>.
326
+ - <one>Compare the size</one> of <two>Histone H2A</two> with the variant macro-H2A. A: "Macro-H2A" is 3x as large as <two>H2A</two>. URL: https://en.wikipedia.org/wiki/H2AFY
327
+ - In der Genexpression in Bakterien: was heißt <one>ppGpp</one> und <one>pppGpp</one>? (1) <one>ppGpp</one>: <two>guanosine tetraphosphate</two> (2) <one>pppGpp</one>: <two>guanosine pentaphosphate</two>
328
+ - <one>Where</one> can we find the <two>peptide anticodon</two>? This 3-amino acid can be found in the Ribosome.
329
+ - Nenne <one>zwei</one> <two>transkriptionale Aktivatoren</two>. A: (1) <one>NtrC</one> und (2) <one>MerR</one>
330
+ - The <one>eukaryotic cap</one> is protected from decapping enzymes by which protein? By the cap-binding protein <cadetblue>eIF4E</cadetblue>.
331
+ - Nenne <one>drei Beispiele</one> für <two>HDAC Komplexe</two> (<three>Histon-deacetylase</three>). A: Der Sin3-Komplex, <one>NuRD</one> und <one>SIR2</one>.
332
+ - The first caps to be characteriszed by researchers originally came from ... ? <one>Viral mRNA</one>.
333
+ - A <one>Tudor domain</one> is a conserved protein structural domain originally identified in the Tudor protein encoded in ... which organism? <one>Drosophila</one>.
334
+ - Give an example for a <one>histone-modifying chromatin remodeling protein</one> that begins with the letter <two>C</two>. A: The <one>CREB-binding protein</one>.
335
+ - <one>Enhancers</one> in eukaryotes can lie in which of three different juxtapositions? (1) <one>upstream</one> (2) <one>downstream</one> (3) <one>intronic non-protein-coding genomic regions</one>
336
+ - Wie entsteht <one>Cap0</one>? A: Nach dem Anheften des G und der ersten Methylierung dieses G. Das entstehende Produkt wird Cap0 genannt.
337
+ - In order for the <one>lac-genes</one> to be transcribed, <two>which two requirements must be met</two>? (1) An inducer, like Allolactose, must bind to lacI-repressor (negative control) (2) The level of cyclic AMP must be high enough for the CRP-protein to bind to the CRP-binding site (positive control)
338
+ - The <one>fMet Initiation tRNA</one> <two>starts out where in the ribosome</two>? In the <one>P site</one> (thus: <two>in the middle</two>).
339
+ - What is the <one>opposite</one> of the term <two>inducer</two>? A <one>corepressor</one>. URL: https://en.wikipedia.org/wiki/Corepressor
340
+ - <one>When</one> would bacteria generate more <two>non-stop mRNAs</two> than normal? During <one>stress-response</one>.
341
+ - <one>When</one> was <two>splicing</two> discovered? <one>1977</one>.
342
+ - Die histidinähnliche Aminosäure <one>Diphthamid</one> kann <two>in welchem Protein in Eukaryoten</two> gefunden werden? Im <one>eukaryotischen Elongationsfaktor eEF-2</one>.
343
+ - Nenne ein Beispiel für einen Anti-Sigma Faktor mit Organismus der ihn kodiert hat. A: Faktor <one>AsiA</one> aus dem <two>Bakteriophagen T4</two>.
344
+ - <one>Antisense RNA</one> hat was für einen Einfluss auf die Genexpression? <one>Antisense-RNA</one> <two>inhibiert allgemein die Genexpression</two>.
345
+ - Nenne zwei Beispiele für Organismen die "trans-splicing" verwenden! A: (1) Trypanosomen (2) Euglenoiden
346
+ - In <one>Prokaryotes</one>: <two>which enzyme</two> <three>synthesizes new DNA molecules</three>? <one>DNA Polymerase III</one>.
347
+ - Nenne <one>zwei fettlösliche Liganden</one>. A: (1) <one>Tyroxin</one> (2) <one>Steroidhormone</one>
348
+ - Was zeigten die jeweiligen <one>swi</one> und <one>snf</one> Mutanten? (1) <one>swi</one> could not switch mating type. (2) <one>snf</one> could not grow well on sucrose.
349
+ - Was macht <one>UDPE</one>? A: <one>UDPE</one> <two>bindet Vitamin D</two>.
350
+ - Bei <one>copolymers ohne AUG</one>, <two>wo</two> starten die Ribosomen ihre Synthese? An zufälligen Stellen.
351
+ - Was heißt <one>b-ZIP</one> und welches Charakteristikum hat dieses Motiv? A: <one>Basic Zipper</one> (entsteht aufgrund mehrere Leucin-Reste).
352
+ - Der <one>Glucocorticoid-Rezeptor</one> <two>erkennt welche Sequenz</two>? A: <one>AGA ACA</one>.
353
+ - Give another name for <one>DNA-Sequenzelemente zur Unterdrückung der Genexpression</one>. A: <one>Silencer</one>.
354
+ - Was kann das Protein <one>SUMO1</one>? <one>SUMO1</one> kann <two>Ubiquitinierungen unterdrücken</two>.
355
+ - Die <one>Beta-Clamp</one> kooperiert mit welcher Polymerase? <one>Pol III</one>.
356
+ - The <one>peptidyl transferase reaction</one> <two>occurs between which two types of tRNA</two>? (1) <one>aminoacyl-tRNA</one> (2) <one>peptidyl-tRNA</one>
357
+ - Was macht <one>Ef-Ts</one>? Ef-Ts regeneriert Ef-Tu.
358
+ - Welche <one>RNA splicing Klassen</one> existieren (mit langem Namen nennen)? Es existieren folgende <one>3 Klassen</one>: Nuclear, group I Introns, <two>group II Introns</two>.
359
+ - In der Genexpression: wofür steht die ABkürzung "RTF"? <one>Regulatorische Transkriptionsfaktoren</one>.
360
+ - <one>How</one> can we define a <one>strong promoter</one>? <one>A strong promoter</one>, by defintion, is a promoter that <one>leads to a high rate of transcription initiation</one>.
361
+ - Wir können <one>Pol I</one>, <one>Pol II</one> und <one>Pol III</one> isolieren. <two>Wie aber können wir diese in ihre Untereinheiten zerlegen</two>? In Gegenwart von <one>SDS</one>.
362
+ - <one>Steroidhormon-Rezeptoren</one> haben welche gemeinsame Grundstruktur? A: <one>C, D, E</one>: hoch konservierte DNA Bindedomäne C, flexibles Zwischenstück D, wenig konservierte Liganden-Bindedomäne E.
363
+ - <one>Wo</one> findet man <two>riboswitches</two>? In der <one>5' UTR</one> Region von Genen.
364
+ - Nenne die vier Gruppen von Steroid-Hormone in Säugetieren. A: (1) Sexualhormone (2) Glucocorticoids (3) <one>Mineralcorticoids</one> (4) <one>Progestagens</one>
365
+ - How do the <one>rut-sites</one> look like? A: They contain about <one>40-60 nucleotides</one>, and are rich in <two>C</two>.
366
+ - Give another name for an <one>enhancer</one>. A: <one>UAS</one> (<two>Upstream Activating Sequence</two>).
367
+ - <one>Why</one> is <two>mRNA</two> unstable? Due to <one>the action of ribonucleases</one>.
368
+ - <one>How</one> can we <two>experimentally distinguish between protein synthesized anew</two>? Via <one>cycloheximide</one>.
369
+ - <one>Die ältesten Introns</one> gehören wahrscheinlich zur ... ? A: <one>Group II Introns</one>.
370
+ - Aufgabe von <one>IF3</one>? Ist an die kleine ribosomale Untereinheit gebunden und verhindert das sich diese UE zu schnell mit der grossen ribosomalen UE verbindet.
371
+ - Wer stellt 5' Ende, wer stellt 3' Ende von tRNA her? A: RNase P stellt 5-Strich Ende her, RNase Z stellt 3-Strich Ende her.
372
+ - Nenne <one>zwei RNA Chaperones</one>. A: Hfq und das <one>Fin-O Protein</one>.
373
+ - Wie könnte man verhindern, das das <one>Arabinose Operon</one> aktiv transkribiert wird? Durch <one>Zugabe von Glucose</one>. Glucose wirkt als Repressor des Arabinose Operon.
374
+ - Does <one>the transcriptome</one> faithfully represent <two>the proteome</two>? <one>No</one>.
375
+ - In einem <one>in-vitro System</one> mit RNA hören die RNA-Stränge oft auf sich selbst zu replizieren. Wieso? Die Bindung zwischen Catalyst und Produkt wird zu stark, das System kann sich daher nicht selbst aufrecht erhalten.
376
+ - <one>Which factor</one> <two>recognizes the TATA element</two> in eukaryotes? <one>TFIID</one>.
377
+ - Wir wollen beim Menschen <one>Transkriptionsfaktoren nachweisen</one>. Welche drei allgemeinen Regeln sollten wir hierzu befolgen, die uns dabei helfen herauszufinden ob ein bestimmtes Protein ein Transkriptionsfaktor ist? (1) Fähigkeit an spezifische DNA-Sequenzen zu binden (2) Gewebe-Spezifität der Wirkung (3) Gebundener Transkriptionsfaktor beeinflusst die Transkription entweder positiv oder negativ
378
+ - Is the lacI gene part of the lac operon? <one>No</one>.
379
+ - Das Substrat für die <one>Luciferase</one> ist ... ? <one>Luciferin</one>. URL: https://de.wikipedia.org/wiki/Luciferine
380
+ - In Bacteria: <one>which complex</one> <two>couples transcription with translation</two>? The <one>NusEG complex</one>.
381
+ - The <one>brachyury gene</one> encodes a transcription factor required for mammalian ... ? <one>Gastrulation</one>.
382
+ - <one>Which polymerase</one> transcribes the <two>U1 snRNA</two>? <one>RNA Polymerase II</one>.
383
+ - <one>TAFs</one> haben eine strukturelle Ähnlichkeit zu ...? A: <one>Histonen</one>.
384
+ - <one>Activation of eukaryotic genes</one> requires change in ... what <two>state</two>? The <one>state of chromatin</one>.
385
+ - Nenne <one>ein Beispiel</one> für <two>ein Protein mit Bromodomäne</two>. A: Der <one>Swi-SNF Komplex</one>.
386
+ - What is meant with <one>aa-tRNA</one>? This refers to an <one>aminoacyl tRNA</one>.
387
+ - Was ist ein <one>Anti-Sigmafaktor</one>? A: Ein Protein das mit einem Sigmafaktor interagieren kann und ihn inhibiert, sprich seine Fähigkeit an Promotor DNA zu binden unterbindet.
388
+ - <one>Wo genau</one> findet man die <two>Shine-Dalgarno-Sequenz</two>? Auf der <one>mRNA</one> (von Prokaryoten), <two>etwa 8 Basenpaare Upstream des (AUG) Startcodons</two>.
389
+ - Andere Bezeichnung für <one>snoRNA</one>? <one>U-RNA</one>.
390
+ - In welchen mRNA Typ kann man viele uORFs finden? In mRNAs die für <one>Wachstum-regulierende Proteine</one> kodieren.
391
+ - What is <one>the role of the snoRNAs</one>? They are required for <one>rRNA processing</one>.
392
+ - Give another term for <one>histone modifications</one>. A: The <one>histone code</one>.
393
+ - <one>Which receptor</one> binds <two>testosterone</two>? The <one>androgen receptor</one>.
394
+ - <one>Histones</one> containing the <two>H3K4me3 modification</two> are frequently found near ... ? Near <one>promoters of transcriptionally active genes</one>.
395
+ - <one>cAMP</one> in Eukaryoten <two>aktiviert welches cytoplasmatisches Protein</two>? Die <one>Proteinkinase A</one>. URL: https://en.wikipedia.org/wiki/Protein_kinase_A
396
+ - What means <one>deadenylation</one>? Deadenylation refers to <two>the removal of poly(A) tail from the 3' end</two>.
397
+ - <one>How</one> can we reveal if a protein codes for a functional <two>nuclear localization signal</two>? Via <one>translational fusion experiments</one>.
398
+ - What happens in <one>NGD</one>, the <two>no-go decay</two>? <one>mRNAs</one> displaying a <two>strong secondary structure</two> <three>can block ribosome progression</three>.
399
+ - <one>DNAsen</one> kann man <two>unterscheiden in ...</two>? <one>Endonucleases</one> und <one>Exonucleases</one>.
400
+ - Is <one>CREB</one> (the "cAMP response element binding protein") phosphorylated? <one>Yes</one>; <two>this can be determined via an antibody</two>, against the "phosphorylation status of serine 133".
401
+ - <one>Transcribing RNA polymerases</one> <two>swap between which three states</two>? (1) pre-translocated (2) reverse-translocated (3) post-translocated
402
+ - The <one>H-NS protein</one> <two>silences gene expression</two> at, at the least, two different promoters. Which ones? A: Onto <one>proU</one> and <one>bgl operons</one>.
403
+ - What is <one>the terminal nucleotide</one> of the <two>tRNA 5' end</two>? <one>G</one>.
404
+ - Do <one>pH changes</one> modulate the activity of <two>Sp1</two>? <one>Yes</one>.
405
+ - Nenne ein Protein das den Zellzyklus stoppen kann. A: <one>p21</one>.
406
+ - Name <one>two different</one> <two>chromatin-remodeling complex families</two>. A: (1) the <one>SWI</one>/<one>SNF family</one> (2) the <one>ISWI family</one>
407
+ - Die <one>tRNA</one> ist mit der Aminosäure über welche Bindung verknüpft? Über eine <one>Esterbindung</one>.
408
+ - Typische Länge eines core promoter (in Eukaryoten, von-bis in Nukleotide)? A: <one>40-60 Nukleotide</one>.
409
+ - <one>CREB</one> <two>gehört zu welcher Familie</two>? A: <one>ATF-1</one> (<one>Activating Transcription Factor 1</one>).
410
+ - In der Genetik: wie ist eine <one>Attenuatorregion</one> definiert? A: Dies ist <one>eine DNA-Region an der sich entscheidet ob die RNA-Polymerase die Transkription fortsetzt oder nicht</one>.
411
+ - <one>NtrC</one> <two>erhält wie Energie</two>? Durch <one>ATP Hydrolyse</one>.
412
+ - Was genau ist ein <one>Thymin-Dimer</one>? Ein Thymin-Dimer bezeichnet eine kovalente Bindung zweier übereinanderliegender Pyrimidinbasen, eben 2x Thymine.
413
+ - In E. coli, <one>AUG</one>, <one>GUG</one> and <one>UUG</one> can serve as initiation codon. What additional codon can serve as initiation codon in E. coli? <one>AUU</one>.
414
+ - <one>Wo</one> finden wir die <two>BRE-box</two>? <one>Stromaufwärts</one> von der <two>TATA Box</two>.
415
+ - Angenommen wir müssen <one>terminal phosphate</one> von einer Polynucleotide chain entfernen. Welche Strategie könnte hier angewendet werden? Das Enzym <one>Phosphatase</one> kann hier verwendet werden.
416
+ - Give another name for <one>metagenomics</one>. A: <one>Environmental genomics</one>. URL: https://en.wikipedia.org/wiki/Metagenomics
417
+ - <one>Which three enzymes</one> are required for the <one>mRNA capping event</one>? (1) <one>RNA triphosphatase</one> (2) <one>guanylyltransferase</one> (3) <one>guanine-N7-methyltransferase</one>
418
+ - <one>Which enzyme</one> <two>introduces positive supercoils into DNA</two>? The <one>reverse DNA gyrase</one>. URL: https://pubmed.ncbi.nlm.nih.gov/28331998/
419
+ - We add <one>acetyl-groups</one> to the <two>N-terminal area of a protein</two>. What is the effect, in regards to such proteins? These proteins will be <one>more resistant to degradation</one>.
420
+ - Nenne <one>drei Gründe</one> warum Oligonucleotide wichtig sind. A: (1) DNA-Sonde (2) Primer für PCR (3) Sequenzierung
421
+ - Nenne <one>zwei Strukturelemente</one>, die charakteristisch für ein <two>Intron</two> sind und auch darin vorkommen. A: Ein <one>internes A</one> (<two>branch point site</two>) und ein <three>Py tract</three>.
422
+ - What is <one>LacUV5</one>? <one>LacUV5</one> is <two>a variant of the lac promoter</two> with an altered sequence in its -10 region. URL: https://en.wikipedia.org/wiki/LacUV5
423
+ - In einem eukaryoten Strukturgen, <one>wo</one> finden wir die GC-Boxen? <one>-90bp</one>.
424
+ - Woran bindet <one>SNP U1</one> respektive U2? <one>U1</one> bindet an das AG innerhalb der GU-AG und <one>U2</one> bindet an das A der <two>internal branch point</two>.
425
+ - Nenne eine <one>super-family</one> für <two>nukleare Rezeptoren</two>. A: <one>Steroidhormon-Rezeptoren</one>.
426
+ - The <one>Wnt proteins</one> <two>are rich in which amino acid</two>? <one>Cysteines</one>.
427
+ - Das <one>core enzyme</one> der <two>E. coli RNA Polymerase</two> besteht aus welchen Untereinheiten? Beta, Beta-Strich, 2x Alpha.
428
+ - Why do we make use of <one>polysome gradients</one>? We can use them <one>to show that different mRNAs will have a different amount of ribosomes attached</one>, and thus will show a differential amount of translation, and subsequently, protein level.
429
+ - Die <one>U5-snRNA</one> tritt an Stelle von welcher anderen snRNA? Der <one>U1-snRNA</one>.
430
+ - Was sind <one>chromosomale Domänen</one>? Sie definieren transkribierte und nicht-transkribierte Bereiche.
431
+ - Name <one>two domains</one> that can be found in <two>HP1</two>. A: (1) <one>chromodomain</one> (2) <one>chromoshadow domain</one>
432
+ - What is the <one>SWI-SNF complex</one> capable of doing? The <one>SWI-SNF complex</one> can reposition nucleosomes (in a test-tube assay) if ATP is present.
433
+ - Wie wirkt <one>Proflavin</one> auf dsDNA? A: Proflavin fügt ein Nucleotidpaar hinzu, oder entfernt eines.
434
+ - <one>Wie erkennen</one> <two>DNA-Glycosylasen</two> falsche Nukleotide? Mittels <one>base-flipping</one>.
435
+ - Die <one>SD-Sequenz</one> ist zu welcher Region komplementär? Der <one>16S rRNA</one>.
436
+ - What is meant with the term <one>internal promoter</one>? This is a promoter <one>located within the transcribed region</one>.
437
+ - Die <one>23S rRNA in Prokaryoten</one> entspricht was in Eukaryoten? Der <one>28S rRNA</one>.
438
+ - Name <one>the four steps in translation</one>. A: (1) Initiation (2) Elongation (3) Termination (4) <one>Ribosome recycling</one>
439
+ - Was ist <one>gRNA</one>? <one>guide-RNA</one>, die ist an RNA-editing beteiligt. URL: https://en.wikipedia.org/wiki/Guide_RNA
440
+ - <one>Welchen Effekt</one> sehen wir wenn <two>mTOR</two> das Protein S6 aktiviert? Dies fördert die Synthese ribosomaler Proteine, was wiederum die <one>Translationskapazität</one> der Zelle fördert.
441
+ - Was sind <one>Strukturanaloga</one>? Dies sind Substanzen, die wie natürliche Induktoren wirken können, jedoch nicht von dem Enzym metabolisiert werden können.
442
+ - <one>Who</one> precisely can decode <two>Lysine Methylation</two>? The <one>Chromodomain</one>.
443
+ - Name <one>a factor</one> that recognizes the BRE-element. A: The <one>TFB</one> (<two>transcription factor B</two>).
444
+ - <one>Wie</one> ergibt sich <two>die Identität einer tRNA</two>? Über die <one>Anticodon-Loops</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6462517/
445
+ - <one>Wie häufig</one> ist das <two>minor spliceosome</two> in Menschen zu finden? A: 1 in 1000 (also nur etwa <two>0.1%</two>).
446
+ - Welchen Effekt hat Rapamycin auf mTOR, und davon ausgehend, auf die Zelle? <one>Rapamycin inaktiviert mTOR</one> - und <two>reduziert dadurch die Proteinbiosynthese</two>.
447
+ - Name <one>two difficulties</one> that are encountered by Pol II during transcriptional elongation. A: (1) <one>Transcriptional arrest</one> (2) <one>Transcriptional pausing</one>
448
+ - <one>SRP</one> (<two>signal recognition particle</two>) binden woran? An das <one>Signal peptide</one> eines secretory proteins.
449
+ - Was heisst <one>MITE</one>? <one>Miniature inverted repeat transposable Element</one>.
450
+ - What is the <one>general impact of chromatin</one> in regards to gene expression? <one>Chromatin</one> itself <two>represses gene expression</two>.
451
+ - <one>Aminoacyl tRNA-synthetase</one> link amino acid to ... of tRNA? The 3' end of a tRNA.
452
+ - Der <one>cAMP-CAP Komplex</one> <two>verstärkt die Ablesung der DNA um ...</two>? Das <one>50-fache</one>.
453
+ - Die <one>TFII H</one> besitzt sowohl eine <two>Helikase-Aktivität</two> als auch eine <two>Kinase-Aktivität</two>. Wieso braucht sie diese beiden Aktivitäten? Die Helikase-Aufgabe entwindet die DNA. Die Kinase phosphoryliert den C-Terminus von Pol II.
454
+ - Nenne <one>eine biochemische Methode</one>, wie wir zwischen <two>Euchromatin</two> und <two>Heterochromatin</two> unterscheiden können. A: Behandlung mittels <one>DNase I</one>.
455
+ - <one>Wovor</one> schützt die <two>Methylierung</two>? Vor <one>Restriktion</one>.
456
+ - <one>Which two domains</one> can be found in <two>Gal4</two>? (1) <one>Activation Domain</one> (2) <one>DNA-Binding Domain</one>
457
+ - Nenne ein Beispiel in der Genexpression für <one>Substratrepression</one>. A: Das <one>trp-Operon</one> in <i>E. coli</i>.
458
+ - Der <one>eukaroytische eIF4E</one> wird durch welchen Komplex inaktiv gehalten? A: Durch <one>4E-BP</one>.
459
+ - What is a <one>dead kinase</one> <two>mutation</two>? This is <one>a mutation that inactivates a kinase</one>, which means that this kinase is now <two>incapable of phosphorylation</two>.
460
+ - <one>Welche zwei Schleifen</one> kann die trp mRNA ausbilden? (1) Terminatorhaarnadelschleife (2) Antiterminatorhaarnadelschleife
461
+ - <one>Promotor Escape</one> <two>ist assoziiert mit Phosphorylierung von welchem Serin</two>, und wie ist es bei Elongation? A: <one>Serin 5</one>, und <two>bei Elongation</two> <one>Serin 2</one>.
462
+ - What is <one>ratcheting</one> in molecular biology? The two tRNAs at the A and the P site are tilted relatively.
463
+ - <one>Wo</one> innerhalb einer Zelle findet man <two>POL II</two> und <two>POL III</two>? A: Im <one>Nucleoplasma</one>. URL: https://de.wikipedia.org/wiki/Karyoplasma
464
+ - <one>Wo</one> finden wir <two>upstream ORFs</two> allgemein? <one>Innerhalb</one> der <two>5' UTR einer mRNA</two>.
465
+ - Das <one>DNA Bindemotiv in CREB</one> besteht aus ... ? A: <one>Vielen basischen Aminosäuren</one> wie <two>Lysin</two> oder <two>Arginin</two>.
466
+ - Was produziert das <one>lin4 Gen</one>? A: Zwei RNA-Produkte: <two>miRNA</two>.
467
+ - Welche <one>intrazellulären Rezeptoren</one> verwenden <two>Zinkfinger-Motife</two>? Die <one>Rezeptoren für Steroide</one>, zum Beispiel.
468
+ - What is meant with an <one>ubiquitous promoter</one>? This is <one>a promoter that can drive expression of a gene</one> <two>in all tissues</two>.
469
+ - Is <one>Xeroderma pigmentosum</one> <two>dominant</two> or <two>recessive</two>? It is <one>a recessive disease</one>.
470
+ - Was produziert die RNAse <one>Dicer</one>? A: <one>dsRNA</one>, zwischen 21-25 Nukleotide lang, mit je 2 Nukleotiden Überhang.
471
+ - <one>Warum</one> ist es so schwer die <two>Replikationsursprünge in Säugetierzellen</two> zu identifieren? Da außenliegende Sequenzen einen großen Einfluss haben können.
472
+ - <one>Release Factors</one> binden wo genau? An die A-Stelle im Ribosom.
473
+ - Ein <one>Intron</one> das 300kb lang ist braucht wie lange zum transkribieren? <one>2.8 Stunden</one>.
474
+ - <one>WNT</one> baut was ab? A: <one>Beta-Catenin</one>.
475
+ - Nenne <one>zwei Fakten</one> zu <two>TRCF</two>. A: <one>TRCF</one> hat eine ATPase Aktivität und kann stehengebliebene RNA Polymerase zur Dissoziation bringen.
476
+ - <one>Andere Bezeichnung</one> für die <two>heat shock response</two>? <one>Unfolded protein response</one>.
477
+ - <one>Alpha-Amanitin</one> ist ein zyklisches Peptid das aus wievielen Aminosäuren besteht? <one>Alpha-Amanitin</one> besteht aus <two>8 Aminosäuren</two>.
478
+ - Was für eine Aufgabe hat <one>Region 2.3</one> des <two>Sigmafaktor</two>? A: <one>Promoter Melting</one> (<two>Transcription Initiation</two>).
479
+ - In eukaryotes, <one>at the capping step</one> - is the addition of the guanine residue, thus forming the cap, genetically encoded? <one>No</one>, it is not.
480
+ - <one>How</one> are <two>microRNA genes</two> denoted? With the symbol <one>mir</one>.
481
+ - Werden <one>eukaryote Chromosomen</one> wie <two>prokaryote Chromosomen</two> repliziert? <one>Nein</one>. Verschiedene Abschnitte im Chromosom werden zu unterschiedlichen Zeiten in der S-Phase repliziert.
482
+ - <one>Dyskerin</one> is responsible for <two>the conversion of ... to ... </two>? <one>Uridine</one> → <two>pseudouridine</two>.
483
+ - Wo zum Beispiel finden wir <one>Dipthamid</one>? A: Im eukaryotischen Elongationsfaktor <one>eEF-2</one>.
484
+ - Nenne einen "Ribozyme-Typ". A: Das <one>Hammerhead-Ribozyme</one>.
485
+ - Why are <one>enhanceosomes</one> necessary in eukaryotes? So as <one>to overcome the inertia of chromatin</one>.
486
+ - The <one>inducible form of nitric oxide synthase</one> (NOS2) <two>catalyzes the synthesis of nitric oxide</two> (NO) from arginine in response to ... ? Injury and infection.
487
+ - What <one>bridge</one> can we find in the eukaryotic cap? A <one>tri-phosphate bridge</one>.
488
+ - Was heißt <one>TOP mRNA</one>? <one>Terminal oligo-pyrimidine tract</one>.
489
+ - <one>H4K8</one>: <two>was fällt einem dazu ein</two>? A: <one>Bromodomain</one> im Swi-SNF Komplex. Er bindet an H4K8.
490
+ - <one>Exonucleases</one> <one>generate what</one>? <one>Mononucleotides</one>.
491
+ - Nenne ein Beispiel für einen <one>heterodimeren Transkriptionsfaktor</one>. A: <one>AP-1</one>.
492
+ - <one>Welche TAFs</one> erkennen das <two>Inr-Element</two>? (1) <one>TAF1</one> (2) <one>TAF2</one>
493
+ - <one>Mit welchem Organell</one> ist mTORC1 assoziiert? Mit dem <one>Lysosom</one.
494
+ - <one>Wann</one> wird die Initiator-Methyl-tRNA in Eukaryoten verwendet? Die 40S Untereinheit hat diese tRNA bereits gebunden bevor sie mit dem "scanning" entlang der mRNA beginnt.
495
+ - The <one>DNA-recognition rules</one> are of <two>which two types</two>? (1) <one>chemical</one> (2) <one>stereochemical</one>
496
+ - Nenne ein <one>Restriktionsenzym</one> welches <two>nur methylierte DNA schneidet</two>. A: <one>Dpn I</one>.
497
+ - What is the effect of binding of <one>EF-1</one>? This displaces the empty tRNA from the E-site under hydrolysis of GTP.
498
+ - Im Jahr 2009 wurden <one>self-replicated ribozymes</one> erstellt. <two>Wie lang waren diese RNAs</two>? Jedes war etwa <one>70 Nucleotide</one> lang.
499
+ - <one>Welche allgemeine Aufgabe</one> haben <two>snoRNAs</two>? Modifizieren RNA-Basen chemisch.
500
+ - Allgemein: <one>wenn ein Promotor methyliert wird</one>, so <two>führt dies zu welchem Effekt</two>? Dies führt zum <one>Abschalten des Gens</one>.
501
+ - How can <one>codons</one> contribute to the duration of gene expression? mRNAs containing <one>many rare codons</one> <two>will take longer to translate</two>.
502
+ - Do <one>eukaryotes</one> <two>typically have many copies of each tRNA gene</two>? <one>Yes</one>.
503
+ - <one>Where</one> can we find a <two>5' to 5' triphosphate bridge</two>? In the <one>eukaryotic 5' cap structure</one>.
504
+ - <one>Welchen Zweck</one> erfüllt die <two>Kozak-Sequenz</two>? Sie stellt die richtige Umgebung für das Initiationscodon (AUG) her.
505
+ - Nenne <one>zwei wichtige sekundäre Botenstoff beim Menschen</one>. A: (1) <one>Ca²⁺</one> und (2) <one>cAMP</one>
506
+ - Die <one>U2-snRNP</one> <two>ersetzt welche zwei Faktoren</two> wenn sie an die interne A-Site im Intron bindet? A: <one>U2AF</one> und <one>BBP</one>.
507
+ - Was meinen wir mit einer <one>bicistronischen mRNA</one>? Dies ist eine mRNA mit zumindest zwei offenen Leserahmen (<one>2 ORFs</one>).
508
+ - <one>What happens</one> in the <two>R-looping technique</two>? RNA is hybridized to its DNA template.
509
+ - <one>Bei welchen Genen</one> kann die <two>E-Box</two> gefunden werden? A: Vor allem vor <one>Proliferationsgenen</one>.
510
+ - <one>Steroid-Hormone</one> binden im Zellkern an ...? HRE (<two>Hormone-Responsive-Elements</two>).
511
+ - <one>Why</one> must <two>the reversal of chromatin-state</two> be sometimes rapid? So that a cell can quickly switch on or off a gene, in response to external signals.
512
+ - Der <one>Sigmafaktor 70</one> besitzt wie viele Regionen? <one>4</one>.
513
+ - <one>RNA-Polymerases</one> may undergo <two>slippage</two>, especially where? When they encounter <one>CA-repeats</one>.
514
+ - <one>One gene, one enzyme</one>. Name 3 general exceptions of this scheme. A: (1) alternative splicing (2) polyprotein (3) frameshift
515
+ - Aufgabe der <one>snoRNAs</one>? <one>Chemische Modifikation von rRNAs</one>.
516
+ - How many <one>different tRNA modifications</one> are known? At the least <one>70</one>.
517
+ - <one>Wo</one> findet man die <two>active site</two> bei der Polymerase? A: An der Basis der Pincers, innerhalb der active site cleft.
518
+ - <one>SP1</one> binds to which sequence? <one>GGCGCC</one>.
519
+ - Das <one>U6 snRNA Gen</one> besitzt <two>ein besonderes Strukturmerkmal</two>. <three>Welches</three>? A: Eine <one>TATA Box</one> bei Region-30.
520
+ - <one>In which direction</one> does the <two>Rho-factor</two> move? The <one>Rho-factor</one> moves from <two>5'</two> to <two>3'</two> direction along the mRNA strand.
521
+ - The <one>CCA-adding enzyme</one> uses what as input? Only <one>ATP</one> or <one>CTP</one>.
522
+ - Wer genau erkennt das <one>UP-Element</one>? A: Die <one>Alpha-CTD Region</one> der Polymerase.
523
+ - Nenne ein Thymin-Analog! A: <one>Bromouracil</one>.
524
+ - Wofür steht die Abkürzung <one>PTGS</one> in der Genexpression? <one>Post Transcriptional Gene Silencing</one>.
525
+ - Give one example for a <one>strong promoter</one> not starting with the letter <two>T</two>. A: The <one>SV40 promoter</one>.
526
+ - Name <one>three differences</one> between <two>promoters</two> and <two>enhancer elements</two>. A: Enhancer elements: (1) usually lie more distant to the target gene (2) can be active in both directions of the DNA strand and (3) lack binding sites for RNA polymerase II.
527
+ - Name one immediate advantage of <one>constitutive expression</one> over an inducible system. A: You do not need an inducer!
528
+ - What is the task of the <one>snoRNAs</one>? <one>snoRNAs</one> <two>modify ribosomal RNAs</two>.
529
+ - Was geht dem <one>Anticodon loop</one> voraus? Immer <one>zwei Pyrimidine</one>.
530
+ - <one>Von welchen zwei Dingen</one> ist die <two>DNA-Ligase</two> abhängig? Von <one>ATP</one> und von einem <two>Lysin-Rest im Enzym</two>.
531
+ - Another word for <one>Gal4 Enhancers</one>? <one>UAS</one>.
532
+ - What is meant with the term positive regulation? The presence of a bound protein is required for transcription.
533
+ - <one>Small silencing RNAs</one> <two>associate with which protein family</two>? With the <one>Argonaute protein family</one> (<two>AGO</two>).
534
+ - <one>Wieviele Basenpaare</one> umfasst der "open complex"? <one>14</one>.
535
+ - Was erlaubt der <one>NTP-Uptake channel</one>? Das neue Nukleotide an die active site der Polymerase gelangen können.
536
+ - Die <one>Methylgruppe am Cytosin</one> ragt in die große Rinne der DNA hinein. <two>Welchen Effekt kann dies haben</two>? Proteine die Methylgruppen erkennen, können nun binden. Zudem können Transkriptionsfaktoren verdrängt werden.
537
+ - Do we find <one>attentuation control</one> <two>in Eukarya</two>? <one>No</one>.
538
+ - <one>Welches Enzym</one> stellt das korrekte <two>3' CCA Ende</two> bei einer <three>tRNA</three> her? A: <one>tRNA Nucleotidyltransferase</one>.
539
+ - Are all eukaryotic polymerases multimeric enzymes? Yes.
540
+ - Nenne ein Protein das <one>AAUAAA</one> erkennt. <two>Aus wievielen Untereinheiten besteht dieses Protein</two>? A: <one>CPSF</one> (Cleavage and polyadenylation specificity factor), aus <two>vier Untereinheiten</two>.
541
+ - Name <one>a biological way</one> how gene expression patterns can change. A: When a <one>transposon</one> moves into a regulatory region.
542
+ - Der <one>Fructosetransporter</one> ist ... ? <one>GLUT5</one>. URL: https://de.wikipedia.org/wiki/GLUT-5
543
+ - <one>Welcher Teil</one> der bakteriellen Polymerase bindet DNA? Die <one>Beta' Untereinheit</one>.
544
+ - <one>Welche zwei Enzymaktivitäten</one> hat die Reverse Transkriptase? Eine RNAse Aktivität und eine DNA-Polymerase-Aktivität.
545
+ - Merkslogan zu <one>tRNA Wobble rules</one>? <one>C,A,G,U,I</one>.
546
+ - <one>Sulfolobus</one> species have <two>n replicons</two>? <one>3</one>.
547
+ - <one>mTORC</one> <two>kann einen Überschuß von Aminosäuren registrieren</two> - insbesondere von <three>welcher Aminosäure</three>? <one>Leucin</one>.
548
+ - Bei <slateblue>PolI Promotoren</slateblue>: <two>wie liegt TBP vor</two>? A: Im Verbund mit SL1.
549
+ - Nenne ein Beispiel für ein <one>Phosphoprotein</one>. A: <one>Alpha-Synuclein</one> (alpha-Syn).
550
+ - Welche <one>zwei Motive</one> haben <two>Leucine-Zipper Proteins</two>? (1) A basic region recognizing DNA sequence (2) a series of repeated leucin residues that mediate dimerization.
551
+ - <one>Wann</one> wird das <two>trp-Operon</two> gehemmt? <one>Nur wenn Tryptophan vorhanden ist</one>, und der resultierende trp-Repressorkomplex an den Operator binden kann.
552
+ - The <one>KH domain</one> <two>interacts with ...</two>? <one>ssDNA</one> and <one>ssRNA</one>.
553
+ - <one>How</one> can scientists <two>follow the progress of protein synthesis</two>? By <one>radioactive labelling of the amino acids</one>.
554
+ - Beim <one>mRNA Export</one>: <two>welcher Teil der mRNA verläßt den Zellkern zuerst</two>? Die <one>5'cap Struktur</one> <two>gelangt als erstes ins Cytoplasma</two>.
555
+ - <one>How</one> is the DNA positioned, in regards to the histones? <one>Histones</one> form the <two>interior core</two>; the DNA lies on the "surface of the histone discs".
556
+ - Nenne <one>eine allgemeine Einschränkung jeder DNA Polymerase</one>. A: Alle <one>DNA-Polymerasen benötigen einen DNA-Primer</one>.
557
+ - <one>UBE3A</one> kodiert für ... ? Eine <one>Ubiquitin-Protein Ligase</one>.
558
+ - In der Genexpression: was heisst STATs? <one>Signal transducers and activators of transcription</one>.
559
+ - What <one>fancy tunnel</one> can be found in the RNA-Polymerase? The <one>ribonucleotide triphosphate tunnel</one>.
560
+ - Nenne <one>zwei Metallionen</one> die von der RNA-Polymerase verwendet werden. A: (1) Mg2+ (2) <one>Mn2+</one>
561
+ - <one>pTEFB</one> ist was für ein Enzymtyp? A: <one>pTEFB</one> ist eine <two>Kinase</two>. URL: https://en.wikipedia.org/wiki/P-TEFb
562
+ - <one>Welche Fähigkeit</one> verliert <two>acetyliertes HMGA1</two>? A: Kann nicht mehr an DNA binden.
563
+ - In a <one>tRNA</one>: what is the <two>D-nucleotide</two>? This is the <one>Discriminator nucleotide</one>.
564
+ - <one>Where</one> may we find <two>diphtamide</two>? In the eukaryotic elongation factor <one>eEF2</one>.
565
+ - In gene expression: what is <one>PYLSI</one>? <one>PYLSI</one> is the <two>pyrrolysine insertion sequence</two>.
566
+ - <one>Nur wann</one>/<one>wie</one> können <two>STATs</two> in den Zellkern wandern? Nur wenn sie <one>im dimeren Zustand vorliegen</one>.
567
+ - Which <one>two substrates</one> are used by the <two>CCA-adding enzyme</two>? (1) <one>ATP</one> (2) <one>CTP</one>
568
+ - <one>mTORC1</one> is involved in at the least <two>7 important biological processes</two>. Which ones are these? A: (1) protein synthesis (2) lipid synthesis (3) autophagy (4) lysosome biogenesis (5) energy metabolism (6) cell survival/metabolism (7) <one>cytoskeletal organization</one>
569
+ - <one>Wieviele Nukleotide</one> umfasst das Tetrahymena self-splicing Intron? A: <one>413</one>.
570
+ - <one>Wo</one> kann man <two>Hämoglobine</two> detektieren? A: Nur <one>in roten Blutkörperchen</one> (<two>Erythrocyten</two>).
571
+ - <one>RNase A</one> schneidet wo? Nach einem <two>Pyrimidine</two>.
572
+ - <one>Which factor</one> <two>recognizes the cap during initiation</two>? <one>eIF4E</one>.
573
+ - What is <one>the first product of tRNA-Synthetase</one>? <one>Aminoacyl-AMP</one> (<two>+ PPi</two>).
574
+ - <one>Woher</one> nimmt die beladene tRNA ihre Energie um eine Aminosäure im Ribosom zu verknüpfen? Von <one>ATP</one>, das in AMP und PPi gespalten wird.
575
+ - For <one>translational repression of riboswitches</one>, <two>where</two> may we be able to find these riboswitches? Around the initiation site of translation.
576
+ - <one>FACT</one> ist <two>ein Heterodimer</two> und <three>besteht aus ...</three>? A: (1) <one>Spt16</one> (2) <one>SSRP1</one>
577
+ - What are <one>the two essential functions of DNA-Polymerases</one>? (1) primer function (2) <one>template function</one>
578
+ - <one>Riboswitches</one> in a cell function as ...? <one>Sensors</one>, <two>by binding to metabolites with high affinitay and specificity</two>.
579
+ - In gene expression, we have the <one>CPE</one>. What does <one>CPE</one> stand for? <one>Cytoplasmic polyadenylation element</one>.
580
+ - Why may some proteins have a <one>hinge-domain</one>? Because this allows for more <one>flexibility</one>, in particular for <two>transcription factors</two>.
581
+ - We know <one>mTOR</one>, but what is meant with <two>mTORC</two>, the <three>C</three> here? The <one>C</one> there stands for <two>complex</two>. URL: https://en.wikipedia.org/wiki/MTOR#Complexes
582
+ - Name a disadvantage of the <one>DNA Microinjection</one> technique. A: There will be <one>random integration</one> of the foreign DNA.
583
+ - Wie heißt das weltweit erste <one>anti-Sense Medikament</one>? <one>Vitravene</one>.
584
+ - Name <one>two eukaryotic replication initiation factors</one>. A: (1) <one>Orc1</one> (2) <one>Cdc6</one>
585
+ - Typische <one>Exon</one> Größe? <one>150 Nukleotide</one>.
586
+ - Anderes Wort für eine <one>Reversion</one> an einem anderen Ort? A: <one>Double Mutant Reversion</one>.
587
+ - Bei der <one>DNA Replikation</one>: <two>was geschieht mit dem Pyrophosphat das abgespalten wird</two>? Es wird mittels des Enzyms <one>Pyrophosphatase</one> sehr schnell in 2 Phosphor umgewandelt.
588
+ - Nenne einen <one>Faktor</one> der die Elongation stimuliert. A: <one>TFIIS</one>.
589
+ - <one>Inosin</one> <two>entsteht aus welcher Base</two>? <one>Hypoxanthin</one>. URL: https://de.wikipedia.org/wiki/Inosin
590
+ - <one>Which two domains</one> does the <two>RNase P</two> have? The <one>S-domain</one> (<two>specificity domain</two>) and the C-domain ("catalytic domain").
591
+ - Bei <one>bZIP Proteinen</one>, <two>wo</two> liegt die DNA Bindedomäne? A: Die liegt genau <one>vor</one> dem Leucin-Zipper Motiv.
592
+ - <one>Metallothionein Promotoren</one> können künstlich wie aktivieren werden? Durch <one>ZnSO₄</one>. URL: https://de.wikipedia.org/wiki/Zinksulfat
593
+ - <one>Which sigmafactor</one> controls the <two>heat shock response</two>? <one>RpoH</one> aka <two>Sigmafactor 32</two>. Mnemonic: <three>H</three> for <three>Heat</three> (or <three>Hitze</three> in german).
594
+ - <one>Wie viele Restriktionsendonucleasen</one> sind bekannt? A: <one>Über 3000</one>. URL: https://en.wikipedia.org/wiki/Restriction_enzyme
595
+ - Nenne einen <one>zellulären Prozess</one> bei dem <two>zwei Transester-Reaktionen</two> involviert sind. A: <one>Splicing</one>.
596
+ - Nenne <one>ein Protein</one> das der Telomerase den Zugang zu den Telomeren erschwert. A: <one>POT1</one> - Protector of Telomeres. URL: https://en.wikipedia.org/wiki/POT1
597
+ - What ist he normal job of <one>Elongation Factor 2</one>? It brings a charged tRNA to the Ribosome.
598
+ - <one>Gene expression</one> may be compared in several different experimental conditions. <two>Provide two examples here</two>. A: (1) normal versus diseases tissue (2) cell lines with or without drug treatment
599
+ - What is the effect of a <one>release factor</one> that binds to the A site of a ribosome? It alters the activity of the peptidyl transferase such that it adds a water molecule to the carboxyl terminus of the nascent polypeptide.
600
+ - <one>Acetyl groups</one> are added to <two>histone proteins</two>, by ... ? <one>Histone Acetyltransferase enzymes</one>. URL: https://en.wikipedia.org/wiki/Histone_acetyltransferase
601
+ - Molekular betrachtet: was bewirken <one>Cycline</one>? A: Cycline bewirken eine konformationelle Änderung in den Cdk-Kinasen (einschalten, ausschalten).
602
+ - Nenne eine Methode mit der <one>Ribosome</one> gut untersucht werden können. A: Die <one>Kryoelektronenmikroskopie</one>.
603
+ - <one>Rezeptoren</one> lassen sich charakterisieren nach welchen drei Kriterien? (1) ihrer "Lokalisation": Zytoplasma/Zellkern, Zellmembran (2) ihrer "molekularen Struktur" (3) dem <one>beteiligten Signalübertragungsweg</one>
604
+ - <one>Phosphorylation</one> <two>requires what</two>? <one>ATP</one>.
605
+ - Die Energie beim <one>supercoiling</one> stammt von ... ? Von <one>ATP</one>. Das <two>Induzieren von supercoils</two> benötigt Energie; das Entfernen (relaxieren) hingegen benötigt keine Energie.
606
+ - Die Endonuclease <one>UvrABC</one> ist mit welchem Phänomen assoziiert? A: <one>Transcription coupled repair</one>.
607
+ - What is the primary advantage of the <one>deadenylation-independent mRNA decay pathway</one>? It is initiated by decapping and is not dependent on prior deadenylation.
608
+ - Was macht das Enzym <one>Disulfidisomerase</one>? Die Disulfidisomerase baut Disulfidbrücken um.
609
+ - Der <one>precursor von mRNA</one> (auch der ausgeschriebene Name) ist ... ? <one>Heterogeneous nuclear RNA</one> (<two>hnRNA</two>).
610
+ - Das <one>TFII-I Protein</one> in Eukaryoten, kann woran binden? An das <one>Inr-Element</one>.
611
+ - Are the <one>three different initiation codons</one> functionally the same? <one>No</one> - <two>GUG</two> and <two>UUG</two> are <three>used less frequently</three> due to a less strong base-to-base interaction.
612
+ - Die <one>Alpha-Helix</one> die den-10 Bereich erkennt, besitzt welche besonders charakteristische Eigenschaft? A: <one>Aromatische Aminosäuren</one>.
613
+ - In genetics: what is meant with the term <one>Inducer</one>? An <one>inducer</one> is <two>an effector molecule</two> involved in the <three>induction of gene expression</three>.
614
+ - How do <one>primary tRNAs</one> <two>differ</two> from <three>mature tRNAs</three>? Primary tRNAs contain a 5' leader and a 3' trailer; mature tRNAs do not.
615
+ - Why may <one>mammalian mRNA</one> <two>require Cap2</two>? Because it can increase the efficiency of translation.
616
+ - In der Gentechnik: was heißt <one>SELEX</one>? A: <one>Systematic Evolution of Ligands by EXponential Enrichment</one>.
617
+ - Which <one>elongation factor</one> <two>causes the small ribosomal subunit to translocate</two>? <one>EF-G</one>, bound with <two>GTP</two>.
618
+ - Was können die Enzyme <one>TuTases</one>? TuTases sind <one>U-adding enzymes</one>, die 1 U oder viele U an das 3' Ende gespaltener mRNA hinzufügen können.
619
+ - Was können <one>SH2 Domänen</one>? <one>SH2 Domänen</one> können an die P-Tyr-Reste eines Proteinpartners binden.
620
+ - <one>Wie groß</one> (in kDa) ist <two>Transferrin</two> und wieviel Eisen kann es binden? A: <one>80 kDa</one>, und kann <two>2 Eisen</two> / <two>Transferrin</two> binden.
621
+ - Give one example for a <one>regulatory nucleotide</one>. A: <one>cyclic AMP</one> (<two>cAMP</two>).
622
+ - Nenne ein Beispiel für ein Protein das einen "Leucine zipper" enthält. A: Das <one>CREB-Dimer</one>.
623
+ - Warum ist das Wort <one>Homöostase</one> ein eher falscher Begriff, aus Sicht der Genexpression? Da eigentlich ein <one>dynamisches Equilibrium</one> gemeint ist; also laufend weiterhin Veränderungen und somit auch aktive Genexpression. URL: https://de.wikipedia.org/wiki/Hom%C3%B6ostase
624
+ - <one>Alternative Polyadenylierung</one> wird oft kombiniert mit ... welch anderem zellulären Prozess? <one>Alternativem Splicing</one>.
625
+ - Name <one>three reasons</one> why we require the eukaryotic cap. A: (1) It protects the mRNA from exonucleases (2) it is required for initiation of translation (3) aids mRNA transport from nucleus to the cytoplasm
626
+ - <one>Welche Aufgabe</one> hat das <two>rudder</two> in der Polymerase? Diese Schlaufe trennt die DNA-Stränge.
627
+ - In Eukaryoten: wie kann die <one>Adenylatzyklase</one> aktiviert werden? Durch <one>Glukaogen</one>, das an die Adenylatzyklase binden kann.
628
+ - What is <one>the most important enzyme for an Okazaki fragment</one>? The <one>DNA ligase</one>.
629
+ - <one>Who or what</one> enters the <one>RISC complex</one>? <one>miRNA</one>.
630
+ - <one>Welche Aminosäuren</one> können <two>im Zuge der Interpretation des Histone Codes</two> <three>methyliert werden</three>? <one>Lysin</one> und <one>Arginin</one>.
631
+ - <one>How long</one> does it take a cell to transcribe the <two>dystrophin gene</two>? About <one>6 hours</one>.
632
+ - Name <one>two elements</one> to which an <two>activator</two> binds to. A: (1) a specific DNA target region (2) a component of the "basal transcription apparatus"
633
+ - <one>How many vertebrate mRNA</one> <two>contain at least one uORF</two> (<three>Upstream open reading frame</three>), in %? About <one>10%</one>.
634
+ - <one>How many steps</one> are required for the formation of the eukaryotic cap? <one>3</one>.
635
+ - Nenne ein Beispiel für eine <one>RNA-abhängige DNA Polymerase</one>. A: Die <one>reverse Transkriptase</one>.
636
+ - <one>Why</one> does a cell employ <two>mRNA surveillance</two>? So that it can detect and deal with errors in RNAs that may create problems in the cause of translation.
637
+ - Name a subunit/component of <one>mTORC2</one> (mammalian target of rapamycin complex 2). A: <one>RICTOR</one>. URL: https://en.wikipedia.org/wiki/RICTOR
638
+ - Nenne <one>eine Gemeinsamkeit</one> von <two>group II introns</two> und dem <two>spliceosome</two>. A: Wahrscheinlich ein gemeinsamer Vorfahre.
639
+ - <one>5S</one> gehört zu ... ? A: <one>rRNA</one>.
640
+ - <one>Karyopherins</one> are nuclear transport receptors that bind to ... ? <one>Nups</one>.
641
+ - Beschreibe die Rolle von <one>IF1</one>, IF2 und IF3. A: IF3 sorgt dafür das die beiden Ribosomen-UEs getrennt bleiben (wirkt an der 30S UE), IF1 und IF2 sorgen dafür das nur cognate tRNA an den P-Ort gelangen können.
642
+ - Name <one>a human hormone</one> that <two>can cause differentiation of human erythroblasts</two>. A: The <one>thyroid hormone</one>.
643
+ - Sollte man <one>Adenosin Desaminase</one> oder <one>Adenosin Deaminase</one> verwenden? Da kann nur der Begriff <one>Adenosin Desaminase</one> richtig sein, da dies die deutsche Bezeichnung ist. Im Englischen heisst das Enzym hingegen <two>Adenosine deaminase</two>.
644
+ - <one>Wann</one> kommt es zur Bildung eines <two>closed complex</two> bei der Transkription? In der ersten Phase der Initiation.
645
+ - The <one>addition of up to 200 adenosine residues onto a nascent RNA</one> is also <two>called ... </two>? <one>Polyadenylation</one>. URL: https://en.wikipedia.org/wiki/Polyadenylation
646
+ - <one>Wo</one> ist das <two>decoding center</two>? A: Auf der <one>30S Untereinheit</one>, in der Nähe der A-Site.
647
+ - The <one>La-Protein</one> binds to ... ? The La-protein binds to the 3' end of transcripts.
648
+ - What must happen before <one>decapping</one> of mRNA can occur? <one>Deadenylation</one>.
649
+ - <one>Wo</one> (zellulär betrachtet) finden wir <two>Drosha</two> und in welcher Organismengruppe? A: Nur im Nucleus, und nur bei Tieren (nicht bei Pflanzen)
650
+ - <one>Ab welchem Zeitpunkt</one> kann man sagen, das die Polymerase dem Promoter entflohen (<two>escaped</two>) ist? A: Nachdem sie 10 Nukleotide synthetisiert hat.
651
+ - What is the major task of the <one>tmRNA</one>? The <one>tmRNA</one> <two>frees stalled ribosomes</two>.
652
+ - Was heißt <one>PI3K</one>? <one>Phosphoinositide 3-Kinase</one>.
653
+ - Wie wirkt der <one>FACT Komplex</one> molekular? Der FACT-Komplex blockiert eine starke DNA-Bindestelle auf den Histonen.
654
+ - <one>Welche drei Enzyme</one> führen die eukaryotische CAP-Reaktion durch? A: In Reihenfolge: RNA-Phosphatase, Guanyl-Transferase, Methylase
655
+ - <one>Welcher Release-Faktor</one> <two>bindet GTP</two>? <one>RF3</one>.
656
+ - Wie können <one>DNA Sonden</one> <two>radioaktiv markiert werden</two>? A: Mittels <one>3²P-ATP</one> und dem Enzym <two>Polynukleotid Kinase</two>.
657
+ - Welche Aufgabe hat <one>hSPT5</one>? A: <one>hSPT5</one> rekrutiert die 5' Capping Enzymes an den (phosphorylierten) CTD-Teil der Polymerase.
658
+ - Was heisst <one>FACT</one>? A: <one>Facilitates Chromatin Transcription</one>.
659
+ - <one>Yanofsky</one> untersuchte welches Enzym? A: Die <one>Tryptophan Synthetase</one>.
660
+ - Was ist <one>der Hauptunterschied</one> zwischen class I Topoisomerases und class II Topoisomerase? class I Topoisomerase macht einen ss-break, class II hingegen macht einen ds-DNA break.
661
+ - <one>uAUGs</one> finden wir allgemein wo genau? In der <one>5'UTR region</one>.
662
+ - Why is <one>rifampicin</one> so useful in <two>molecular biology research</two>? Because <one>rifampicin</one> will inhibit transcription - unless an "open promoter complex" has already formed.
663
+ - Name a protein that can bind to AREs and thus destabilize mRNA. A: <one>TTP</one>: <two>Tristetraprolin</two>. URL: https://en.wikipedia.org/wiki/ZFP36 Tristetraprolin
664
+ - The <one>amino acid</one> is connected to the <two>CCA-3'</two> part of a tRNA through which linked group? Through an <one>ester bond</one>.
665
+ - Wie kann man <one>mRNA inaktivieren</one>? Mittels <one>anti-sense mRNA</one>.
666
+ - What is the main job of the <one>RNase P enzyme complex</one>? To remove the 5' leader sequence of tRNAs.
667
+ - <one>Drosha</one> belongs to which pathway? <one>Drosha</one> belongs to the <two>miRNA pathway</two>.
668
+ - The <one>sigma factor</one> <two>helps separate what exactly</two>? <one>dsDNA</one>, at the <two>-10 Region</two>.
669
+ - Wie kann die RNA-Polymerase II irreversibel gehemmt werden? Durch <one>Alpha-Amanitin</one>.
670
+ - <one>Welche Proteine</one> bilden den <two>cap-binding complex</two>? A: <one>A, E, G</one> (<two>eIF4A</two>, <two>eIF4E</two>, <two>eIF4G</two>).
671
+ - Der <one>Glucocorticoid-Rezeptor</one> kann was genau binden? <one>Cortisol</one>. Cortisol (ein Glucocorticoid) bindet bindet an die sogenannte LBD Domäne des Glucocorticoid-Rezeptors.
672
+ - Nenne alle Basen die im <one>tRNA Anticodon</one> vorkommen können. A: Folgende <one>fünf Basen</one> können vorkommen: (1) <two>A</two> (2) C (3) U (4) <two>G</two> (5) <two>I</two>
673
+ - <one>tRNA Länge</one> (von / bis)? <one>73-94 Nukleotide</one>.
674
+ - Was machen <one>Deiminasen</one>? A: <one>Deiminasen</one> <two>entfernen Arginin-Methylierung</two>.
675
+ - Complete the following slogan fitting to gene expression: <one>rRNA folds</one> how? By <one>intramolecular base pairing</one>.
676
+ - Was bewirkt <one>ChIP</one> effektiv? A: Ein Auftrennen zwischen Euchromatin und Heterochromatin.
677
+ - Die <one>MAPK Kinase</one> kann welchen Transkriptionsfaktor im Zellkern aktivieren? <one>Elk-1</one>.
678
+ - Was heisst <one>NRPS</one>? <one>Nichtribosomale Peptidsynthetase</one>. URL: https://de.wikipedia.org/wiki/Nichtribosomales_Peptid
679
+ - <one>Anderer Name</one> für eine <two>Protein-bindende Domäne</two>? <one>Transaktivierungsdomäne</one>.
680
+ - <one>Welche Kontrolle</one> gibt es beim <two>ara-operon</two>? A: <one>Positive Kontrolle</one>, durch <two>CRP</two>.
681
+ - Können <one>beladene tRNAs</one> <two>korrigiert werden</two>? <one>Ja</one>.
682
+ - Aufgabe von <one>TAT-SF1</one>? A: TAT-SF1 rekrutiert Komponenten des Splicing Apparates (wenn Serin 2 im Heptapeptid-Schwanz phosphoryliert ist)
683
+ - Wie kann der <one>lacUV5-Promotor</one> im Labor künstlich induziert werden? Mit Hilfe von <one>IPGT</one>, dem Induktor.
684
+ - <one>Bromodomains</one> and <one>Chromodomains</one> can recognize ..., respectively? (1) <one>Bromodomain</one>: can <two>recognize acetylated Lysines in histones</two>. (2) <one>Chromodomain</one>: can <two>recognize methylated Lysines in histones</two>.
685
+ - <one>mTORC1</one> can be regulated by growth factors, amino acids, stress or energy status. <two>Name an additional way how mTORC1 can be regulated</two>. A: <one>Oxygen</one>.
686
+ - Why do we use <one>Luciferase</one> as a <three>reporter gene</three> in eukaryotic cells? Because <one>Luciferase</one> is normally missing in eukaryotes and thus there will be no interfering background activity.
687
+ - Nenne <one>zwei Hormonklassen</one>. A: (1) <one>Peptidhormone</one> (2) <one>Steroidhormone</one>
688
+ - <one>TFIIS</one> hilft der Polymerase vor allem wobei? Beim <one>Proofreading</one>.
689
+ - Was ist mit dem Ausdruck ein <one>reprimierbarer Promotor</one> gemeint? Dies bezeichnet einen Promotor, bei dem die Expression durch ein Repressormolekül gehemmt wird.
690
+ - <one>Warum</one> finden wir <two>Attenuation</two> <three>nicht in Eukaryoten</three>? Weil Transkription und Translation räumlich getrennt ablaufen.
691
+ - <one>Which three sequences</one> do we require for the addition of the Poly(A) tail to eukaryotic mRNA? (1) the tail signal <one>AAUAAA</one> (2) a CA dinucleotide a few bases downstream (3) a <one>GU-rich tract</one>
692
+ - Define the term <one>antigene-oligonucleotide</one>. A: This refers to an <one>oligonucleotide</one> that <two>is designed to bind to a gene and block transcription</two>.
693
+ - Give another name for the transcriptional repressor <one>CTCF</one>. A: <one>CCCTC-binding factor</one>.
694
+ - Do <one>Histone-modifying proteins</one> have an <two>intrinsic sequence specificity</two>? No they do not. Some have been shown to associate with RNA 'promiscuously', that is to bind to many different RNAs.
695
+ - Was genau heisst <one>fMet</one>? <one>N-formyl-methionin</one>.
696
+ - An <one>amino acid</one> can be <two>adenylated at which terminus</two>? At its <one>carboxyterminus</one>.
697
+ - Was wird in einem <one>pulse-chase</one> Experiment verwendet? A: <one>Radioaktiv markiertes Uracil</one>.
698
+ - <one>How</one> was the <two>non-colinearity of eukaryotic genes</two> discovered? DNA was hybridized with the mRNA transcribed from it.
699
+ - In <one>mRNA decay</one>, which variant is more common - the <two>decapping pathway</two> or the <two>exosome pathway</two>? The <one>decapping pathway</one> is more common.
700
+ - Can <one>Alu elements</one> regulate genes? Yes, to some extent, typically via <two>ADARs</two> (<three>adenosine deaminase that acts on RNA</three>).
701
+ - Give another name for <one>knock in transfer</one>. A: <one>Exchange of function</one>.
702
+ - <one>LexA</one> is what kind of protein? <one>LexA</one> is <two>a bacterial repressor protein</two>.
703
+ - The Eukaryotic initiation factor eIF4GI is a component of the ...? The <one>cap-binding protein complex</one> <two>eIF4F</two>.
704
+ - Do <one>Eukaryotes</one> have a <two>SRP</two> (<two>signal recognition particle</two>)? <one>Yes</one>.
705
+ - What is the main task of the <one>guide regions</one> found in <two>guide RNAs</two>? This region templates U insertion or deletion via A-U G-U pairing.
706
+ - <one>Welche Polymerasen</one> sind an <two>Ereignissen im Nucleolus</two> beteiligt? A: <one>Alle drei</one>.
707
+ - Name two functions of RISC. A: (1) "represses translation" (2) <one>RISC</one> <two>promotes mRNA degradation</two>
708
+ - Wofür steht die Abkürzung <one>JAK</one>? A: <one>Just Another Kinase</one>.
709
+ - Nenne eine <one>Proteingruppe</one>, die RNA Pol II während der Elongation hilft. A: Das <one>Nus Protein</one>.
710
+ - Eine (bakterielle) Zelle besitzt in etwa wieviele <one>La-Proteine</one>? A: <one>10 Millionen</one>.
711
+ - Was lässt sich zum <one>Sigma-Release</one> sagen? A: Er benötigt fast immer mehrere Anläufe.
712
+ - Was heisst <one>MRP</one>, als Teil der Genexpression/Zellbiologie? A: <one>Mitochondrial RNA Processing</one>.
713
+ - Was macht die <one>Peptidyl-prolyl-Isomerase</one>? Konvertiert zwischen cis und trans Formen eines Proteins.
714
+ - Wie lautet die <one>anti-SD Sequenz</one>? <one>5'-CCUCCU-3'</one>.
715
+ - <one>Wo</one> wird ein <two>Stop Codon</two> erkannt? In der <one>A site eines Ribosoms</one>.
716
+ - Andere Bezeichnung für den <one>Nucleolus</one>? <one>Ribosomen-Fabrik</one>.
717
+ - Why is <one>RNA polymerase arrest</one> considered to be a problem? If the gene transcribed is essential then no new product is made - the cell may die.
718
+ - Im CRISPR/Cas system: what does <one>Cas</one> stand for? <one>CRISPR-associated proteins</one>.
719
+ - Wofür steht die Abkürzung <one>CBP</one>? A: <one>CREB-Bindeprotein</one>.
720
+ - Input der <one>Aminoacyl-tRNA-Synthetase</one> ist ... ? <one>ATP</one>, <one>tRNA</one> sowie die <one>Aminosäure</one>.
721
+ - <one>Welchen Einfluss</one> hat <two>Glucose</two> auf die <three>Adenylatcyclase</three>? Glucose hemmt die Adenylatcyclase.
722
+ - Is the <one>Poly-A tail</one> important? Give a natural example to explain. A: Yes, for translation. Certain mRNAs within the early embryo lack Poly A-tail and can not be translated.
723
+ - What is <one>the substrate for RNA Editing events</one>? <one>Double stranded RNA molecules</one>.
724
+ - Nenne eine <one>ungewöhnliche Base</one> im Anticodon-Loop von tRNA. A: <one>Methylinosin</one>.
725
+ - Was heisst das <one>MAP</one> im <two>MAP-Kinase Pathway</two>? A: <one>Mitogen Activated Protein</one>.
726
+ - Which protein matures <one>tRNA 5' ends</one>? The <one>RNase P Enzyme complex</one>.
727
+ - Nenne einen <one>Organismus</one>, der <two>Pyrrolysin</two> verwendet. A: <one>Methanosarcina barkeri</one>.
728
+ - Who or what acts as <one>signal for degradation</one> in a cell? <one>Ubiquitin</one>. URL: https://en.wikipedia.org/wiki/Ubiquitin
729
+ - <one>Spc-mRNA</one> ähnelt wem? Der <one>16S rRNA</one>.
730
+ - Was braucht <one>Promoter Melting</one> in <three>Eukaryoten</three> genau? A: <one>ATP</one> (für TFII H).
731
+ - What are <one>recognition helices</one>? Recognition helices are domains that bind DNA.
732
+ - <one>Histone H1</one> is particularly <two>rich in which amino acid</two>? <one>Lysine</one>.
733
+ - <one>Chromatin remodelling</one> kann bei der ... ... von Transkriptionsfaktoren notwendig sein. A: Bei der <one>kooperativen Bindung von Transkriptionsfaktoren</one> notwending sein.
734
+ - What are <one>ncRNAs</one>? <one>non-coding RNAs</one>.
735
+ - What is meant with the term <one>enzyme induction</one>? The appearance of specific enzyme(s) only in the presence of its substrate(s).
736
+ - Masse einer <one>tRNA</one>, in kd? <one>25 kd</one>.
737
+ - <one>Tup1</one> ist ein ..? A: <one>Corepressor</one>.
738
+ - Definiere den Begriff <one>Amplicon</one>. A: <one>Primer-to-primer</one> Grenze in DNA.
739
+ - Why the name <one>stabilizing helix</one> in a helix-turn-helix? Because it stabilizes the first helix, by interacting hydrophobically with it.
740
+ - <one>mTOR</one> ist was für ein Protein (Typ)? mTOR ist eine <one>Proteinkinase</one>.
741
+ - Was heisst <one>Fen1</one>? <one>Flap-Endonuclease</one>.
742
+ - Name one way (a technique) how to store <one>protein-protein interaction</one> on a combinatorial scale. A: <one>Phage display</one>.
743
+ - What does it mean when a promoter lacks an UP-element? This promoter is probably a <one>weak promoter</one>.
744
+ - <one>RNA Polymerase III</one> in eukaryotes transcribes which genes? <one>tRNA genes</one>.
745
+ - What are <one>recognition helices</one>? Domains that bind DNA.
746
+ - <one>Aminoacyl-tRNA Synthasen</one> benötigen welche 3 Moleküle? A: (1) Die <one>Aminosäure</one> (2) die <one>dazugehörende tRNA</one> (3) <one>ATP</one>
747
+ - Which TF can bind to the <one>TATA Box</one>? <one>TFIID</one>.
748
+ - Was ist die katalytische Untereinheit des <one>SAGA-Complex</one>? <one>GCN5</one>.
749
+ - <one>Wo</one> finden wir den genetischen Mechanismus der <two>Attenuation</two>? Nur in <one>Bakterien</one>, da hier Transkription und Translation gekoppelt ablaufen kann.
750
+ - <one>Welches Ende</one> der RNA liegt im aktiven Zentrum bei PolyII? Das <one>3'OH Ende</one>.
751
+ - What are the <one>Polycomb-group proteins</one> and what are they doing? These proteins, discovered in fruit flies, can remodel chromatin such that epigenetic silencing of genes takes place.
752
+ - For <one>PAM recognition</one> in CRISPR/Cas systems, which "amino acid" is extremely important? <one>Arginine</one>.
753
+ - Name <one>a protein group</one> that often contains a <two>histon deacetylase</two>. A: <one>Corepressors</one>.
754
+ - Can <one>the removal of intervening sequences in eukaryotes</one> occur before or after polyadenylation has occurred? Yes.
755
+ - Can <one>riboswitches</one> control <two>alternative splicing</two>? Yes.
756
+ - Wie geht die <one>Shine-Dalgarno (SD) Sequenz</one>? <one>5'-AGGAGGU</one>.
757
+ - In der Genexpression: was meint man mit der <one>nucleosomal response</one>? Die Phosphorylierung von H3.
758
+ - <one>SPT6</one> bindet an ...? A: <one>H3</one>.
759
+ - In der Genexpression, wie lange ist das <one>MTE Element</one>? "10 bp", von 18 - 28.
760
+ - Was kommt nach der A-branch point im Intron? A: Ein <one>Py-Tract</one>.
761
+ - Was haben Proteine gemeinsam die <one>sekretiert</one> werden? Eine <one>Amino-terminale Sequenz</one>, die reich an hydrophoben Aminosäuren ist.
762
+ - Allgemein betrachtet: wie können <one>Regulatorproteine</one> spezifische Sequenzen in der geschlossene DNA Doppelhelix erkennen? Die <one>Außenseite der DNA Helix</one> kann von Proteinen gelesen werden. Genregulatorproteine können somit spezifische Nucleotidsequenzen erkennen ohne dass die Doppelhelix geöffnet werden muß.
763
+ - In CRISPR/Cas9: what is the <one>apo state</one>? Where Cas9 has <one>not yet bound the guide RNA</one>. URL: http://science.sciencemag.org/content/early/2016/01/13/science.aad8282.full
764
+ - Between an activator and the basal apparatus, we may be able to find ... ? The <one>coactivator</one>.
765
+ - <one>mRNA in Eukaryotes</one> is degraded where? In <one>P-bodies</one>.
766
+ - Was ist eine <one>onco-miR</one>? Eine onco-mIR ist <one>eine microRNA die mit Krebs (cancer) assoziiert ist</one>. MicroRNA (miRNA) sind kurze RNA Moleküle, die in etwa 22 Nukleotide lang sind.
767
+ - Man findet ein <one>Ribozyme</one> in einer Zelle. Was könnte man zuerst annehmen? Das dieses Ribozyme auch RNA abbauen mag.
768
+ - <one>hSPT5</one> ist was? A: <one>hSPT5</one> ist ein <two>Elongationsfaktor</two>.
769
+ - <one>Alpha-CTD</one> erkennt was? Das <one>UP-Element</one>.
770
+ - Wer entfernt <one>Introns</one>? A: Das <one>Spliceosome</one>.
771
+ - The protein called <one>Maskin</one> binds to ... ? To the <one>CPE</one> (<two>cytoplasmic polyadenylation element</two>).
772
+ - Mit welchem Protein beginnt die <one>PIC Formation</one>? A: Mit <one>TBP</one>.
773
+ - What is the normal task of the enzyme <one>Polynucleotide Phosphorylase</one>? Breaks down RNA.
774
+ - Wo beginnen wir mit dem Zählen bei den tRNAs? Vom <one>5' Ende</one> heraus.
775
+ - What is the immediate effect of the <one>lacI-Repressor</one> binding to DNA? It <one>causes looping of the DNA</one>.
776
+ - Methylated and acetylated lysines are important for ... in the nucleus. A: <one>Chromatin regulation</one>.
777
+ - Warum der Name <one>14-3-3</one> Proteine? 14-3-3 bezeichnet ein bestimmtes <one>Elutions- und Wanderungsmuster</one> jener Proteine in DEAE-cellulose Chromatograpie und Gelelektrophorese. Die 14-3-3 Proteine eluiert man in der 14th fraction of bovine brain homogenate, an Position 3.3 der nachfolgenden Elektrophorese (bereits 1967).
778
+ - DNA und RNA can be <one>nonspecifically stained</one> with ... ? <one>Ethidium bromide</one>.
779
+ - Das <one>MTE Element</one> (<two>motif ten</two>) befindet sich wo? Stromabwärts von der TSS; es unterstützt das <one>Inr-Element</one>.
780
+ - Was ist <one>template recognition</one>? A: Bindung der RNA Polymerase an den Promoter.
781
+ - Andere Bezeichnung für <one>cAMP</one>? Wieso ist <one>cAMP</one> so wichtig? A: <one>Second messenger</one>. Ein Ändern des cAMP-Gehalts führt dazu das eine ganze Reihe von Genen eingeschaltet bzw ausgeschaltet werden.
782
+ - Welche Region im Sigmafaktor agiert als <one>molecular mimic</one> von DNA? A: Der Sigmafaktor Bereich <one>1.1</one>.
783
+ - Ist <one>RNA-Editing</one> bei Säugetieren <three>Gewebe-spezifisch</three>? Ja.
784
+ - Which motif is associated with <one>Selenocysteine</one> and what exactly is the effect of this motif? <one>SECIS</one>. <two>Selenocystein Insertion Sequence</two>. Is involved in "misreading of UGA".
785
+ - What do we mean with the <one>ribosome code</one>? The functional specifity among ribosomal proteins regulates gene expression.
786
+ - Der <one>Sp1-Transkriptionsfaktor</one> besteht aus 1x Beta Faltblatt und einer Alpha-Helix. Wer von den beiden erkennt die DNA-Sequenzfolge? Die <one>Alpha-Helix</one>.
787
+ - Was ist die <one>H1RNA</one> in Säugetieren? Das ist der RNA Anteil in der RNase P.
788
+ - Warum war damals die Herstellung von <one>Poly-G</one> ein Problem? Die Guanine Reste in Poly-G bilden Wasserstoffbrückenbindungen zueinander aus. Es entstehen dadurch <one>Tripel-Helici</one> die nicht ans Ribosom binden.
789
+ - Where does <one>RNase A</one> and <one>RNase T</one> cut, respectively? <one>RNase T</one> cuts after G, RNase A cuts after C + U.
790
+ - Nenne eine Region, an die ein <one>U2AF-Protein</one> binden kann. A: Die <one>3'-Spleißstelle einer prä-mRNA</one>.
791
+ - Es gibt <one>Akt</one> in der Zelle, die wichtig bei der Signaltransduktion ist. Aber was ist <one>Akt</one> genau? <two>Akt</two> ist eine <one>Serine</one>/<one>Threonine Kinase</one>.
792
+ - Was macht die <one>PKA</one> im Zellkern? A: Sie überträgt eine Phosphat-Gruppe auf das <one>CRE-Bindeprotein</one>.
793
+ - The <one>protein S1</one> is part of ...? The <one>30S ribosomal subunit</one>.
794
+ - <one>Wovor schützt</one> die eukaryotische Cap primär? A: Vor <one>5'→3' Exonucleasen</one>.
795
+ - Give a general example for <one>constitutively active genes</one>. A: The <one>housekeeping genes</one>.
796
+ - Give an example for <three>a hypothetical nucleotide sequence</three>, 9 nucleotides in length, that would be able to trigger the <one>nonsense-mediate decay</one>. A: <one>AUG-UAA-UAG</one>.
797
+ - A. W. für <one>allgemeine Transkriptionsfaktoren</one>? <one>Basale Transkriptionsfaktoren</one>.
798
+ - Welche Aufgabe hat die <one>Beta-Galactosidase</one>? A: Die Beta-Galactosidase spaltet das Disaccharid <one>Lactose</one> in <two>Glucose</two> und <two>Galactose</two>.
799
+ - Nenne ein <one>zelluläres Gen</one> dessen mRNA eine IRES besitzt. A: Das Chaperon <one>BiP-Protein</one>.
800
+ - Physische Form von <one>hnRNA</one>? A: Komplexiert mit <one>hnRNP Proteinen</one>.
801
+ - Welche Aufgabe hat <one>TF-II A</one>? A: TF-II A stabilisiert die Bindung von <one>TFIID</one>.
802
+ - Was sind <one>uORFs</one>? <one>Upstream ORFs</one>.
803
+ - What is <one>the native PAM sequence</one> of <three>S. pyogenes Cas9</three>? <one>5'-NGG-3'</one>.
804
+ - What does a <one>ribosome frameshift</one> produce? An elongated version of the ORF1 protein.
805
+ - What happens with the non-coding NORAD when DNA is damaged? NORAD will be <one>relocated into the nucleus</one>. URL: https://www.cell.com/cell/fulltext/S0092-8674%2815%2901641-4
806
+ - Name the two components of every <one>riboswitch</one>. A: (1) <one>aptamer</one> (2) <one>expression platform</one>
807
+ - Wie kann ein <one>Transkriptionsfaktor</one> (für ein wissenschaftliches Experiment) nachgewiesen werden? Mit Hilfe eines <one>EMSA</one> (<one>Electrophoretic mobility shift assay</one>).
808
+ - How can <one>the initiator tRNA</one> be recognized by <three>initiation factors</three>? It has a nucleotide sequence distinct from that of the tRNA that normally carriers methionine.
809
+ - In <one>splicing</one>: the abbreviation <three>SD</three> may stand for ...? <one>Splice donor</one>.
810
+ - Welche <one>ribosomale subunit</one> trägt <three>E, P, A</three>? Die (prokaryote) <one>30S Untereinheit</one>.
811
+ - What are the <one>R-Proteins</one>? <one>Ribosomal proteins</one>.
812
+ - Why is <one>leaky scanning</one> employed? It allows for some genes to produce the same protein with and without a signal sequence attached at its N-Terminus.
813
+ - Was macht <one>FACT</one>? A: Trennt <one>H2A</one>/<one>H2B</one> ab.
814
+ - Give another expression for <one>alternative splicing</one>. A: <one>Exon skipping</one>.
815
+ - Who or what determines whether to interpret the Stop Codon <one>UGA</one> as a stop codon, or as <one>Selenocystein</one>? The <one>SECIS element</one>.
816
+ - Name the six <one>CHiP-steps</one>. A: (1) Crosslink sample with formaldehyde, (2) extract crosslinked chromatin, (3) shear chromatins, (4) immunoprecipitate target protein, (5) purify DNA from immunoprecipitat, (6) detect sequences of interest.
817
+ - Abstand zwischen den <one>Polysomen</one>, in <one>n Nukleotide</one>? Etwa <one>80 Nukleotide</one>.
818
+ - Die <one>Tryptophansynthese in E. coli</one> benötigt wieviele Gene? <one>5</one>.
819
+ - Name a protein that can bind the cap structure. A: <one>eIF4C</one> (Mnemonic: C ... Cap).
820
+ - In <one>Saccharomyces. cerevisiae</one>: wieviel % der Gene produzieren RNA als Endprodukt? Mehr als 10% (also mehr als <two>750 Gene</two>).
821
+ - In humans: how many of their genes undergo alternative splicing? More than 90%.
822
+ - <one>Histones</one> typically have what charge? <two>Histones</two> have a net <one>positive</one> charge.
823
+ - Nenne ein Enzym in allen <one>RNA-Viren</one>. A: Die <one>RNA-abhängige RNA-Polymerase</one>.
824
+ - The <one>tRNAse Z enzymes</one> are what kind/type of enzymes? They are <one>endonucleases</one>.
825
+ - <one>CTCF</one> kann an welche Sequenz binden? A: An <one>ICR</one>.
826
+ - The protein <one>maskin</one> can bind which initiation factor? <one>eIF-4E</one>.
827
+ - Why is the <one>glmS ribozyme</one> more than <three>just a ribozyme</three>? Because it is also <one>a riboswitch</one>.
828
+ - Major advantage of <one>translational control</one>? <one>Speed</one>. URL: https://en.wikipedia.org/wiki/Translational_regulation
829
+ - Die <one>RNA-Pol II</one> besitzt <two>n AA</two>? <one>4500</one>.
830
+ - Das Protein <one>FACT</one> bei der Genexpression kann was genau? Es kann die H2A/H2B Dimere des Nukleosoms abtrennen.
831
+ - Wie nennen wir in Eukaryoten den Bereich, in den ein (wichtiges) <one>AUG</one> eingebettet sein muss? <one>Kozak-Sequenz</one>.
832
+ - Warum geben wir <one>NaOH</one> zur DNA? Um die <one>Wasserstoffbrücken zwischen der dsDNA-Doppelhelix zu zerstören</one>.
833
+ - Does the <one>RNA-Polymerase</one> only release pyrophosphate? No, it also releases one <one>Mg2⁺⁺</one>.
834
+ - Was sind die normalen zellulären Aktivitäten der <one>microRNA</one>? Sie unterdrücken genetische Aktivitäten in der Zelle.
835
+ - What are <one>isoaccepting tRNAs</one>? These are tRNAs that accept the same aminoacid, but have different anticodons.
836
+ - Das <one>bakterielle Holoenzym</one> besteht aus? Dem core Enzym sowie dem assoziierten Sigma-Faktor.
837
+ - Welcher <one>eukaryotische Elongationsfaktor</one> hat als strukturelle Besonderheit Diphthamid? <one>eEF-2</one>.
838
+ - Name a <one>cytoplasmic tyrosine kinase</one>. A: Src.
839
+ - When we see a gene in bacteria also have <one>an associated antisense-RNA</one>, what may we assume about this gene? It may encode a <one>potentially toxic product</one>.
840
+ - Wie kann man die beiden Untereinheiten des Ribosomes trennen? Mit Hilfe eines <one>Sucrose-Gradienten</one>.
841
+ - Was ist das Besondere an der <one>SD-Sequenz</one>? Sie enthält nur <one>Purine</one>.
842
+ - Wie nennt man die Basis der beiden Polymerase Pincers? A: <one>Beta-flap</one>.
843
+ - Allgemein: wie wirken jeweils <one>Enhancer</one> und <one>Silencer</one>? (1) <one>Enhancer</one>: die Transkription eines Gens wird erhöht. (2) <one>Silencer</one>: die Transkription eines Gens wird erniedrigt.
844
+ - Within the <one>nucleus</one> of eukaryotic cells, which RNA constitutes the <two>most abundant non-coding RNA</two> there? <one>Spliceosomal U snRNAs</one>.
845
+ - Nenne eine andere Bezeichnung für <one>SF1</one>. A: <one>BBP</one> - branch binding protein.
846
+ - Nenne 1 Protein das an <one>Sigmafaktor 32</one> bindet. A: DNA j.
847
+ - Name a huge advantage of <one>group I introns</one>. A: They do not require the help of protein factors.
848
+ - Die <one>MAPK-Kaskade</one> reguliert Gene, deren Produkte die ... ? <one>Zellproliferation stimulieren</one>. URL: https://en.wikipedia.org/wiki/MAPK/ERK_pathway
849
+ - Nenne ein Beispiel für einen <one>mammalian splicing repressor</one>. A: <one>hnRNPI Protein</one>.
850
+ - Das Poly(A)-Signal ist entweder <one>AAUAAA</one> oder <one>AUUAAA</one>. Welches davon ist seltener anzutreffen? <one>AUUAAA</one>.
851
+ - A. W. für "Aconitase"? <one>Iron response regulatory protein</one>.
852
+ - Ein "Leucin-Zipper" hat wieviele Alpha-Helices? Zwei.
853
+ - In general: an enhancer is a binding site for ... ? An activator protein.What do we mean with <one>circRNA</one>? This is simply circular mRNA.
854
+ - Name one way how to inhibit sigmafactors. A: With <one>anti-sigma factors</one>.
855
+ - Nenne ein Kennzeichen der "Initiator-Elemente". A: Sie sind sehr "pyrimidinreich".
856
+ - "Dimerisierte Rezeptor-Tyrosinkinasen" stellen eine Bindungsstelle für welches Protein dar? Das "Adapterprotein Grb2". URL: https://en.wikipedia.org/wiki/GRB2
857
+ - Who is the "most well studied eukaryotic activator"? "Gal4".
858
+ - Is the "TATA box" special, from its sequence alone? Yes - "TATAAT" is an A/T-rich sequence, so melting this apart is quite simple.
859
+ - What could happen if there is a point mutation in the "SD sequence"? This "could prevent a mRNA from being translated".
860
+ - The <one>tmRNA</one> carries which amino acid? "Alanine" (Mnemonic: tmRNA... ends with A; thus "Alanine").
861
+ - Which enzyme processes the 5' end of (pre)tRNAs? The "RNase P", an Endonuclease. URL: https://en.wikipedia.org/wiki/RNase_P
862
+ - Wo in der Zelle finden wir "MRP-RNPs"? (1) Nucleolus (2) Mitochondrien
863
+ - Nenne eine RNA die wir im eukaryoten SRP ("Signal Recognition Particle") finden können. A: Die "7SL-RNA".
864
+ - Gib zwei konkrete Beispiele für "irreversible Proteinveränderungen". A: (1) Hitzeinaktivierung (2) Proteolyse
865
+ - CRISPR-medated adaptive immunity occurs in which 3 stages? A, E, I. (1) acquisition stage (2) expression stage (3) interference stage
866
+ - Where in an eukaryotic cell can we find dipthamide? In the eukaryotic elongation factor "eEF2".
867
+ - Name a nonspecific RNAase inhibitor. A: The polysaccharide "heparin".
868
+ - Name a modification of tRNAs that can protect it against <one>hydrolysis by ribonucleases</one>. A: <one>Methylation</one>.
869
+ - Wie unterscheidet sich "Dihydrouridine" von "Uridine"? Dihydrouridine hat "2 H-Atome" mehr als Uridine; der Name deutet dies auch an.
870
+ - Wo finden wir die 5S-rRNA? Sie ist "Teil der großen ribosomalen Untereinheit".
871
+ - Der Swi-SNF Komplex ist was für ein Typ? Dieser "Chromatin-Remodeling-Complex" ist ein Coaktivator, der für seine Arbeit "ATP" benötigt.
872
+ - In der "Shine-Dalgarno Sequenz" finden wir vor allem welches Nukleotid? G - "AGGAGG". URL: https://en.wikipedia.org/wiki/Shine-Dalgarno_sequence
873
+ - The protein "maskin" can bind to ... ? CPE aka "cytoplasmic polyadenylation element".
874
+ - Explain the role of the protein maskin in not more than three words. A: "Impedes initiation factors".
875
+ - Wie nennt man den Übergang vom "closed binary complex" in den "open binary complex"? A: Transition bzw genauer "Isomerization".
876
+ - Does "alternative splicing" occur before capping? No.
877
+ - Wie lang ist das "optimum spacing" zwischen -10 und -35 Region? 17 bp.
878
+ - Welche Verbesserung erreichte man durch die Verwendung der "Taq-DNA-Polymerase"? Die Spezifität der PCR-Reaktion wurde erhöht, da DNA bei 72°C kopiert wird.
879
+ - How was the existence of the Ribosome of the A and P sites originally determined? With the antibiotic "puromycin".
880
+ - Was macht die "RNase D"? RNase D ist bei der Reifung von tRNAs wichtig, und zwar reift sie die 3' Enden der tRNA.
881
+ - Is "RNA turnover" a defense system? Yes - it can also help defend against viruses and parasitic elements.
882
+ - Which part of Methionine is modified with "N-formyl"? The +H3N end (Aminoterminus).
883
+ - Nenne ein Enzym das "RNAse H" inkludiert. A: Die "reverse Transkriptase".
884
+ - We wish to decrease the overall rate of protein synthesis, by modifying only one cellular factor. Which one? eIF2.
885
+ - What is a Twintron? A "Twintron" is an intron-within-intron, excised by sequential splicing reactions.
886
+ - tmRNA has which partner protein? SmpB - small protein.
887
+ - How many classes of tRNA synthetases exist? 2
888
+ - Name the two major substrates of mTORC1. A: (1) S6K1 (2) 4E-BP1
889
+ - Wann wurde mTOR im Menschen entdeckt? 1994.
890
+ - Was heisst "uORF"? upstream open reading frame.
891
+ - Give 2 examples for single-subunit RNA polymerase enzymes. A: (1) phages (2) organelles
892
+ - What means the abbreviation "shRNA"? Small hairpin RNA.
893
+ - Wo liegt das Gen für den Gerinnungsfaktor VIII im Menschen? Auf dem X-Chromosom.
894
+ - Was bedeutet "Translationskontrolle"? Auswählen der zu translatierenden mRNAs.
895
+ - Translation initiation comprises a mechanism in which the eIF4F ternary complex recruits a 43S preinitiation complex. The eIF4F ternary complex consists of which three components? (1) eIF4E (2) eIF4A (3) eIF4G
896
+ - What are "Isochizomers"? They have identical recognition sites, but not always the same cutting site.
897
+ - Der CTD-Schwanz einer eukaryoten Polymerase ist Teil welcher Untereinheit? A: TFIID.
898
+ - Wieviel % der Proteine in einer typischen Säugetierzelle ist, bei einer beliebigen Zeit, phosphoryliert? Etwa 1/3.
899
+ - Protein-Phosphorylation can occur on Serin, Threonine and Tyrosine. In Plants and Prokaryotes, on which additional Aminoacid? Histidine.
900
+ - Was genau bezeichnet man mit dem Begriff "RNA-Edition"? Dies ist der Fall wenn die Nucleotid-Sequenz einer RNA nach der Transkription verändert wird.
901
+ - Why does a cell encode DNA-Ligase? Because it is required for DNA replication.
902
+ - What is the main difference between Type I and Type II riboswitches upon metabolite binding? Type I undergoes only minor changes in its secondary structure, Type II riboswitches however undergo global conformational changes during metabolite binding.
903
+ - What means "gene knockdown"? This is an experimental technique by which the expression of an organisms gene is reduced.
904
+ - Ionenkanäle zeigen welche 3 Kontrollmöglichkeiten? (1) spannungskontrolliert (2) ligandenkontrolliert (3) mechanisch kontrolliert
905
+ - Welche zwei traditionellen Verfahren gibt es zur Identifizierung des Transkriptionsstartes von PolII? (1) S1-Nuclease Kartierung und (2) Primer Extension Methode
906
+ - TAF3 hat eine PHD-domain, den PHD-finger. Was kann diese Domain? Sie kann dimethylierte und trimethylierte H3K4 erkennen.
907
+ - Was kann eine <one>Chromodomain</one> erkennen? Methylierte DNA.
908
+ - What is a "riboswitch"? An RNA whose activity is controlled by the metabolic product or another small ligand.
909
+ - In der Genexpression, was heisst "SH2 domain"? Src Homology 2.
910
+ - Der Holorepressor besteht aus? Aporepressor und Corepressor.
911
+ - Primase: Wie lange sind die generierten Nukleotide? 8-12.
912
+ - Warum ist die Kenntnis der alternativen Tautomers wichtig? Da sie einen häufigen Fehler bei der DNA Replikation darstellen können.
913
+ - Nenne 4 Beispiele für zelluläre mRNAs die IRES verwenden und so keine 5 Strich Cap brauchen. A: BiP der schweren Immunglobulin-Kette, das Myc-Protein, ODC und FGF-2
914
+ - Definiere Scanning und nenne 3 Punkte die es erfordert. A: Scanning bezeichnet das Suchen des Ribosom nach dem AUG Startcodon, unter ATP-Verbrauch. Zudem benötigt es eIF1 und eIF1A.
915
+ - TFIIF bindet woran? A: An den Non-Template strand.
916
+ - Was ermöglicht NXF1? A: Den Übertritt der mRNA ins Cytoplasma.
917
+ - Was heisst GCN? A: General Control of Amino Acid Synthesis.
918
+ - Was bewirken Terminators? A: Sie triggeren das die Polymerase von der DNA dissoziiert.
919
+ - Woran genau bindet SP1? A: An GC-Boxen (GGGCGG)
920
+ - Nenne 3 Vertreter für HAT Komplexe! A: Yeast SAGA, PCAF, NuA3
921
+ - Der <one>Transkriptionsfaktor Sp1</one> besitzt <two>in seiner DNA-Bindungsdomäne</two> <three>wieviele aufeinanderfolgende Zinkfinger</three>? <one>3</one>. []
922
+ - <one>Unbeladene tRNAs</one> <two>tragen was genau an ihrem eigenen 5' Ende</two>, also am terminalen Ende? Ein <one>G</one>. []
923
+ - Give an example where <one>hydroxyprolin</one> can be found. A: In <one>collagen</one>. URL: https://en.wikipedia.org/wiki/Collagen []
924
+ - ... are <one>the major repositories of epigenetic information</one>. A: <one>Histones</one>. []
925
+ - Wie wird <one>CAP</one> <two>aktiviert</two>? Durch <one>cAMP</one>. []
926
+ - Können <one>Enhancer</one> <two>in Introns</two> vorkommen? A: <one>Ja</one>. []
927
+ - Wofür steht die Abkürzung <one>EMSA</one> in der Gentechnik? <one>Electrophoretic mobility shift assay</one>. URL: https://en.wikipedia.org/wiki/Electrophoretic_mobility_shift_assay []
928
+ - Die <one>TFIIH</one> <two>vereint welche zwei Aktivitäten</two>? (1) <one>Helikase-Aktivität</one> (2) <one>Kinase-Aktivität</one> []
929
+ - Die <one>RNA-Polymerase II</one> besteht aus <two>n Untereinheiten</two>? <one>Zwölf</one> (<two>12</two>). []
930
+ - Wie geht das <one>Polyadenylierungssignal</one> (<two>zwei Möglichkeiten</two>)? (1) <one>AAUAAA</one> (2) <one>AUUAAA</one> []
931
+ - <one>Welcher Initiationsfaktor</one> <two>fällt zuerst ab</two>? A: <one>IF3</one>. []
932
+ - Das <one>Inr-Element</one> trägt <two>an der +1 Position</two> <three>welches Nukleotid</three>? <one>A</one>. []
933
+ - Der <one>Rho-Faktor</one> bindet an ... ? <one>Rut-sites</one> (= <two>Rho utilisation sites</two>). URL: https://en.wikipedia.org/wiki/Rho_utilisation_site []
934
+ - Does the <one>Polymerase I</one> have a <two>CTD</two>? <one>No</one>. []
935
+ - <one>Where</one> can <two>riboswitches</two> be typically found, from a genetic point of view? In the <one>5' UTR</one>. []
936
+ - What does a <one>bromodomain</one> <two>bind</two>? <one>Acetyllysin</one> (<two>acetylated lysines</two>). []
937
+ - Wie können <one>His-Tags</one> <two>purified werden</two>, also gereinigt werden? Mit Hilfe einer <one>Nickel-Säule</one>. []
938
+ - Nenne eine chemische Substanz für die <one>Zellfusion</one>. A: <one>Polyethylenglycol</one>. URL: https://de.wikipedia.org/wiki/Polyethylenglycol []
939
+ - Can <one>RISC</one> <two>remove poly(A) tails</two>? <one>Yes</one>, that is a possibility - see the following URL. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4163081/ []
940
+ - Are <one>tRNAs</one> <two>ever methylated</two>? <one>Yes</one>, some are - on their 2'OH to produce <two>2'-OH-methyl tRNA</two>. []
941
+ - <one>Wo</one> in der Zelle können <two>snoRNPs</two> vorgefunden werden? Im <one>Nucleolus</one>. []
942
+ - Die <one>Pol II Heptapeptidfolge</one> <two>kann an welchem Ende gefunden werden</two>? <one>Carboxyterminal</one>. []
943
+ - <one>Wie viele Regionen</one> besitzt der <two>Sigmafaktor</two>? A: <one>Vier</one>. URL: https://de.wikipedia.org/wiki/Sigma-Faktoren []
944
+ - <one>How</one> is <two>the rotational movement of the ribosomal subunits relative to each other</two> called? <one>Ratchet</one>. []
945
+ - <one>Wie häufig</one> ist eine <two>TATA-Box</two> <three>bei Haushaltsgenen</three>? <one>Eher selten</one>. []
946
+ - Nenne die <one>drei Stoppcodons</one>. A: (1) <one>UGA</one> (2) <one>UAA</one> (3) <one>UAG</one> []
947
+ - Can a <one>tRNA</one> <two>recognize more than one codon</two>? Often it can, so <one>yes</one>. []
948
+ - In der Genexpression: nenne <one>ein Beispiel</one> für einen <two>Substrat-unähnlichen Effektor</two>. A: <one>Licht</one>. []
949
+ - <one>piggyBac</one> verwendet man vor allem <two>bei welchen Tieren</two>? Bei <one>Insekten</one>. []
950
+ - Im <one>lac-Operon</one>: damit <two>CAP</two> eine <three>positive Wirkung erzielen kann</three>, <four>muss es welches Molekül gebunden haben</four>? <one>cAMP</one>. URL: https://en.wikipedia.org/wiki/Catabolite_activator_protein []
951
+ - Das <one>Genom</one> von <two>Mycoplasma genitalium</two> <three>umfasst wieviele Gene</three>? A: <one>477 Gene</one>. URL: https://de.wikipedia.org/wiki/Mykoplasmen []
952
+ - Was heißt <one>RACE</one>? <one>Rapid Amplification of cDNA ends</one>. URL: https://en.wikipedia.org/wiki/Rapid_amplification_of_cDNA_ends []
953
+ - Was für eine <one>Schleife</one> kann der <two>lac-Repressor</two> <three>ausbilden</three>? Eine <one>Repressionsschleife</one>. []
954
+ - Can the <one>Lysines</one> <two>of Histones</two> be <three>ubiquitinylated</three>? <one>Yes</one>. []
955
+ - <one>Wer</one> <two>bindet an Poly-A</two>? <one>PABP</one>. URL: https://en.wikipedia.org/wiki/Poly(A)-binding_protein []
956
+ - <one>IPTG</one> <two>besitzt wieviele Methylgruppen</two>? <one>2</one>. []
957
+ - In eukaryotes: <one>which RNA Polymerase</one> <two>can be found in the</two> <three>nucleolus</three>? <one>RNA Polymerase I</one>. URL: https://en.wikipedia.org/wiki/RNA_polymerase_I []
958
+ - Was macht das Enzym <one>Cytidine-Deaminase</one>? A: Konvertiert C nach U. URL: https://en.wikipedia.org/wiki/Cytidine_deaminase []
959
+ - Das <one>iron regulatory protein 1</one> <two>hat welche zwei Funktionen</two>? A: Es <one>wirkt als cytoplasmatische Aconitase</one>, und es bildet in Gegenwart von Eisen einen Eisen-Schwefel-Komplex. []
960
+ - Behindert <one>Glucose</one> das <two>Arabinose Operon</two>? <one>Ja</one>. Die <two>Arabinose abbauenden Enzyme</two> <three>werden nur bei Fehlen von Glucose bereitgestellt</three>. []
961
+ - <one>CBP</one> und <one>p300</one> <two>sind was</two> (haben was gemeinsam)? A: Es sind beides <one>Co-Aktivatoren</one>. []
962
+ - Das <one>Exosome</one> umfasst <two>wieviele Exonucleasen</two>? A: Mindestens <one>9</one>. []
963
+ - <one>U4</one> <two>arbeitet als Komplex mit ... </two>? A: <one>U6</one>. []
964
+ - <one>Welches</one> ist <two>der Standard-Sigmafaktor</two>? <one>Sigma-70</one>. []
965
+ - <one>Methyliertes Lysin</one> <two>erhält eine neue Eigenschaft</two>, denn es kann nun mit hoher Affinität an welche Proteine binden? <one>An Proteine die eine Chromodomäne besitzen</one>. []
966
+ - Can <one>protein levels</one> <two>be reliably predicted from mRNA abundance</two>? <one>No</one>. []
967
+ - Nenne zwei <one>Poly(A)-Signale</one>. A: (1) <one>AAUAAA</one> (2) <one>AUUAAA</one> []
968
+ - <one>Lac ZYA</one> kodiert <two>für drei Gene</two>. <three>Welche genau</three>? A: (1) <one>Z</one>: <two>Galactosidase</two> (2) <one>Y</one>: <two>lac-Permease</two> (3) <one>A</one>: <two>Thiogalactoside Transacetylase</two> []
969
+ - <one>Histone Acetyl Transferases</one> (<one>HATs</one>) <two>are countered by which enzymes</two>? The <one>Histone Deacetylases</one> (<two>HDACs</two>). []
970
+ - Bei der <one>Methylierung von Histonen</one>: <two>wieviele Methylgruppen können hier vorgefunden werden</two>? <one>Bis zu 3 Methylgruppen</one>. []
971
+ - <one>Histone variants</one> for all <two>core histones</two> were discovered, except for ... ? Histone <one>H4</one>. []
972
+ - Inside of a given cell, <one>codon bias</one> <two>is correlated with ... </two>? <one>tRNA availability</one>. []
973
+ - Die <one>Gegenspieler der Protein-Kinasen</one> sind die ...? <one>Protein-Phosphatasen</one>. []
974
+ - The <one>sigma factor</one> <two>is responsible for ...</two>? <one>Promoter selection</one>. []
975
+ - Nenne die <one>zwei Polyadenylation-Signale</one>. A: (1) <one>AAUAAA</one> (2) <one>AUUAAA</one> []
976
+ - <one>Welcher Teil</one> des <two>TBP Proteins</two> <three>bindet an DNA</three>? Der <one>C-terminale Bereich</one>. []
977
+ - Die <one>PI3K</one> (<one>Phosphoinositide-3-Kinase</one>) besitzt <two>welche Untereinheiten</two>? <three>2 Untereinheiten</three>: <one>p85</one>: die regulatorische Untereinheit, die an den Rezeptor bindet; sowie <one>p110</one>: die <two>katalytische Untereinheit</two>. []
978
+ - Bei der <one>Translokation des Ribosoms</one> während der Elongationsphase in der Translation wird Energie in Form von ... benötigt? In Form von <one>GTP</one>, das hydrolysiert wird. []
979
+ - Können <one>Antikörper</one> <two>Histonmodifikationen</two> erkennen? <one>Ja</one>. []
980
+ - In genetics: <one>the Tm is proportional to ... </one>? <one>Tm</one> <two>is proportional to the GC content of the DNA</two>. []
981
+ - <one>Woran</one> <two>bindet</two> <three>SP1</three>? A: An <one>GC-Boxen</one>. URL: https://en.wikipedia.org/wiki/Transcription_factor_Sp1 []
982
+ - Give another name for <one>intron containing genes</one>. A: <one>Split genes</one>. []
983
+ - Was heisst <one>siRNA</one>? <one>Small interfering RNA</one>. URL: https://en.wikipedia.org/wiki/Small_interfering_RNA []
984
+ - <one>Welches Protein</one> erkennt die TATA Box? A: <one>TBP</one>. []
985
+ - How do we call <one>the ligand-binding part of a riboswitch</one>? <one>Aptamer</one>. []
986
+ - Wofür steht die Abkürzung <one>SIR</one>? A: <one>Silent Information Regulator</one>. URL: https://en.wikipedia.org/wiki/SIR_proteins []
987
+ - <one>Wie schnell</one> ist die <two>DNA-Helicase</two>? Etwa <one>1000 Nukleotide pro Sekunde</one>. []
988
+ - <one>Alternative Splicing</one> <two>produziert was</two>? A: <one>Verschiedene Isoformen</one> (eines Proteins). []
989
+ - Bei <one>mTOR</one>: wofür steht das <two>m</two>? Für <one>mammalian</one>. []
990
+ - <one>RNA</one> that <two>can respond allosterically in order to regulate gene expression</two> <three>is called ... </three>? A <one>riboswitch</one>. []
991
+ - Finden wir <one>Kinasen</one> <two>im Zellkern einer eukaryoten Zelle</two>? <one>Ja</one>, das ist möglich. []
992
+ - Are <one>Transitions</one> or <two>Transversions</two> <three>more likely to occur</three>? <one>Transitions</one> occur twice as frequently as Transversions. []
993
+ - Do <one>transcribed snRNAs</one> contain <two>a Poly-A tail</two>? <one>No</one> they do not. []
994
+ - <one>Aktivierungsdomänen</one> besitzen allgemein oft <two>was für Aminosäuren</two>? Überdurchschnittlich viele <one>saure Aminosäure</one>. []
995
+ - Bei den <one>DNA Typ I Isomerasen</one> finden wir <two>welche Aminosäure an der aktiven Stelle</two>? <one>Tyrosin</one>. []
996
+ - Sind <one>Leucin-Zipper</one> <two>Beispiele amphipathicher Helices</two>? <one>Ja</one>. []
997
+ - Does <one>histone acetylation</one> <two>occur in insects</two>? <one>Yes</one>. URL: https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-021-08196-8 []
998
+ - <one>Durchmesser eines Ribosom</one>, in <two>n Nanometer</two>? <one>25 Nanometer</one>. []
999
+ - Nenne einen zellulären Vorgang auf Protein-Ebene der nicht ohne weiteres reversibel ist. A: Die Proteolyse (<two>Proteolysis</two>). []
1000
+ - Der <one>Sigmafaktor</one> erlaubt es der RNA-Polymerase Promotor DNA von anderer DNA zu unterscheiden. Nenne ein besseres Wort für <two>unterscheiden</two>. A: <one>Diskriminieren</one>. []
1001
+ - <one>Warum</one> sind <two>viele der Nukleotide in der rRNA</two> <three>methyliert</three>? Das <one>schützt diese rRNA vor Abbau durch Ribonucleasen</one>. []
1002
+ - Is <one>SUMOylation</one> <two>reversible</two>? <one>Yes</one>. []
1003
+ - <one>Which protein</one> <two>coats the Poly(A) tail</two>? <one>PABP</one>: the <two>poly(A) binding protein</two>. URL: https://en.wikipedia.org/wiki/Poly(A)-binding_protein []
1004
+ - Give another word for the <one>splicing machinery</one>. A: The <one>spliceosome</one>. URL: https://en.wikipedia.org/wiki/Spliceosome []
1005
+ - <one>CrcZ</one> has <two>how many</two> <three>Hfq binding motifs</three>? <one>6</one>. []
1006
+ - What is the job of the <one>tmRNA in bacteria</one>? The <one>tmRNA</one> can rescue <two>stalled ribosomes</two>. URL:https://en.wikipedia.org/wiki/Transfer-messenger_RNA []
1007
+ - In the cell, <one>mRNA decay</one> <two>competes with ...</two>? <one>mRNA translation</one>. []
1008
+ - Nenne 4 verschiedene Gentypen, die die RNA Polymerase III transkribiert! A: tRNA, 5S rRNA, 7SL RNA, U6sn RNA.