studium 0.13.1

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