studium 0.14.16

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of studium might be problematic. Click here for more details.

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