studium 0.10.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 (882) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1982 -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/d10 +7 -0
  7. data/bin/d100 +7 -0
  8. data/bin/d15 +7 -0
  9. data/bin/d20 +7 -0
  10. data/bin/d25 +7 -0
  11. data/bin/d3 +7 -0
  12. data/bin/d30 +7 -0
  13. data/bin/d5 +7 -0
  14. data/bin/determine_curricula +7 -0
  15. data/bin/exam_registration_at +7 -0
  16. data/bin/exam_statistics +7 -0
  17. data/bin/exams_per_month +9 -0
  18. data/bin/finished_exams_at_this_university +7 -0
  19. data/bin/flashcards +7 -0
  20. data/bin/mandatory_continuous_assessment +7 -0
  21. data/bin/mandatory_upcoming_courses +7 -0
  22. data/bin/n_exam_questions_already_answered +16 -0
  23. data/bin/nquestions +7 -0
  24. data/bin/nsolved +7 -0
  25. data/bin/open_last_exam_question_asked_file +7 -0
  26. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  27. data/bin/return_n_ects_from_this_file +7 -0
  28. data/bin/show_lectures_on_the_commandline +7 -0
  29. data/bin/show_themes +7 -0
  30. data/bin/solved +9 -0
  31. data/bin/solved_ects +7 -0
  32. data/bin/studienkennzahl +7 -0
  33. data/bin/studium +7 -0
  34. data/bin/studium_skeleton +7 -0
  35. data/bin/ufind +7 -0
  36. data/bin/upcoming_exams +7 -0
  37. data/bin/week_parser +7 -0
  38. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  39. data/doc/HOW_TO_ADAPT_THIS_PROJECT.md +43 -0
  40. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +47 -0
  41. data/doc/README.gen +1965 -0
  42. data/doc/TODO_FOR_STUDIUM_GEM.md +113 -0
  43. data/doc/deprecated_components.md +24 -0
  44. data/doc/documentation_for_the_file_lecture_information.md +294 -0
  45. data/doc/elegant_colours.md +20 -0
  46. data/img/STUDIES.png +0 -0
  47. data/lib/studium.rb +5 -0
  48. data/lib/studium/autoinclude.rb +7 -0
  49. data/lib/studium/base/base.rb +84 -0
  50. data/lib/studium/base/cliner.rb +58 -0
  51. data/lib/studium/base/colours.rb +307 -0
  52. data/lib/studium/base/commandline_arguments.rb +64 -0
  53. data/lib/studium/base/constants.rb +34 -0
  54. data/lib/studium/base/curriculum.rb +329 -0
  55. data/lib/studium/base/directory_to_the_exam_topics.rb +23 -0
  56. data/lib/studium/base/editor.rb +28 -0
  57. data/lib/studium/base/encoding.rb +36 -0
  58. data/lib/studium/base/esystem.rb +23 -0
  59. data/lib/studium/base/minimal_prototype.rb +66 -0
  60. data/lib/studium/base/misc.rb +854 -0
  61. data/lib/studium/base/mode.rb +92 -0
  62. data/lib/studium/base/obtain.rb +145 -0
  63. data/lib/studium/base/opnn.rb +46 -0
  64. data/lib/studium/base/prototype.rb +92 -0
  65. data/lib/studium/base/readlines.rb +55 -0
  66. data/lib/studium/base/replace.rb +110 -0
  67. data/lib/studium/base/reset.rb +77 -0
  68. data/lib/studium/base/run.rb +17 -0
  69. data/lib/studium/base/src_dir_at_home.rb +20 -0
  70. data/lib/studium/base/time.rb +634 -0
  71. data/lib/studium/base/unicode.rb +95 -0
  72. data/lib/studium/base/word_wrap.rb +58 -0
  73. data/lib/studium/boku/README.md +4 -0
  74. data/lib/studium/boku/boku_biotechnology_all_master_lectures.rb +142 -0
  75. data/lib/studium/boku/boku_/303/266ffnungszeiten.rb +29 -0
  76. data/lib/studium/boku/show_three_pillars_of_these_lectures.rb +96 -0
  77. data/lib/studium/boku/three_pillars.rb +232 -0
  78. data/lib/studium/check_and_sanitize/README.md +11 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +149 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +107 -0
  81. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +197 -0
  82. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +171 -0
  83. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  84. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  85. data/lib/studium/colours/colours.rb +570 -0
  86. data/lib/studium/colours/sfancy.rb +40 -0
  87. data/lib/studium/colours/sfile.rb +35 -0
  88. data/lib/studium/colours/simp.rb +38 -0
  89. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +76 -0
  90. data/lib/studium/commandline/commandline.rb +25 -0
  91. data/lib/studium/commandline/constants.rb +16 -0
  92. data/lib/studium/commandline/help.rb +152 -0
  93. data/lib/studium/commandline/initialize.rb +27 -0
  94. data/lib/studium/commandline/menu.rb +760 -0
  95. data/lib/studium/commandline/misc.rb +707 -0
  96. data/lib/studium/commandline/reset.rb +24 -0
  97. data/lib/studium/commandline/run.rb +20 -0
  98. data/lib/studium/constants/boku_wien.rb +52 -0
  99. data/lib/studium/constants/constants.rb +25 -0
  100. data/lib/studium/constants/delay.rb +28 -0
  101. data/lib/studium/constants/editor.rb +28 -0
  102. data/lib/studium/constants/exam_topics.rb +183 -0
  103. data/lib/studium/constants/file_constants.rb +875 -0
  104. data/lib/studium/constants/image_constants.rb +216 -0
  105. data/lib/studium/constants/last_question_asked.rb +38 -0
  106. data/lib/studium/constants/lecture_types_that_are_mandatory_continuous_assessment.rb +47 -0
  107. data/lib/studium/constants/misc.rb +163 -0
  108. data/lib/studium/constants/namespace.rb +14 -0
  109. data/lib/studium/constants/newline.rb +14 -0
  110. data/lib/studium/constants/regexes.rb +35 -0
  111. data/lib/studium/constants/return_file_for_this_curriculum.rb +411 -0
  112. data/lib/studium/constants/roebe.rb +173 -0
  113. data/lib/studium/constants/time.rb +52 -0
  114. data/lib/studium/constants/tu_wien.rb +39 -0
  115. data/lib/studium/constants/uni_wien.rb +24 -0
  116. data/lib/studium/constants/unicode.rb +27 -0
  117. data/lib/studium/constants/week.rb +138 -0
  118. data/lib/studium/constants/www_constants.rb +23 -0
  119. data/lib/studium/curricula/curriculum.rb +199 -0
  120. data/lib/studium/curricula/curriculum_as_string.rb +279 -0
  121. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +38 -0
  122. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  123. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  124. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  125. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +77 -0
  126. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  127. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  128. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  129. data/lib/studium/curricula/determine_curricula/constants.rb +16 -0
  130. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  131. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  132. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  133. data/lib/studium/curricula/determine_curricula/menu.rb +138 -0
  134. data/lib/studium/curricula/determine_curricula/misc.rb +402 -0
  135. data/lib/studium/curricula/determine_curricula/report.rb +131 -0
  136. data/lib/studium/curricula/determine_curricula/reset.rb +62 -0
  137. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  138. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  139. data/lib/studium/curricula/display_bachelor_curricula.rb +89 -0
  140. data/lib/studium/curricula/mitteilungsbl/303/244tter.rb +336 -0
  141. data/lib/studium/curricula/modules/display_on_the_commandline.rb +316 -0
  142. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  143. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  144. data/lib/studium/curricula/random_curriculum_creator.rb +171 -0
  145. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  146. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +16 -0
  147. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  148. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  149. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +242 -0
  150. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +140 -0
  151. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +67 -0
  152. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +37 -0
  153. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  154. data/lib/studium/ects/boku_ects_splitter.rb +127 -0
  155. data/lib/studium/ects/ects_parser.rb +179 -0
  156. data/lib/studium/ects/ects_per_university.rb +140 -0
  157. data/lib/studium/ects/ects_scanner.rb +141 -0
  158. data/lib/studium/ects/ects_to_university_parser.rb +148 -0
  159. data/lib/studium/ects/erledigt.rb +131 -0
  160. data/lib/studium/ects/last_entry_is_curriculum.rb +147 -0
  161. data/lib/studium/ects/n_ects_in_these_lectures.rb +185 -0
  162. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  163. data/lib/studium/ects/noch_zu_absolvieren.rb +172 -0
  164. data/lib/studium/ects/return_n_ects_from_this_file.rb +58 -0
  165. data/lib/studium/ects/return_n_ects_from_this_url.rb +202 -0
  166. data/lib/studium/ects/search_for_n_ects.rb +540 -0
  167. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +210 -0
  168. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +254 -0
  169. data/lib/studium/ects/simple_total_ects_points.rb +143 -0
  170. data/lib/studium/ects/solved_ects/constants.rb +24 -0
  171. data/lib/studium/ects/solved_ects/reset.rb +54 -0
  172. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  173. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  174. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  175. data/lib/studium/ects/still_missing.rb +133 -0
  176. data/lib/studium/ects/sum_of_ects.rb +150 -0
  177. data/lib/studium/encoding/encoding.rb +150 -0
  178. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +79 -0
  179. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  180. data/lib/studium/exam_topics/advanced_biochemistry +762 -0
  181. data/lib/studium/exam_topics/advanced_biotechnology +192 -0
  182. data/lib/studium/exam_topics/advanced_cellbiology +25 -0
  183. data/lib/studium/exam_topics/advanced_chemistry +453 -0
  184. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  185. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +51 -0
  186. data/lib/studium/exam_topics/advanced_virology +52 -0
  187. data/lib/studium/exam_topics/ageing +101 -0
  188. data/lib/studium/exam_topics/agrar_ecology +61 -0
  189. data/lib/studium/exam_topics/agrarmarkt +70 -0
  190. data/lib/studium/exam_topics/agrarphysik +35 -0
  191. data/lib/studium/exam_topics/alcohols +29 -0
  192. data/lib/studium/exam_topics/algorithms +49 -0
  193. data/lib/studium/exam_topics/allergie +73 -0
  194. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  195. data/lib/studium/exam_topics/allgemeine_mikrobiologie +855 -0
  196. data/lib/studium/exam_topics/aminoacids +417 -0
  197. data/lib/studium/exam_topics/analytische_chemie_1 +131 -0
  198. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  199. data/lib/studium/exam_topics/anatomie +248 -0
  200. data/lib/studium/exam_topics/anorganische_chemie +289 -0
  201. data/lib/studium/exam_topics/anthropologie +115 -0
  202. data/lib/studium/exam_topics/antibodies_and_antigens +747 -0
  203. data/lib/studium/exam_topics/apoptosis +35 -0
  204. data/lib/studium/exam_topics/archaea +41 -0
  205. data/lib/studium/exam_topics/architecture +8 -0
  206. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  207. data/lib/studium/exam_topics/audio +10 -0
  208. data/lib/studium/exam_topics/bacteriophages +224 -0
  209. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  210. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  211. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  212. data/lib/studium/exam_topics/basic_virology +955 -0
  213. data/lib/studium/exam_topics/bauwesen +6 -0
  214. data/lib/studium/exam_topics/betriebssysteme +125 -0
  215. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  216. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +381 -0
  217. data/lib/studium/exam_topics/biochips +78 -0
  218. data/lib/studium/exam_topics/bioelektrochemie +56 -0
  219. data/lib/studium/exam_topics/biofilms +22 -0
  220. data/lib/studium/exam_topics/bioinformatics +475 -0
  221. data/lib/studium/exam_topics/biological_therapeutics +152 -0
  222. data/lib/studium/exam_topics/biologie +134 -0
  223. data/lib/studium/exam_topics/biomarkers +106 -0
  224. data/lib/studium/exam_topics/biomaterials +46 -0
  225. data/lib/studium/exam_topics/biomembranes +6 -0
  226. data/lib/studium/exam_topics/bionik +65 -0
  227. data/lib/studium/exam_topics/biophysik +34 -0
  228. data/lib/studium/exam_topics/biopolymers +10 -0
  229. data/lib/studium/exam_topics/bioprozesstechnik +139 -0
  230. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  231. data/lib/studium/exam_topics/bodenkunde +345 -0
  232. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  233. data/lib/studium/exam_topics/cancerbiology +441 -0
  234. data/lib/studium/exam_topics/cell_cultures +154 -0
  235. data/lib/studium/exam_topics/cellbiology +962 -0
  236. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  237. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +208 -0
  238. data/lib/studium/exam_topics/chemisches_labor +59 -0
  239. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +74 -0
  240. data/lib/studium/exam_topics/citric_acid_cycle +70 -0
  241. data/lib/studium/exam_topics/clinical_microbiology +486 -0
  242. data/lib/studium/exam_topics/computer_graphics +5 -0
  243. data/lib/studium/exam_topics/computer_science +269 -0
  244. data/lib/studium/exam_topics/crispr +25 -0
  245. data/lib/studium/exam_topics/cyanobacteria +37 -0
  246. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +506 -0
  247. data/lib/studium/exam_topics/databases_and_sql +105 -0
  248. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +33 -0
  249. data/lib/studium/exam_topics/dna_replication +53 -0
  250. data/lib/studium/exam_topics/ecogenetics +27 -0
  251. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  252. data/lib/studium/exam_topics/ecology +313 -0
  253. data/lib/studium/exam_topics/economy +210 -0
  254. data/lib/studium/exam_topics/elektronenmikroskopie +353 -0
  255. data/lib/studium/exam_topics/elektrophorese +88 -0
  256. data/lib/studium/exam_topics/elektrotechnik +8 -0
  257. data/lib/studium/exam_topics/elisa +54 -0
  258. data/lib/studium/exam_topics/embryologie_und_entwicklung +541 -0
  259. data/lib/studium/exam_topics/endospores_and_spores +92 -0
  260. data/lib/studium/exam_topics/enzymes_and_cofactors +327 -0
  261. data/lib/studium/exam_topics/epigenetik +177 -0
  262. data/lib/studium/exam_topics/ethik +125 -0
  263. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +323 -0
  264. data/lib/studium/exam_topics/excel +7 -0
  265. data/lib/studium/exam_topics/fish +19 -0
  266. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  267. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +17 -0
  268. data/lib/studium/exam_topics/forensik +11 -0
  269. data/lib/studium/exam_topics/forstwirtschaft +52 -0
  270. data/lib/studium/exam_topics/fortgeschrittene_genetik +429 -0
  271. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +189 -0
  272. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  273. data/lib/studium/exam_topics/fungi +78 -0
  274. data/lib/studium/exam_topics/genetische_krankheiten +150 -0
  275. data/lib/studium/exam_topics/genexpression +1008 -0
  276. data/lib/studium/exam_topics/genomics_and_metagenomics +205 -0
  277. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +863 -0
  278. data/lib/studium/exam_topics/geochemistry +66 -0
  279. data/lib/studium/exam_topics/geography +5 -0
  280. data/lib/studium/exam_topics/geologie_und_mineralogie +610 -0
  281. data/lib/studium/exam_topics/geschichte +94 -0
  282. data/lib/studium/exam_topics/gluconeogenesis +34 -0
  283. data/lib/studium/exam_topics/glycolysis +95 -0
  284. data/lib/studium/exam_topics/glykomik +42 -0
  285. data/lib/studium/exam_topics/glyoxylatzyklus +23 -0
  286. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  287. data/lib/studium/exam_topics/hormone +122 -0
  288. data/lib/studium/exam_topics/html +7 -0
  289. data/lib/studium/exam_topics/human_ecology +8 -0
  290. data/lib/studium/exam_topics/hygiene +191 -0
  291. data/lib/studium/exam_topics/imaging_and_microscopy +224 -0
  292. data/lib/studium/exam_topics/immunanalytik +88 -0
  293. data/lib/studium/exam_topics/immunologie +888 -0
  294. data/lib/studium/exam_topics/informatik +95 -0
  295. data/lib/studium/exam_topics/innate_immunity +20 -0
  296. data/lib/studium/exam_topics/insekten +30 -0
  297. data/lib/studium/exam_topics/insulin_and_diabetes +55 -0
  298. data/lib/studium/exam_topics/java +440 -0
  299. data/lib/studium/exam_topics/javascript +10 -0
  300. data/lib/studium/exam_topics/klima +6 -0
  301. data/lib/studium/exam_topics/landtechnik +27 -0
  302. data/lib/studium/exam_topics/lebensmittel +206 -0
  303. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  304. data/lib/studium/exam_topics/linux +5 -0
  305. data/lib/studium/exam_topics/lipids +95 -0
  306. data/lib/studium/exam_topics/macroeconomics +39 -0
  307. data/lib/studium/exam_topics/mathematics +175 -0
  308. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  309. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +397 -0
  310. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  311. data/lib/studium/exam_topics/metabolismus +433 -0
  312. data/lib/studium/exam_topics/microbial_ecology +35 -0
  313. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +34 -0
  314. data/lib/studium/exam_topics/mikrobielle_physiologie +153 -0
  315. data/lib/studium/exam_topics/mixed +289 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +235 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +129 -0
  318. data/lib/studium/exam_topics/nanotechnologie +303 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +165 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +32 -0
  322. data/lib/studium/exam_topics/neurobiology +266 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +30 -0
  324. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  325. data/lib/studium/exam_topics/obstbau +234 -0
  326. data/lib/studium/exam_topics/organische_chemie +1007 -0
  327. data/lib/studium/exam_topics/organische_chemie_2 +72 -0
  328. data/lib/studium/exam_topics/paleobiology +33 -0
  329. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  330. data/lib/studium/exam_topics/patent_law +55 -0
  331. data/lib/studium/exam_topics/pathologie +713 -0
  332. data/lib/studium/exam_topics/pcr +133 -0
  333. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  334. data/lib/studium/exam_topics/pflanzenanatomie +240 -0
  335. data/lib/studium/exam_topics/pflanzenbau +24 -0
  336. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  337. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  338. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  339. data/lib/studium/exam_topics/physik +338 -0
  340. data/lib/studium/exam_topics/physikalische_chemie +85 -0
  341. data/lib/studium/exam_topics/physiology_and_histology +485 -0
  342. data/lib/studium/exam_topics/phytochemie +33 -0
  343. data/lib/studium/exam_topics/plant_biotechnology +127 -0
  344. data/lib/studium/exam_topics/plant_breeding +64 -0
  345. data/lib/studium/exam_topics/plant_development +50 -0
  346. data/lib/studium/exam_topics/populationsgenetik +136 -0
  347. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +186 -0
  348. data/lib/studium/exam_topics/projektmanagement +218 -0
  349. data/lib/studium/exam_topics/prokaryote_genetics +470 -0
  350. data/lib/studium/exam_topics/proteomik +38 -0
  351. data/lib/studium/exam_topics/prozesstechnik +95 -0
  352. data/lib/studium/exam_topics/psychologie +9 -0
  353. data/lib/studium/exam_topics/python +350 -0
  354. data/lib/studium/exam_topics/quality_management +241 -0
  355. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  356. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  357. data/lib/studium/exam_topics/rna_and_dna +362 -0
  358. data/lib/studium/exam_topics/rna_seq +11 -0
  359. data/lib/studium/exam_topics/ruby +131 -0
  360. data/lib/studium/exam_topics/ruby_on_rails +62 -0
  361. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  362. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  363. data/lib/studium/exam_topics/sexualbiologie +59 -0
  364. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +136 -0
  365. data/lib/studium/exam_topics/splicing_exons_and_introns +57 -0
  366. data/lib/studium/exam_topics/statistik +202 -0
  367. data/lib/studium/exam_topics/stemcells +87 -0
  368. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  369. data/lib/studium/exam_topics/strukturbiologie +319 -0
  370. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +87 -0
  371. data/lib/studium/exam_topics/systematische_zoologie +430 -0
  372. data/lib/studium/exam_topics/technical_ecology +144 -0
  373. data/lib/studium/exam_topics/technische_chemie +194 -0
  374. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +22 -0
  375. data/lib/studium/exam_topics/technische_mikrobiologie +403 -0
  376. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  377. data/lib/studium/exam_topics/the_bacterial_cell_wall +86 -0
  378. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +488 -0
  379. data/lib/studium/exam_topics/the_c_programming_language +128 -0
  380. data/lib/studium/exam_topics/the_cellcycle +65 -0
  381. data/lib/studium/exam_topics/the_european_union +119 -0
  382. data/lib/studium/exam_topics/the_interferon_system +32 -0
  383. data/lib/studium/exam_topics/the_microbiome +163 -0
  384. data/lib/studium/exam_topics/the_universe +6 -0
  385. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  386. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  387. data/lib/studium/exam_topics/tierzucht +94 -0
  388. data/lib/studium/exam_topics/toxikologie +403 -0
  389. data/lib/studium/exam_topics/transcription +26 -0
  390. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +138 -0
  391. data/lib/studium/exam_topics/umweltbiotechnologie +58 -0
  392. data/lib/studium/exam_topics/umweltchemie +233 -0
  393. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  394. data/lib/studium/exam_topics/vaccines_and_vaccination +234 -0
  395. data/lib/studium/exam_topics/vectors_and_gene_therapy +237 -0
  396. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  397. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  398. data/lib/studium/exam_topics/vitamine +19 -0
  399. data/lib/studium/exam_topics/wasserkunde +141 -0
  400. data/lib/studium/exam_topics/weinbau +59 -0
  401. data/lib/studium/exam_topics/wissenschaft +17 -0
  402. data/lib/studium/exam_topics/yeast +97 -0
  403. data/lib/studium/exam_topics/zoologie +329 -0
  404. data/lib/studium/exams/afterburn.rb +264 -0
  405. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +158 -0
  406. data/lib/studium/exams/ask_exam_question/answer.rb +106 -0
  407. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +135 -0
  408. data/lib/studium/exams/ask_exam_question/constants.rb +74 -0
  409. data/lib/studium/exams/ask_exam_question/delay.rb +101 -0
  410. data/lib/studium/exams/ask_exam_question/help.rb +72 -0
  411. data/lib/studium/exams/ask_exam_question/initialize.rb +70 -0
  412. data/lib/studium/exams/ask_exam_question/menu.rb +382 -0
  413. data/lib/studium/exams/ask_exam_question/misc.rb +938 -0
  414. data/lib/studium/exams/ask_exam_question/question.rb +77 -0
  415. data/lib/studium/exams/ask_exam_question/reset.rb +103 -0
  416. data/lib/studium/exams/ask_exam_question/run.rb +49 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +120 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +151 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +133 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +93 -0
  422. data/lib/studium/exams/ask_random_question.rb +190 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/class.rb +127 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +225 -0
  426. data/lib/studium/exams/cycle.rb +283 -0
  427. data/lib/studium/exams/dataset.rb +90 -0
  428. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  429. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +254 -0
  430. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  431. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  432. data/lib/studium/exams/exam_registration_at/report.rb +108 -0
  433. data/lib/studium/exams/exam_registration_at/reset.rb +49 -0
  434. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +127 -0
  435. data/lib/studium/exams/exam_topics.rb +202 -0
  436. data/lib/studium/exams/exams.rb +18 -0
  437. data/lib/studium/exams/exams_per_month/colours.rb +81 -0
  438. data/lib/studium/exams/exams_per_month/constants.rb +69 -0
  439. data/lib/studium/exams/exams_per_month/dataset.rb +64 -0
  440. data/lib/studium/exams/exams_per_month/exams_per_month.rb +291 -0
  441. data/lib/studium/exams/exams_per_month/help.rb +72 -0
  442. data/lib/studium/exams/exams_per_month/initialize.rb +39 -0
  443. data/lib/studium/exams/exams_per_month/menu.rb +258 -0
  444. data/lib/studium/exams/exams_per_month/open.rb +139 -0
  445. data/lib/studium/exams/exams_per_month/requires.rb +8 -0
  446. data/lib/studium/exams/exams_per_month/reset.rb +115 -0
  447. data/lib/studium/exams/exams_per_month/run.rb +18 -0
  448. data/lib/studium/exams/exams_per_month/sanitize.rb +129 -0
  449. data/lib/studium/exams/exams_per_month/show_and_report.rb +1281 -0
  450. data/lib/studium/exams/exams_this_week.rb +179 -0
  451. data/lib/studium/exams/fix_exam_dates.rb +129 -0
  452. data/lib/studium/exams/last_exams/last_exams.rb +381 -0
  453. data/lib/studium/exams/lectures_without_exam_entry.rb +145 -0
  454. data/lib/studium/exams/mandatory_continuous_assessment/compare.rb +144 -0
  455. data/lib/studium/exams/mandatory_continuous_assessment/constants.rb +18 -0
  456. data/lib/studium/exams/mandatory_continuous_assessment/help.rb +92 -0
  457. data/lib/studium/exams/mandatory_continuous_assessment/initialize.rb +46 -0
  458. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1115 -0
  459. data/lib/studium/exams/mandatory_continuous_assessment/menu.rb +114 -0
  460. data/lib/studium/exams/mandatory_continuous_assessment/misc.rb +61 -0
  461. data/lib/studium/exams/mandatory_continuous_assessment/reset.rb +85 -0
  462. data/lib/studium/exams/mandatory_continuous_assessment/run.rb +33 -0
  463. data/lib/studium/exams/mandatory_continuous_assessment/set_title_of_the_curriculum.rb +181 -0
  464. data/lib/studium/exams/mandatory_continuous_assessment/show_and_report.rb +147 -0
  465. 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 +119 -0
  466. data/lib/studium/exams/n_exams_in_these_topics.rb +408 -0
  467. data/lib/studium/exams/new_questions_per_year.rb +153 -0
  468. data/lib/studium/exams/next_exam.rb +111 -0
  469. data/lib/studium/exams/next_exams.rb +385 -0
  470. data/lib/studium/exams/open_exam_associated_url.rb +158 -0
  471. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +20 -0
  472. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  473. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +112 -0
  474. data/lib/studium/exams/passed_exams/passed_exams.rb +46 -0
  475. data/lib/studium/exams/pruefung.rb +288 -0
  476. data/lib/studium/exams/push_solved_questions_on_top.rb +188 -0
  477. data/lib/studium/exams/question_answer/question_answer.rb +842 -0
  478. data/lib/studium/exams/questions_solved_from_day_to_day.rb +353 -0
  479. data/lib/studium/exams/repeat_last_question.rb +78 -0
  480. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +260 -0
  481. data/lib/studium/exams/show_backlog_of_exams.rb +125 -0
  482. data/lib/studium/exams/show_next_exams_for.rb +141 -0
  483. data/lib/studium/exams/show_themes/constants.rb +33 -0
  484. data/lib/studium/exams/show_themes/menu.rb +61 -0
  485. data/lib/studium/exams/show_themes/misc.rb +536 -0
  486. data/lib/studium/exams/show_themes/reset.rb +64 -0
  487. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  488. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +170 -0
  489. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  490. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  491. data/lib/studium/exams/show_upcoming_exams/initialize.rb +71 -0
  492. data/lib/studium/exams/show_upcoming_exams/menu.rb +53 -0
  493. data/lib/studium/exams/show_upcoming_exams/report.rb +195 -0
  494. data/lib/studium/exams/show_upcoming_exams/reset.rb +38 -0
  495. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  496. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +494 -0
  497. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +122 -0
  498. data/lib/studium/exams/solved/constants.rb +37 -0
  499. data/lib/studium/exams/solved/help.rb +23 -0
  500. data/lib/studium/exams/solved/menu.rb +35 -0
  501. data/lib/studium/exams/solved/reset.rb +30 -0
  502. data/lib/studium/exams/solved/solved.rb +306 -0
  503. data/lib/studium/exams/steop.rb +99 -0
  504. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +170 -0
  505. data/lib/studium/exams/upcoming_exams/constants.rb +20 -0
  506. data/lib/studium/exams/upcoming_exams/help.rb +38 -0
  507. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  508. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  509. data/lib/studium/exams/upcoming_exams/misc.rb +360 -0
  510. data/lib/studium/exams/upcoming_exams/reset.rb +37 -0
  511. data/lib/studium/exams/upcoming_exams/run.rb +25 -0
  512. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  513. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  514. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  515. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  516. data/lib/studium/exams/upcoming_exams_dataset.rb +251 -0
  517. data/lib/studium/exams/upload_exam_topics.rb +357 -0
  518. data/lib/studium/flashcards/flashcards.rb +95 -0
  519. data/lib/studium/graphviz/README.md +4 -0
  520. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  521. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  522. data/lib/studium/gui/gtk2/constants.rb +52 -0
  523. data/lib/studium/gui/gtk2/exam_card.rb +199 -0
  524. data/lib/studium/gui/gtk2/flip_card.rb +8 -0
  525. data/lib/studium/gui/gtk2/frame.rb +319 -0
  526. data/lib/studium/gui/gtk2/main_box.rb +188 -0
  527. data/lib/studium/gui/gtk2/misc.rb +99 -0
  528. data/lib/studium/gui/gtk2/module_methods.rb +58 -0
  529. data/lib/studium/gui/gtk2/require_gtk_files.rb +25 -0
  530. data/lib/studium/gui/gtk2/run.rb +47 -0
  531. data/lib/studium/gui/gtk2/show_curriculum_entries.rb +186 -0
  532. data/lib/studium/gui/gtk2/simple_widget_question_answer.rb +185 -0
  533. data/lib/studium/gui/gtk2/vbox.rb +748 -0
  534. data/lib/studium/gui/gtk3/README.md +1 -0
  535. data/lib/studium/gui/gtk3/studium_panel.rb +54 -0
  536. data/lib/studium/lectures/show_lectures_on_the_commandline/constants.rb +22 -0
  537. data/lib/studium/lectures/show_lectures_on_the_commandline/determine.rb +630 -0
  538. data/lib/studium/lectures/show_lectures_on_the_commandline/help.rb +44 -0
  539. data/lib/studium/lectures/show_lectures_on_the_commandline/html.rb +599 -0
  540. data/lib/studium/lectures/show_lectures_on_the_commandline/initialize.rb +53 -0
  541. data/lib/studium/lectures/show_lectures_on_the_commandline/konsole.rb +32 -0
  542. data/lib/studium/lectures/show_lectures_on_the_commandline/menu.rb +466 -0
  543. data/lib/studium/lectures/show_lectures_on_the_commandline/misc.rb +598 -0
  544. data/lib/studium/lectures/show_lectures_on_the_commandline/reset.rb +120 -0
  545. data/lib/studium/lectures/show_lectures_on_the_commandline/run.rb +44 -0
  546. data/lib/studium/lectures/show_lectures_on_the_commandline/show.rb +106 -0
  547. data/lib/studium/lectures/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +491 -0
  548. data/lib/studium/lectures/show_lectures_on_the_commandline/sorted_individual_curricula.rb +117 -0
  549. data/lib/studium/logging/README.md +2 -0
  550. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  551. data/lib/studium/logging/html_log_directory.rb +35 -0
  552. data/lib/studium/logging/log_directory.rb +100 -0
  553. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  554. data/lib/studium/misc/return_remote_homepage_of_this_lecture.rb +8661 -0
  555. data/lib/studium/misc/return_remote_moodle_link_of_this_lecture.rb +1343 -0
  556. data/lib/studium/parsers/README.md +2 -0
  557. data/lib/studium/parsers/custom_exam_results_parser.rb +208 -0
  558. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  559. data/lib/studium/pdf/README.md +2 -0
  560. data/lib/studium/pdf/create_pdf_file_for_this_exam_topic.rb +277 -0
  561. data/lib/studium/project/project.rb +80 -0
  562. data/lib/studium/requires/common_popular_requires.rb +37 -0
  563. data/lib/studium/requires/commonly_used_requires.rb +13 -0
  564. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  565. data/lib/studium/requires/require_ects_scripts.rb +25 -0
  566. data/lib/studium/requires/require_encoding.rb +7 -0
  567. data/lib/studium/requires/require_the_exam_scripts.rb +37 -0
  568. data/lib/studium/requires/require_the_studium_constants.rb +14 -0
  569. data/lib/studium/requires/require_the_studium_project.rb +47 -0
  570. data/lib/studium/requires/require_the_utility_scripts.rb +26 -0
  571. data/lib/studium/requires/require_toplevel_methods.rb +26 -0
  572. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  573. data/lib/studium/requires/require_yaml.rb +7 -0
  574. data/lib/studium/requires/with_GUI.rb +12 -0
  575. data/lib/studium/requires/www_mode.rb +17 -0
  576. data/lib/studium/sinatra/app.rb +225 -0
  577. data/lib/studium/sinatra/misc.rb +111 -0
  578. data/lib/studium/statistics/README.md +4 -0
  579. data/lib/studium/statistics/best_exam_months.rb +81 -0
  580. data/lib/studium/statistics/curriculum_comparer.rb +344 -0
  581. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +140 -0
  582. data/lib/studium/statistics/max_stats.rb +171 -0
  583. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +172 -0
  584. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +478 -0
  585. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  586. data/lib/studium/statistics/top_stats.rb +122 -0
  587. data/lib/studium/steop/README.md +4 -0
  588. data/lib/studium/steop/show_all_steop_lectures.rb +101 -0
  589. data/lib/studium/steop/steop_lectures_in_this_curriculum.rb +291 -0
  590. data/lib/studium/steop/steop_lva_dates.rb +102 -0
  591. data/lib/studium/toplevel_methods/all_passed_exams.rb +35 -0
  592. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +98 -0
  593. data/lib/studium/toplevel_methods/available_curricula.rb +71 -0
  594. data/lib/studium/toplevel_methods/available_topics.rb +145 -0
  595. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  596. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  597. data/lib/studium/toplevel_methods/cd.rb +25 -0
  598. data/lib/studium/toplevel_methods/cd_stud.rb +134 -0
  599. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +27 -0
  600. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  601. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +44 -0
  602. data/lib/studium/toplevel_methods/download.rb +157 -0
  603. data/lib/studium/toplevel_methods/e.rb +16 -0
  604. data/lib/studium/toplevel_methods/ects_from_lectures.rb +251 -0
  605. data/lib/studium/toplevel_methods/editor.rb +64 -0
  606. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  607. data/lib/studium/toplevel_methods/exams_dataset.rb +45 -0
  608. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  609. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +2771 -0
  610. data/lib/studium/toplevel_methods/from_curriculum_id_to_university.rb +47 -0
  611. data/lib/studium/toplevel_methods/frozen.rb +32 -0
  612. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  613. data/lib/studium/toplevel_methods/has_a_bachelor_or_master_curriculum.rb +84 -0
  614. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +41 -0
  615. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  616. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  617. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  618. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  619. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  620. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  621. data/lib/studium/toplevel_methods/is_this_lecture_part_of_the_vector_curriculum.rb +110 -0
  622. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +43 -0
  623. data/lib/studium/toplevel_methods/lecture_information.rb +101 -0
  624. data/lib/studium/toplevel_methods/lectures_without_attribution_to_any_curriculum.rb +42 -0
  625. data/lib/studium/toplevel_methods/lva_numbers.rb +339 -0
  626. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  627. data/lib/studium/toplevel_methods/map_curriculum_number_to_curriculum_name.rb +97 -0
  628. data/lib/studium/toplevel_methods/methods_related_to_curricula.rb +47 -0
  629. data/lib/studium/toplevel_methods/methods_related_to_files.rb +197 -0
  630. data/lib/studium/toplevel_methods/mkdir.rb +25 -0
  631. data/lib/studium/toplevel_methods/n_questions_available.rb +128 -0
  632. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  633. data/lib/studium/toplevel_methods/name_of_this_curriculum.rb +38 -0
  634. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  635. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +70 -0
  636. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  637. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  638. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  639. data/lib/studium/toplevel_methods/read_dataset_from_a_curriculum_file.rb +133 -0
  640. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  641. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  642. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  643. data/lib/studium/toplevel_methods/remote_url.rb +57 -0
  644. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  645. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  646. data/lib/studium/toplevel_methods/remove_tags.rb +26 -0
  647. data/lib/studium/toplevel_methods/report.rb +143 -0
  648. data/lib/studium/toplevel_methods/report_all_lectures_matching_this_lecture_type.rb +45 -0
  649. data/lib/studium/toplevel_methods/report_attributed_lectures_to_universities.rb +30 -0
  650. data/lib/studium/toplevel_methods/report_n_ects_per_university.rb +63 -0
  651. data/lib/studium/toplevel_methods/report_n_entries_in_the_file_lecture_information.rb +36 -0
  652. data/lib/studium/toplevel_methods/report_nquestions_of.rb +96 -0
  653. data/lib/studium/toplevel_methods/report_solved_topics.rb +56 -0
  654. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  655. data/lib/studium/toplevel_methods/return_curriculum_of_this_lva_number.rb +82 -0
  656. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  657. data/lib/studium/toplevel_methods/return_dataset_from_this_curriculum_file.rb +150 -0
  658. data/lib/studium/toplevel_methods/return_directory_for.rb +66 -0
  659. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +489 -0
  660. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +197 -0
  661. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +41 -0
  662. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +59 -0
  663. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  664. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +75 -0
  665. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +37 -0
  666. data/lib/studium/toplevel_methods/return_proper_university_image.rb +80 -0
  667. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +56 -0
  668. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +126 -0
  669. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  670. data/lib/studium/toplevel_methods/return_this_curriculum_as_a_string.rb +26 -0
  671. data/lib/studium/toplevel_methods/return_title_from_this_curriculum_file.rb +91 -0
  672. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  673. data/lib/studium/toplevel_methods/rti_conflict.rb +29 -0
  674. data/lib/studium/toplevel_methods/runmode.rb +86 -0
  675. data/lib/studium/toplevel_methods/sanitize_this_theme_topic.rb +128 -0
  676. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  677. data/lib/studium/toplevel_methods/save_all_registered_upcoming_exams.rb +62 -0
  678. data/lib/studium/toplevel_methods/save_file.rb +81 -0
  679. data/lib/studium/toplevel_methods/save_this_delay_between_questions_and_answers.rb +43 -0
  680. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  681. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  682. data/lib/studium/toplevel_methods/show_passed_ects_in_the_individual_bachelor_and_master_curricula.rb +81 -0
  683. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +27 -0
  684. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  685. data/lib/studium/toplevel_methods/time.rb +220 -0
  686. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  687. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  688. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  689. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  690. data/lib/studium/toplevel_methods/url.rb +74 -0
  691. data/lib/studium/toplevel_methods/verbose_truth.rb +21 -0
  692. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +53 -0
  693. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  694. data/lib/studium/tu_vienna/README.md +6 -0
  695. data/lib/studium/tu_vienna/tu_ferien.rb +38 -0
  696. data/lib/studium/tu_vienna/tu_/303/266ffnungszeiten.rb +29 -0
  697. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +389 -0
  698. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +236 -0
  699. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +385 -0
  700. data/lib/studium/utility_scripts/audio_stats.rb +176 -0
  701. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +253 -0
  702. data/lib/studium/utility_scripts/auto_stud/constants.rb +23 -0
  703. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  704. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  705. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +101 -0
  706. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  707. data/lib/studium/utility_scripts/calendar/calendar.rb +244 -0
  708. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  709. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +224 -0
  710. data/lib/studium/utility_scripts/clean_up_lecture_date.rb +151 -0
  711. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  712. data/lib/studium/utility_scripts/currently_participating_in_these_lectures.rb +104 -0
  713. data/lib/studium/utility_scripts/display_lecture_url.rb +117 -0
  714. data/lib/studium/utility_scripts/expand_time_range.rb +422 -0
  715. data/lib/studium/utility_scripts/find_duplicate_lectures.rb +121 -0
  716. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  717. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +28 -0
  718. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +142 -0
  719. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +29 -0
  720. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  721. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +141 -0
  722. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  723. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +57 -0
  724. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  725. data/lib/studium/utility_scripts/generate_spreadsheet.rb +349 -0
  726. data/lib/studium/utility_scripts/holidays.rb +143 -0
  727. data/lib/studium/utility_scripts/lecture_downloader.rb +115 -0
  728. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +344 -0
  729. data/lib/studium/utility_scripts/lva_nummer.rb +440 -0
  730. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month.rb +321 -0
  731. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  732. data/lib/studium/utility_scripts/new_stud.rb +332 -0
  733. data/lib/studium/utility_scripts/next_week.rb +111 -0
  734. data/lib/studium/utility_scripts/passed_ects_per_year.rb +172 -0
  735. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  736. data/lib/studium/utility_scripts/prepare_individual_curriculum.rb +182 -0
  737. data/lib/studium/utility_scripts/priority.rb +126 -0
  738. data/lib/studium/utility_scripts/priority_points.rb +263 -0
  739. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  740. data/lib/studium/utility_scripts/regexes/README.md +2 -0
  741. data/lib/studium/utility_scripts/regexes/generate_regex.rb +278 -0
  742. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +54 -0
  743. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  744. data/lib/studium/utility_scripts/report_outdated_timetable_entries.rb +148 -0
  745. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +120 -0
  746. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +125 -0
  747. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +257 -0
  748. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +273 -0
  749. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +146 -0
  750. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +142 -0
  751. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +381 -0
  752. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  753. data/lib/studium/utility_scripts/show_all_lectures.rb +403 -0
  754. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +127 -0
  755. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/constants.rb +56 -0
  756. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/do_report_the_upcoming_exams.rb +60 -0
  757. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/help.rb +49 -0
  758. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/initialize.rb +28 -0
  759. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/menu.rb +54 -0
  760. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/misc.rb +214 -0
  761. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/report.rb +118 -0
  762. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/reset.rb +80 -0
  763. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/run.rb +22 -0
  764. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +651 -0
  765. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +28 -0
  766. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +62 -0
  767. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +36 -0
  768. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +35 -0
  769. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  770. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +145 -0
  771. data/lib/studium/utility_scripts/show_lectures/constants.rb +16 -0
  772. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  773. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  774. data/lib/studium/utility_scripts/show_lectures/menu.rb +106 -0
  775. data/lib/studium/utility_scripts/show_lectures/misc.rb +582 -0
  776. data/lib/studium/utility_scripts/show_lectures/reset.rb +92 -0
  777. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  778. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  779. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language.rb +129 -0
  780. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme.rb +100 -0
  781. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +154 -0
  782. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +177 -0
  783. data/lib/studium/utility_scripts/show_outdated_lva_dates.rb +218 -0
  784. data/lib/studium/utility_scripts/show_solved_english_lectures.rb +139 -0
  785. data/lib/studium/utility_scripts/show_the_associated_lectures_for_the_individual_curriculum.rb +285 -0
  786. data/lib/studium/utility_scripts/studienkennzahl.rb +109 -0
  787. data/lib/studium/utility_scripts/studium_skeleton.rb +220 -0
  788. data/lib/studium/utility_scripts/stundenplan.rb +603 -0
  789. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +221 -0
  790. data/lib/studium/utility_scripts/ufind.rb +101 -0
  791. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +31 -0
  792. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  793. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +179 -0
  794. data/lib/studium/utility_scripts/vorbesprechungen.rb +293 -0
  795. data/lib/studium/utility_scripts/week_parser/constants.rb +28 -0
  796. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  797. data/lib/studium/utility_scripts/week_parser/menu.rb +56 -0
  798. data/lib/studium/utility_scripts/week_parser/misc.rb +51 -0
  799. data/lib/studium/utility_scripts/week_parser/reset.rb +55 -0
  800. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  801. data/lib/studium/utility_scripts/week_parser/show.rb +242 -0
  802. data/lib/studium/utility_scripts/week_parser/week_parser.rb +362 -0
  803. data/lib/studium/utility_scripts/weekday_parser.rb +159 -0
  804. data/lib/studium/utility_scripts/weekly_schedule.rb +209 -0
  805. data/lib/studium/utility_scripts/wochenplanung.rb +278 -0
  806. data/lib/studium/version/version.rb +46 -0
  807. data/lib/studium/www/curricula_displayer.cgi +170 -0
  808. data/lib/studium/www/curriculum_displayer.rb +162 -0
  809. data/lib/studium/www/exams.cgi +50 -0
  810. data/lib/studium/www/statistics.cgi +55 -0
  811. data/lib/studium/yaml/allowed_themes_for_exams.yml +307 -0
  812. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +68 -0
  813. data/lib/studium/yaml/backlog_of_exams.yml +35 -0
  814. data/lib/studium/yaml/current_exams.yml +19 -0
  815. data/lib/studium/yaml/curricula.yml +530 -0
  816. data/lib/studium/yaml/curricula/README.md +3 -0
  817. data/lib/studium/yaml/curricula/bachelor_agrarwissenschaften_033255.yml +130 -0
  818. data/lib/studium/yaml/curricula/bachelor_biologie_basisblock_033630.yml +65 -0
  819. data/lib/studium/yaml/curricula/bachelor_biologie_botanik_033630.yml +84 -0
  820. data/lib/studium/yaml/curricula/bachelor_biologie_ecology_033630.yml +74 -0
  821. data/lib/studium/yaml/curricula/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  822. data/lib/studium/yaml/curricula/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  823. data/lib/studium/yaml/curricula/bachelor_biologie_zoologie_033630.yml +87 -0
  824. data/lib/studium/yaml/curricula/bachelor_chemie_033662.yml +164 -0
  825. data/lib/studium/yaml/curricula/bachelor_dummy_curriculum.yml +135 -0
  826. data/lib/studium/yaml/curricula/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  827. data/lib/studium/yaml/curricula/bachelor_forstwirtschaft_033225.yml +105 -0
  828. data/lib/studium/yaml/curricula/bachelor_informatik_033521.yml +130 -0
  829. data/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml +1144 -0
  830. data/lib/studium/yaml/curricula/bachelor_ktww_033231.yml +84 -0
  831. data/lib/studium/yaml/curricula/bachelor_lmbt_033217.yml +108 -0
  832. data/lib/studium/yaml/curricula/bachelor_medizinische_informatik_033533.yml +200 -0
  833. data/lib/studium/yaml/curricula/bachelor_molekularbiologie_033665.yml +93 -0
  834. data/lib/studium/yaml/curricula/bachelor_nutrition_science_033638.yml +117 -0
  835. data/lib/studium/yaml/curricula/bachelor_pharmazie_033305.yml +170 -0
  836. data/lib/studium/yaml/curricula/bachelor_technische_chemie_033290.yml +129 -0
  837. data/lib/studium/yaml/curricula/bachelor_technische_informatik_033535.yml +23 -0
  838. data/lib/studium/yaml/curricula/bachelor_ubrm_033227.yml +140 -0
  839. data/lib/studium/yaml/curricula/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  840. data/lib/studium/yaml/curricula/bachelor_verfahrenstechnik_033273.yml +167 -0
  841. data/lib/studium/yaml/curricula/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  842. data/lib/studium/yaml/curricula/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  843. data/lib/studium/yaml/curricula/master_bioinformatik_066875.yml +76 -0
  844. data/lib/studium/yaml/curricula/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  845. data/lib/studium/yaml/curricula/master_biologische_chemie_066863.yml +61 -0
  846. data/lib/studium/yaml/curricula/master_dummy_curriculum.yml +137 -0
  847. data/lib/studium/yaml/curricula/master_food_science_and_plant_biotechnology.yml +30 -0
  848. data/lib/studium/yaml/curricula/master_genetik_und_entwicklungsbiologie_066877.yml +90 -0
  849. data/lib/studium/yaml/curricula/master_lmbt_066418.yml +65 -0
  850. data/lib/studium/yaml/curricula/master_molekulare_biologie_066834.yml +142 -0
  851. data/lib/studium/yaml/curricula/master_pharmazie_066605.yml +170 -0
  852. data/lib/studium/yaml/curricula/master_technische_chemie_066490.yml +123 -0
  853. data/lib/studium/yaml/curricula/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  854. data/lib/studium/yaml/custom_colours.yml +21 -0
  855. data/lib/studium/yaml/daily_questions_solved.yml +789 -0
  856. data/lib/studium/yaml/default_delay.yml +4 -0
  857. data/lib/studium/yaml/default_encoding.yml +1 -0
  858. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  859. data/lib/studium/yaml/editor.yml +1 -0
  860. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  861. data/lib/studium/yaml/german/README.md +2 -0
  862. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  863. data/lib/studium/yaml/grouped_themes.yml +187 -0
  864. data/lib/studium/yaml/holidays.yml +176 -0
  865. data/lib/studium/yaml/important_exams.yml +194 -0
  866. data/lib/studium/yaml/inscription_dates_of_universities.yml +58 -0
  867. data/lib/studium/yaml/lecture_aliases.yml +108 -0
  868. data/lib/studium/yaml/lecture_information.yml +47783 -0
  869. data/lib/studium/yaml/log_dir.yml +1 -0
  870. data/lib/studium/yaml/main_topic.yml +11 -0
  871. data/lib/studium/yaml/max_stats.yml +227 -0
  872. data/lib/studium/yaml/mitteilungsbl/303/244tter.yml +315 -0
  873. data/lib/studium/yaml/n_total_questions.yml +1 -0
  874. data/lib/studium/yaml/participating_in_these_courses.yml +50 -0
  875. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  876. data/lib/studium/yaml/show_topic.yml +1 -0
  877. data/lib/studium/yaml/statistics.yml +57 -0
  878. data/lib/studium/yaml/use_colours.yml +1 -0
  879. data/studium.gemspec +79 -0
  880. data/test/testing_studium.rb +244 -0
  881. data/test/testing_time_component.rb +29 -0
  882. metadata +1079 -0
@@ -0,0 +1,189 @@
1
+ # =========================================================================== #
2
+ # === Gentechnik2 tag
3
+ #
4
+ # Gentech2 tag. Gen2 tag. Gtech2 tag. Genetech2 tag.
5
+ #
6
+ # Auch Zellbiologie tierischer Systeme und Methoden in der Zellbiologie -
7
+ # letzteres zumindest zum Teil.
8
+ # Methods tag. Methoden Tag. Methoden in der Zellbiologie. Sowie Flow
9
+ # Cytometry tag. Method tag. Vektoren sollten in der Datei "vektoren"
10
+ # gesammelt werden. Auch Golden Gate Cloning.
11
+ #
12
+ # Fragen über Zellkulturen werden in der Datei cell_cultures gesammelt.
13
+ # =========================================================================== #
14
+
15
+ - In <one>quantitative Realtime-PCR</one>: what is actually measured? The fluorescence of the dye intercalating into the ds DNA, which usually is SYBR green. Bound SYBR green is 1000x more fluorescent than the unbound one.
16
+ - Name the <one>subunits</one> of the <two>E. coli gyrase</two>. A: (1) GyrA subunit (2) GyrA subunit (3) GyrB subunit (4) <one>GyrB subunit<one>
17
+ - <one>pH</one> of the <two>electrophoresis buffer</two> is ... ? <one>8</one>.
18
+ - Name two different techniques of <one>viral propagation</one> in the laboratory. A: (1) cell culture (2) <one>embryonated eggs</one>
19
+ - In order for <one>FRET</one> to work the fluorophores have to be approximately how many nm apart? <one>5 nm or less</one>.
20
+ - <one>Morpholino-Oligos</one> haben anstatt der Phosphorgruppe welche Gruppe? Ein <one>Phosphorodiamidate</one>.
21
+ - How are <one>Meganucleases</one> defined? These are endodeoxyribonucleases characterized by <one>a large recognition site</one> of about 12-40 base pairs.
22
+ - What do we mean with "Golden Gate cloning"? This is the efficient and seamless assembly of DNA fragments.
23
+ - What enzymes are used in "Golden Gate assembly"? "Type II endonucleases".
24
+ - Is "Golden Gate cloning" performed in-vivo or in-vitro? It is performed "in-vitro".
25
+ - In "Golden Gate cloning", which ligase is commonly used? The "T4 DNA ligase".
26
+ - Gib 2 Beispiele für "PCR-Inhibitoren". A: (1) "Heparin" (2) "Hämoglobin"
27
+ - How can we purify mRNA? Via an "affinity chromatography".
28
+ - Illumina sequencing technology works in which three basic steps? (1) "amplify" (2) "sequence" (3) "analyze"
29
+ - Wir möchten ein rekombinantes Protein, das mehrere Untereinheiten besitzt, in Säugetierzellen exprimieren. Welches Problem mag hierbei existieren? Die Untereinheiten müssen erst in einer Säugetierzelle zusammengebaut werden; stellt man sie in separaten Kulturen her und vermischt sie später, so erhält man kein aktives Protein.
30
+ - The "HACs" (human artificial chromosomes) can accept how much DNA? Up to "10 Mb".
31
+ - Nenne zwei mögliche Nachteile von "E. coli" für die Verwendung in der Molekularbiologie/Biotechnologie/Gentechnik. A: (1) Es sind "keine Glykosylierungen möglich". (2) Wenn "Inclusion Bodies intrazellulär akkumulieren", ist die Aufreinigung mitunter kompliziert ("French Press")
32
+ - Nenne eine Alternative zu SYBR Green in der Gentechnik. A: "TaqMan".
33
+ - Why do we actually require "PFGE Electrophoresis"? We require "Pulsed Field Gel Electrophoresis" when we have "very large DNA fragments", such as 100 kb and large, which can not be separated in normal agarose gels.
34
+ - Die "native Fällung", wo Proteine ihre natürlichen Struktur beibehalten, mit Hilfe von "Ammoniumsulfat", hat zumindest einen gravierenden Nachteil. Welchen? Es verbleibt eine "hohe Salzkonzentration" zurück, die wieder abgetrennt werden muss.
35
+ - Wo finden wir eine "Affinitätsmatrix"? Bei der "Affinitätschromatographie".
36
+ - In "chemical synthesis of DNA", "depurination" happens when a olignucleotide is exposed to .., in order to remove the '-DMT group? To "Acid".
37
+ - Nenne eine Möglichkeit wie wir die Entstehung von "Inclusion Bodies" eines rekombinanten Proteins unterdrücken können. A: Mittels "Herstellung des rekombinanten Proteins als Fusionsprotein".
38
+ - Wofür steht die Abkürzung "MS-HRM"? Methylation sensitive high resolution melt analysis.
39
+ - Nenne ein gentechnisch-basiertes Argument, das gegen die Freisetzung von GVOs (gentechnisch veränderte Organismen) spricht. A: Es werden oft, im Zuge der Selektion auf Zellen mit einem modifizierten Gen, auch die Marker-Sequenz freigesetzt. Dies ist dann üblicherweise ein Antibiotika-Resistenz-Gen.
40
+ - Warum wollen wir ein "konstantes Absorptions- und Migrationsverhalten" erreichen bei Immuno-Tests? Diese garantieren eine "Test-zu-Test Reproduzierbarkeit".
41
+ - We can use the 3C ("Chromosome conformation capture") for ...? For the identification of distal gene regulatory elements within a threedimensional chromatin context.
42
+ - FRET ("Förster resonance energy transfer") can be used to detect protein-protein interactions. We have two general components here. How do we call them? "Donor" and "Acceptor".
43
+ - Was ist der größte Nachteil aller auf PCR basierender Klonierungen? Die hohe Fehlerrate der Polymerase bei der DNA-Synthese.
44
+ - Wieso wird bei der Mikroinjektion in den männlichen statt in den weiblichen Vorkern injiziert? Da dieser größer ist.
45
+ - Wie können wir den "Metallothionein-Promotor" aktivieren? Durch Zugabe von "Zink".
46
+ - Extra amino acid sequences to expression vectors often come with what "site"? A "protease cleavage site".
47
+ - Name a resistance gene commonly used in "YIp vectors". A: The "Ampicillin gene".
48
+ - Der "Edman-Abbau" findet in was für einer Phase statt? In der "Gasphase".
49
+ - Why do we use the "two hybrid system"? To "study protein-protein interactions".
50
+ - Name the 3 main classes of S. cerevisiae expression vectors. A: (1) eppisomal (2) plasmid (3) vectors (such as YEPs)
51
+ - The YEp vectors are based on ... ? The high-copy number 2µm plasmid.
52
+ - Name 3 techniques that are commonly used to transform yeast. A: (1) electroporation (2) lithium acetate treatment (3) cell wall removal (aka protoplasts)
53
+ - Why are most "eukaryotic vectors" shuttle vectors? Because recombinant DNA procedures are technically difficult to carry out with eukaryotic cells.
54
+ - Nenne zwei Beispiele, wie wir "nichtkovalente Verbindungen" in einem Protein zerstören können. A: (1) "Harnstoff" (2) "Guanidiniumchlorid" https://en.wikipedia.org/wiki/Guanidinium_chloride
55
+ - Which "radioactive isotopes" are especially important in molecular biology? (1) 32P (2) 35S
56
+ - The halflife of "thermostable DNA-Polymerases" is typically measured at which temperature? At 95°C.
57
+ - Nenne eine sehr "deutsche", thermostabile DNA-Polymerase. A: Das "Stoffel Fragment".
58
+ - Why was "plasmid pCP3" created? To obtain the highest possible level of "foreign protein production" in a recombinant E. coli strain. URl: http://www.cabri.org/CABRI/srs-bin/wgetz?-newId+-e+-page+qResult+[NCCB_PLASMID-id:%27NCCB%203060%27]
59
+ - What is the "minimal requirement" for an "effective gene expression system"? The presence of a strong and regulatable promoter sequence upstream rom a cloned gene.
60
+ - Bei der "DMT-Schutzgruppe"... wofür steht DMT? Dimethoxytrityl. URL: https://de.wikipedia.org/wiki/DMT-Schutzgruppe
61
+ - Wann wurde das "two-hybrid system" entwickelt? 1989. URL: https://en.wikipedia.org/wiki/Two-hybrid_screening#History
62
+ - What do we mean with "R-M system"? A restriction-modification system.
63
+ - Name the major innovative part that the "pUC vectors" have over the pBR322 vectos. A: They have a MCS site ("multiple cloning site").
64
+ - What is, in general, the "ideal temperature for protein purification"? 4°C.
65
+ - What is "Base Calling" in Illumina? Fluorescence Signals are converted into sequence data.
66
+ - Erkennungstelle des Restriktionsenzyms "NcoI"? CCATGG; cuts between the two C.
67
+ - Name 3 advantages of FACS. A: (1) Quantitative (2) Fast (3) Sorting
68
+ - Nenne eine Substanz, die RNase denaturieren kann. A: Guanidinium-Thiocyanat.
69
+ - What do we mean with the term "allozymes"? Allozymes are enzymes from different alleles of the same gene.
70
+ - Wieso verwenden wir bei der cDNA-Synthese Oligo(dT)-CTCGAG-Primer? Um eine Schnittstelle für XhoI hinzuzufügen.
71
+ - The DamID method targets which sequence usually? GATC.
72
+ - What is the principle idea behind the "DamID" method? Binding of the protein of interest to DNA localizes the methyltransferase in the region of the binding site. Adenosine methylation does not occur naturally in eukaryotes and therefore adenine methylation in any region can be concluded to have been caused by the fusion protein.
73
+ - Why is the "DamID" technique employed? So that we can map the binding sites of DNA- and chromatin-binding proteins in eukaryotes.
74
+ - Was heisst "DamID"? DNA adenine methyltransferase identification.
75
+ - Nenne die 5 Schritte beim "Western-Blotting". A: (1) Absättigen (2) Primären Antikörper zugeben (3) Waschen (4) Sekundären Antikörper zugeben (5) Farbreagenz hinzufügen
76
+ - When was the yeast two-hybrid system developed? In 1989.
77
+ - What means "full restriction"? To cut at every possibility.
78
+ - Name a way how to detect "bent DNA". A: Via electrophoresis.
79
+ - Was kommt vor der Giemsa-Färbung? Eine "Vorbehandlung mit Trypsin".
80
+ - In CRISPR system, name one component that has a "NLS sequence". A: The "protein Cas9".
81
+ - In gene technology, what means the abbreviation "DIGE"? Difference gel electrophoresis.
82
+ - Wieso sollten wir bei der "cDNA-Klonierung" eine "gekühlte Zentrifuge" verwenden? Um Hydrolyse durch unspezifische Nucleasen zu vermeiden.
83
+ - A. W. für "Lipofektion". A: Liposomenfusion.
84
+ - Wie nennen wir eine "DNA-Übertragung in eukaryotische Tierzellen"? Transfektion.
85
+ - Wie schnell kann 1 Ultrazentrifuge sein (upm)? Etwa 130.000 Umdrehungen pro Minute.
86
+ - A. W. für "Differenzieller Interferenzkontrast"? Nomarski-Kontrast.
87
+ - Between Excitation and Emission, for a fluorescent molecule, lies what range? The "Stokes Shift".
88
+ - What type is "Cas9"? It is a RNA-guided nuclease.
89
+ - How can we delete the central parts of a protein coding sequence? We could use the "template-switching PCR".
90
+ - In gene technology, what do we mean with "off-target cleavage"? This is when not the target site is used but another site, usually because of lack of specificity, or because the same sequence may occur multiple times in a genome.
91
+ - TALENs are derived from ...? From the "Xanthomonas Effector AvrBs3".
92
+ - What is "Fiber-FISH"? Fluorescence in situ hybridization on deproteinized, stretched DNA.
93
+ - Name 1 fluorescent and 1 non-fluorescent stain. A: (1) fluorescent stain: Quinacrin (2) non-fluorescent stain: Giemsa
94
+ - Who gave the "Giemsa-stain" its name? Gustav Giemsa.
95
+ - When were cosmids first described? Cosmids were first described by Collins and Hohn in 1978.
96
+ - Bei wieviel Volt passiert die Elektroporation, in Bakterien und Hefen jeweils? (1) Bakterien: 2500 Volt (2) Hefen: 1500 Volt
97
+ - Half-life of 32P? 14 days
98
+ - Was ist das Substrat der Glutathion-S-Transferase? Glutathion.
99
+ - Histidine-Tags have a high affinity for ...? Nickel.
100
+ - Give another word for "in silico". A: Without cells.
101
+ - What is the defining characteristic for the "penicillin antibiotics"? They all contain a "Beta-lactam ring".
102
+ - Einschränkung der NMR in der Molekularbiologie? Sie kann nicht für sehr grosse RNA Moleküle verwendet werden.
103
+ - Name a difference between the araBAD promoter or the araC promoter. A: araC is constitutively on, the araBAD promoter is inducible with arabinose.
104
+ - What is the "biological function of restriction endonucleases"? Degrade foreign DNA, e. g. viral DNA.
105
+ - Give 1 example for a "sequence-specific fluorescent probe". A: The TaqMan probe.
106
+ - The process of collecting data from samples using the flow cytometer is termed ... ? acquisition.
107
+ - Name the 3 major elements of validation of a cell line. A: (1) authentication (2) provenance (3) contamination
108
+ - Eines der heute gebräuchlichsten Systeme bei der Gelelektrophorse ist die Markierung mit ...? Digoxigenin. Es kann mit spezifischen Antikörpern sehr einfach nachgewiesen werden.
109
+ - A. W. für "Electroporation"? Electropermeabilization.
110
+ - Bei FRET, wie nennen wir Input und Output noch? Input: Excitation, Output: Emission
111
+ - W. h "GOI" in der Gentechnik? gene of interest
112
+ - Das Enzym "Apyrase" hat welche Aufgabe? Die Apyrase katalysiert die Hydrolyse von ATP zu AMP und PPi. URL: en.wikipedia.org/wiki/Apyrase
113
+ - How can we remove supercoils from cccDNA? Treat the DNA mildly with DNase I.
114
+ - Which company created MiSeq? Illumina.
115
+ - What happens if we supply manganese rather than magnesium into a PCR mix? Mutations will be introduced.
116
+ - Die ESTs (expressed sequence tags) stammen aus ...? mRNA.
117
+ - How can we measure DNA denaturation? By measuring the absorbance of UV light passed through a solution of DNA.
118
+ - Nenne 1 Nachteil der Fällung mit PEG. A: Die Methode ist ungeeignet für die Präzipitation kleiner DNA Mengen.
119
+ - Name a technique we could use to find out where the nucleosomes are sitting. A: N-ChIP.
120
+ - In the yeast-two-hybrid system, what is the purpose of the "Activation Domain"? It has to interact with RNA-Pol II; and thus, "active transcription".
121
+ - What is the major advantage of "A-T cloning" through Taq polymerase? If we use a vector with T overhangs, then we can use these directly to clone a PCR product without digesting it with restriction enzymes.
122
+ - Was ist "Aussalzen" in der Biochemie? Die Z ugabe hoher Salzkonetrnationen. Dies setzt die Löslichkeit der meisten Proteine herab.
123
+ - Name 6 vectors for the "multiplication of DNA". A: (1) Plasmids (2) Phages (3) Cosmids (4) Phagemids (5) BAC (6) YAC
124
+ - What is the difference between "ddNTPS" and "dNTPs"? ddNTPs have a H on the 3-prime carbon of the deoxyribose sugar, instead of the normal OH found at that position in a dNTPs.
125
+ - A. W. für "DNA footprinting"? Dnase I protection analysis.
126
+ - Luciferase needs ATP as fuel, and can then convert which substance into what other substance? It can then convert luciferin to oxyluciferin.
127
+ - Das Enzym "ATP sulfurylase" akzeptiert welches Molekül als Input? PPi.
128
+ - How can we determine whether there is a protein bound to a DNA? By using DNA Footprint experiments.
129
+ - Why was the "shrimp alkaline phosphatase" such a success? Because it comes from cold-water shrimp and is thus readily destroyed by heat.
130
+ - Welches Enzym negiert die Wirkung von "Polynucleotide Kinase"? Alkaline Phosphatase.
131
+ - Polynucleotide kinase can transfer a phosphate from ATP to both DNA and RNA? Yes, it works on DNA and RNA.
132
+ - Why the name "binary vector" of Agrobacterium? Because it contains the ORIs for A. tumefaciens und E.coli.
133
+ - Difference between "transient transfection" and "stable transfection"? In "transient transfection" the plasmid remains outside of the genome and is slowly lost.
134
+ - In gene tech, what does the name "RSL-method" stand for? reverse strand labeling method
135
+ - If we wish to renature dsDNA, which temperature would be ideal? The optimal temperature is 20°C below the Tm.
136
+ - In "Cot Curves", what does "cot" mean? concentration of time
137
+ - Are "homing endonucleases" better than restriction enzymes? Somewhat. Single base changes in their recognition sequence does not abolish their cleavage, but instead reduces their efficiency to variable extents.
138
+ - The gusA gene from E. coli codes for Beta-glucuronidase, also known as GUS. What does it cleave? It cleaves D-glucuronic acid conjugates.
139
+ - Is the ccdB helpful for E. coli? No, it is a lethal gene that targets DNA gyrase. If E. coli has a mutation in its gyrase gene, such as DB3.1, then it can be used to propagate ccdB. The lethal gene is useful for ensuring that the plasmid containing it cannot be propagated in standard E. coli strains (for cloning purposes). The ccdB positive-selection marker acts by killing the background of cells with no cloned DNA, only cells containing a recombinant DNA giving rise to viable clones (insertional inactivation of ccdB).
140
+ - The E. coli gyrase is a heterotetrameric enzyme. Which subunit contains the catalytic domain? The GyrA subunit contains the catalytic domain.
141
+ - Does the Lambda "Replacement Vector" or the Lambda "Insertion Vector" have a larger coding capacity? The replacement vector does - it has about 10-20 kb.
142
+ - In Topo Cloning, which brand name do we use if we wish to stick together blunt ends of DNA? Zero Blunt Topo.
143
+ - What do we mean with a "terminal transferase activity"? This is to add a single nucleotide to the 3-prime end, usually Adenine.
144
+ - Name an enzyme with a "terminal transferase activity". A: The TAQ polymerase.
145
+ - The T4 DNA Ligase, aside from DNA, needs which two components in order to function properly? (1) Mg 2+ Ions (2) ATP as energy source
146
+ - A restriction enzyme functions as a heterodimer. What may we assume about this enzyme? It recognizes asymmetrical sequences.
147
+ - What do we mean with an "isoschizomer"? This is the case when different enzymes recognize the same target sequence. For example, DraI and AhaIII both recognize and cut at -TTT_cut_AAA-.
148
+ - Why the name "restrict" in "restriction endonucleases"? Because they restrict incoming DNA of viruses.
149
+ - Wann wurde pBR322 erstmals verwendet? 1977.
150
+ - Nenne 2 gebräuchliche Farbstoffe, die wir an Antikörper koppeln. A: (1) Fluoreszein (2) Rhodamin
151
+ - By 1940, how many enzymes had been obtained in pure form? 20.
152
+ - Die ATCC hat wieviele "tumor-derived cell lines"? Mehr als 4000.
153
+ - Maximalspannung bei der Elektroporation? Etwa 2500 Volt.
154
+ - Nenne 2 Real-Time PCR Begriffe. A: (1) Threshold (2) Baseline
155
+ - Wir können 32P-markierte 16S rRNA scheiden mit RNAse T1. Wo schneidet dieses Enzym? Am 3-prime von G.
156
+ - In flow cytometry, what is the difference between "forward scatter" and "side scatter"? Forward scatter is light bounced off at small angles from the cell, side scatter is light bounced off in other directions.
157
+ - Why do we use a "flow chamber" in flow cytometry? Cells flow through the flow chamber one at a time very quickly, about or 500 cells per second. They are then passed over to the light detector and the laser.
158
+ - Bisbenzimide is a "fluorescent stain". It binds where to? It binds to A-T rich regions of DNA and can decrease its density.
159
+ - Was ist eine "Multiplex-PCR"? Dies ist eine spezielle Variante der PCR, bei der simultan durch mehrere Primerpaare mehrere Zielsequenzen in einem PCR-Ansatz gleichzeitig amplifiziert werden können.
160
+ - Ist die Elektrophorese eine Chromatographie? Ja.
161
+ - Where does "native protein electrophoresis" start? In the middle of the gel.
162
+ - SAGE is "serial analysis of gene expression". In order to use this technique, what must be known beforehand? The 3-prime sequence.
163
+ - Sequenz von SmaI? CCCGGG.
164
+ - In a Southern Blot, do we use dsDNA or ssDNA? ssDNA.
165
+ - Name a technique that allows us to measure nucleic acid and protein synthesis. A: An "incorporation assay".
166
+ - What is the LASL technique in gene technology? "Construction of Linker Library."
167
+ - Ist die "gezielte Mutagenese" bei Proteinen für die Forschung hilfreich? Ja, denn sie kann bei der Aufklärung von Proteinfunktionen helfen.
168
+ - In der Gentechnik bei der PCR, vor allem bei der qPCR, wieso mögen wir die Uracil-N-Glykosylase (UNG) verwenden? Dieses Enzym kann verwendet werden um Kontaminationen zu vermeiden, die auf Verschleppung ("carry over") von PCR-Produkten beruhen. Mit anderen Worten, kontaminierte DNA wird abgebaut und in kleine Fragmente gespalten, DNA die uns interessiert jedoch nicht.
169
+ - At which temperature should we reannel two DNA-strands? At a temperature 20-25°C below the Tm.
170
+ - What is an "ORFTRAP"? A selection system for the cloning of open reading frames (ORFs).
171
+ - In what direction does chemical DNA synthesis occur? In 3-prime to 5-prime direction.
172
+ - What does the word "DGGE" mean in Gene Technology? Denaturing Gradient Gel Electorphoresis.
173
+ - When we wish to sort cells, we have at least two modes available - exclusion and recovery mode. Which one do we use if we wish to aim for high purity? The Exclusion-Mode.
174
+ - In gene technology, what does "RAPD" mean? Randomly amplified polymorphic DNA.
175
+ - For "Biotinylation", name two high affinity binding partners. A: (1) Avidin (2) Streptavidin
176
+ - Wie heissen die beiden Fluorophore bei FRET? (1) Reporter (2) Quencher
177
+ - The lambda vector can include n kb of foreign DNA? Up to 23 kb.
178
+ - Give two examples for "chemical Transfection Methods". A: (1) DNA-Calcium precipitates (2) Liposome mediated transfection
179
+ - We can use the Reportergene "EGFP". What does it mean? Enhanced Green Fluorescent Protein.
180
+ - What exactly are "Transfections"? This is the incorporation of DNA into mammalian cells.
181
+ - In DNA-cassettes, what does the "npt gene" encode? Neomycin phosphotransferase.
182
+ - Was heisst "STED"-Technik in der Gentechnik? "Stimulated emission depletion".
183
+ - We need growth factors for many eukaryotic cell cultures. What do we use for that? Serum from fetal calf.
184
+ - Name a disadvantage of Fetal Calf Serum. A: It is fairly expensive, approximately 100 Euro per Liter.
185
+ - Why could a scientist say that gene knock-ins may be artificial? The transgene may be expressed at higher levels with strong promoters.
186
+ - Classical knock-out studies in mice seem great, but what disadvantage do they often have? They may often be embryonically lethal, if the gene is essential in embryonic development.
187
+ - In xenograft systems, what feature must the target cells possess? They must belong to an immuno-compromized mice (a nude mouse or SCI mouse).
188
+ - In der Gentechnik, was heisst iCLIP-Methode? individual-nucleotide resolution Cross-Linking and ImmunoPrecipitation
189
+ - Nenne 1 Reagenz mit dem wir Disulfidbrücken spalten können. A: Beta-Mercaptoethanol.
@@ -0,0 +1,6 @@
1
+ # =========================================================================== #
2
+ # Physik2 tag.
3
+ # =========================================================================== #
4
+
5
+ - Was ist <one>Kinematik</one>? <one>Kinematik</one> ist <two>die Beschreibung der Bewegung von Körpern</two> in Raum und Zeit.
6
+ - Was ist "Dynamik" in der Physik? Dynamik ist die Beschreibung des Zusammenhangs zwischen Bewegung und Kraft.
@@ -0,0 +1,78 @@
1
+ # =========================================================================== #
2
+ # === FUNGI
3
+ #
4
+ # FUNGI TAG. PILZ TAG. Pilze tag. Fungus tag.
5
+ # Note that yeast is gathered in another file, called "yeast".
6
+ #
7
+ # Pilzkrankheiten von Kuchler werden in einer anderen Datei gesammelt;
8
+ # mögen aber langfristig hier eingegliedert werden.
9
+ # =========================================================================== #
10
+
11
+ - Besitzen Pilze <one>Chitin</one> in ihrer Zellwand? Ja.
12
+ - Nenne 4 Fakten zu den <one>Ascomycota</one>. A: Es sind Pilze, mit mehr als 64.000 Arten. Sie besitze einen Ascus, in dem die Ascosporen gebildet werden. Sie wachsen in Form von Hyphen.
13
+ - Besitzen Pilze Vakuolen? Ja.
14
+ - Was sind "endophytische Pilze"? Dies sind Pilze, die "in oberirdischen Pflanzenteilen leben ohne die Pflanze zu schädigen.
15
+ - Was meinen wir mit einer "Fungistase"? Dies ist die "Hemmung der Vermehrung von Pilzen".
16
+ - Wie heißen die 4 Pilzarten, die den Menschen am häufigsten infizieren? (1) "Cryptococcus" (2) "Candida" (3) "Aspergillus" (4) "Pneumocystis"
17
+ - What do we mean with the "Minimum Inhibitory Concentration" (MIC), in regards to fungi? The "MIC" is the lowest drug concentration that still visibly inhibits fungal growth.
18
+ - "Superficial mycoses" affect ... give three examples here. A: (1) affect the "skin" (2) affect the "hair" (3) affect the "nails"
19
+ - A. W. für "Ergot"? Mutterkorn.
20
+ - What is the most wanted and/or most used fungal biochemical reaction? This is the conversion of sugar into alcohol and CO2, aka "fermentation. The chemical formula is: "C6H12O6 <--> 2xC2H5OH + 2xCO2".
21
+ - Was meinen wir mit "Mykorrhizapilzen"? Dies sind Pilze, die mit Waldbäumen in einer engen Lebensgemeinschaft leben.
22
+ - N Pilze sind bis heute (~2019) klassifiziert worden? "70.000".
23
+ - How do we call the "cross walls of hyphae" from fungi? Septae.
24
+ - What is the "dominant fungal membrane sterol"? Ergosterol.
25
+ - Name three components of fungal cell walls. A: (1) chitin (2) glucans (3) mannose-proteins
26
+ - Do fungi have cell walls? Yes, they do.
27
+ - Besitzen Pilze Chlorophyll? Nein.
28
+ - Schlauchpilze n Arten? 20.000.
29
+ - Speichersubstanz bei den Pilzen? Glykogen, wie bei den Tieren.
30
+ - Wie heissen "Schimmelpilze"? Fusarien. URL: http://de.wikipedia.org/wiki/Fusarium
31
+ - Wer entdeckte die "Cephalosporine"? Guiseppe Brotzu.
32
+ - Was sind die poky-Mutanten in Neurospora crassa? Dies ist eine mitochondriale Deletion, die zu einer geringeren Anzahl an Ribosomen (auf Grund verminderter rRNA-Synthese) führt.
33
+ - Was fehlt höheren Pilzen, zellulär betrachtet? Sie besitzen keinen Golgi-Apparat sondern nur "Golgi-Zisternen".
34
+ - Deutsche Bezeichnung für die "Chytridiomycota"? Töpfchenpilze.
35
+ - Nenne einen "räuberischen Pilz" der mit dem Buchstaben "A" beginnt. A: "Arthrobotrys anchonia"
36
+ - Wie nennen wir "Pilzvergiftungen" lateinisch? Mycotoxicose.
37
+ - Haben Pilze Chloroplasten? Nein.
38
+ - Was sind "Trichothecenes"? Trichothecenes sind Mykotoxine, die von Trichoderma und Fusarium produziert werden.
39
+ - Was sind "Mykotoxine"? Dies ist eine kollektive Bezeichnung für Toxine, die als sekundäre Stoffwechselprodukte von Schimmelpilzen produziert werden.
40
+ - Nenne einen Vertreter der "Deuteromyceten". A: Penicillium candidum
41
+ - Unterschied zwischen Teleomorphen und Anamorphen? Teleomorphe haben eine sexuelle Vermehrung mit typischen Fruchtkörpern; Anamorphe haben eine asexuelle Vermehrung mit typischen asexuellen Sporen.
42
+ - Nenne einen Vertreter der "Fungi imperfecti". A: Penicillium.
43
+ - Fungi cause n% of all plant diseases? About ~70%.
44
+ - Was heisst "ignis sacer"? "heiliges Feuer".
45
+ - Welcher Pilz setzte den GIs im Pazifikkrieg zu? Trichoderma.
46
+ - Nenne 1 wichtigen Unterschied zwischen Hefe und Schimmelpilzen. A: Schimmelpilze sind mehrzellige Lebewesen.
47
+ - Some fungi develop a so called "Bullers drop." How does it start? Sugar is released on top of the apiculus, and water condenses there.
48
+ - Are there fungi with flagella? Yes, the "chytrids".
49
+ - The most is the most precise description of Trichoderma life style is ...? Mycotrophy on fungi.
50
+ - What happens to Trichoderma when the host plant dies? Trichoderma also dies.
51
+ - How do we call the study of fungi? Mycology.
52
+ - Warum heisst der "Fliegenpilz" so? Weil man damit Fliegen töten kann, indem man den Pilz zerkleinert und in Milch gibt. Die Fliegen trinken davon und sterben. Oder auch nicht - sie leben noch und fliegen nach 10 Minuten wieder, leicht betäubt, weg.
53
+ - Are mice natural Candida hosts? No.
54
+ - A. W. für "Cryptococcosis"? fungal meningitis.
55
+ - What is "cryptococcis"? This is a potentially fatal fungal disease, a defining opportunistic infection for AIDS. A: URL: en.wikipedia.org/wiki/Cryptococcosis
56
+ - We have the "DHS System" in the Human Fungal Pathogens. What does DHS stand for? (1) Dermatophytes (2) Hefen (3) Schimmel
57
+ - Was heisst "Phytophthora infestans" übersetzt? Die Blattvernichtende.
58
+ - Ähneln Eukaryoten den Mikrosporidien? Ja, aber Mikrosporidien haben keine Mitochondrien.
59
+ - A. W. für "Ascomyceten"? Schlauchpilze.
60
+ - Name a fungi that can create Aflatoxins. A: Aspergillus flavus
61
+ - Give an example for a "superficial mycose". A: Infection of the nails.
62
+ - Wie vermehren sich die Ascomycota vegetativ? Durch Konidienbildung.
63
+ - Bei den "Champignons", wo findet die Meiose statt? In der Basidie.
64
+ - Welchen Speicherstoff verwenden Pilze? "Glykogen" (wie die Tiere auch).
65
+ - Was bewirken Azol-Antimykotika wenn sie gegen Pilze eingesetzt werden? Sie hemmen die Ergosterol-Biosynthese in Pilzen.
66
+ - Warum besteht die Zellwand von Pilzen nicht aus Zellulose? Da sie sich sonst selbst aufessen würden.
67
+ - Was ist der "Homothallismus" bei Pilzen? Dies ist die Fähigkeit zum Paarungstypwechsel.
68
+ - Bilden Steinpilze haploide Sporen? Ja.
69
+ - Was ist ein "Myzel"? Ein Geflecht von Pilzfäden, das jedoch kein echtes Gewebe ist.
70
+ - Wieviele Pilzarten wurden bis heute beschrieben? Etwa 100.000 Arten.
71
+ - What is the "Plectenchyma"? This is a term that is used to describe "fungal tissues".
72
+ - Bei welchen Pilzen finden wir die Konidien-Bildung? Bei den Schlauchpilzen.
73
+ - Was sind "Mykorrhiza"? Zusammenschluss von Pilz und Wurzel.
74
+ - Nenne eine Gruppe die Konidien bildet. A: Die Schlauchpilze.
75
+ - Welche Farbe hat die "Bärentatze"? Gelb. Ist ein Pilz.
76
+ - For Fungi, what do the terms "teleomorph","anamorph" and "holomorph" mean? (1) Teleomorph is the sexual reproductive stage (morph), typically a fruiting body (2) Anamorph is the asexual reproductive stage (morph), often mold-like (3) Holomorph is the whole fungus, including anamorphs and teleomorph
77
+ - Nenne zwei Pilzgruppen. A: (1) Basidiomyceten (2) Ascomyceten
78
+ - Der "Woronin-Körper" bei Pilzen besteht aus welchem Protein? Aus dem HEX-1 Protein.
@@ -0,0 +1,150 @@
1
+ # =========================================================================== #
2
+ # === Genetische Krankheiten
3
+ #
4
+ # Alles über genetische Krankheiten wird hier gesammelt. Auch Fakten die
5
+ # dazu Bezug nehmen.
6
+ #
7
+ # Auch "Pathophysiology for Biotechnologists".
8
+ # Genetic diseases tag, genetic disease tag. Gendisease tag.
9
+ # =========================================================================== #
10
+
11
+ - Patients affected by the <one>PKU disease</one> (the <one>Phenylketonuria disease</one>) typically have a mutation in the PAH gene that tends to be ... where? The mutations tend to typically be affecting the initiation codon <one>AUG</one>, which means that these patients fail to produce any <two>PAH polypeptide</two>.
12
+ - Is the <one>Huntington's disease</one> transmitted in an "autosomal recessive" or in a "dominant" manner? It is <one>transmitted dominantly</one>.
13
+ - In gene therapy we can treat <one>X-SCID patients</one> through <three>stem cell transplantation</three>, but this may have potential side effects. Name one such side effect. A: A <one>virus infection</one>, e.g. through "EBV".
14
+ - Wann wurde die <one>Leber's Congenital Amaurosis</one> erstmals beschrieben (+- 5 Jahre sind ok)? A: <one>1869</one>.
15
+ - Give another name for <one>alkaptonuria</one>. A: <one>Black urine disease</one>.
16
+ - Take the following statement: <one>"Any hereditary disease in which cellular metabolism is abnormal results from an inherited defect in an enzyme."</one>. Which person coined this statement? <one>Archibald Garrot</one>.
17
+ - If the <one>PSEN1 gene</one> is mutated, what disease may follow? <one>Early onset Alzheimer</one>.
18
+ - In the <one>sickle cell disease</one>, the amino acid E is changed into a V. But within that particular codon, which nucleotide position is changed? The <one>second one</one>; <two>position two</two> within that codon. []
19
+ - In <one>sickle cell disease</one>, for homozygous carriers, how can we label the alleles? HbS + HbS.
20
+ - Give another name for the <one>Gilbert's syndrome</one>. A: <one>Hyperbilirubinemia</one>. URL: https://en.wikipedia.org/wiki/Gilbert's_syndrome
21
+ - Bei der <one>PKU</one> liegt was erhöht vor? <one>Phenylalanin</one> (zumindest <two>im Blut</two>).
22
+ - Nenne eine molekularbiologische Ursache der Diagnose <one>Situs Inversus</one> beim Menschen. A: Ein <one>Ciliendefekt</one> ist dafür verantwortlich das die inneren Organe schliesslich in der jeweils anderen Körperhälfte liegen.
23
+ - <one>Spinal muscular atrophy</one> is linked to a genetic mutation in which gene? In the <one>SMN1 gene</one>.
24
+ - Nenne drei Merkmale des <one>Angelman-Syndroms</one>. A: (1) <one>geistige Behinderung</one> (2) Krampfanfälle (3) Störungen des Spracherwerbs
25
+ - When the <one>Dyskerin gene</one> is mutated, which genetic disease may be the consequence? <tomato>X-linked dyskeratosis congenita</tomato>. URL: https://en.wikipedia.org/wiki/Dyskerin
26
+ - Wie lange dauert es bis man nach Auftreten der <one>Huntington Symptome</one> verstirbt? <one>15-20 Jahre</one>.
27
+ - Bei welchem genetischen Phänomen treten sehr häufig genetische Störungen auf? Bei der <one>Inzucht</one>.
28
+ - Give another name for the <one>progerin</one> protein. A: <one>Prelamin A protein</one>.
29
+ - Wenn der <one>Harnstoffzyklus blockiert</one> ist, nach Synthese des "Argininosuccinat", entsteht <three>welche Krankheit</three>? <one>Hyperammonämie</one>. URL: https://de.wikipedia.org/wiki/Hyperammon%C3%A4mie []
30
+ - The <one>Werner's syndrome</one> has been described by <violet>Otto Werner</violet>, in the year ... ? <one>1904</one>. URL: https://en.wikipedia.org/wiki/Werner_syndrome#Background_and_history []
31
+ - Name a human disease where we may encounter "hypogonadism and sterility". A: The <one>Klinefelter syndrome</one>.
32
+ - What is the cause of the <one>Bowen-Conrad syndrome</one>? <one>Defective ribosome biosynthesis</one>.
33
+ - <two>When</two> was it discovered that the <one>fragile X syndrome</one> was due to <three>expanded trinucleotide repeats</three>? In <one>1991</one>.
34
+ - What is the cause of <one>Xeroderma pigmentosum</one>? A defect in one of the proteins that "help correct damaged DNA".
35
+ - <one>Xeroderma pigmentosum</one> (XP) is a genetic disorder. Is it a recessive or dominant disease? It is <one>a recessive disease</one>.
36
+ - Bei der <one>spinalen Muskelatrophie</one> ist oft ein Gendefekt im Gen "SMN1" entscheidend. Wofür steht SMN hier? <one>Survival of motor neuron</one>.
37
+ - <one>Every childbearing couple</one> faces an approximately n percent risk of having a child with a genetic anomaly? About <one>3%</one> (at the least in the USA).
38
+ - The disease <one>Azoospermia</one> refers to ... ? The <one>absence of sperm in semen</one>.
39
+ - Name two ways how we can <one>treat SCID</one> effectively, past the year 2017. A: (1) Hematopoietic stem cell transplantation (HSCT) (2) gene therapy
40
+ - Das <one>Retinoblastomgen</one> ist auf welchem Chromosom zu finden? Auf <one>Chromosom 13</one>.
41
+ - <one>Mutations in the dystrophin gene</one> can cause ... ? <one>Duchenne muscular dystrophy</one>.
42
+ - Das Gen <one>HYLS1</one> geht beim Menschen mit welchem Syndrom einher? Mit dem <one>Hydroletalus-Syndrom</one>.
43
+ - Give an example, how we can show, that genetics of the host is involved in infectious diseases. A: Individuals in a population, infected with the same microbe, show a <one>high clinical variability</one>.
44
+ - Nenne ein Beispiel für ein <one>dominant lethales</one> Allel beim Menschen. A: Die <one>Huntington-Krankheit</one>.
45
+ - Nenne zwei Genprodukte, die bei der <one>Hutchinson-Gilford Progeria</one> betroffen sind. A: (1) <one>Lamin A</one> (2) <one>Lamin C</one> URL: https://en.wikipedia.org/wiki/Progeria#Lamin_A []
46
+ - Patients with the "Diamond-Blackfan anemia" (DBA) disease, often have a mutation in which gene? They often have a mutation in the ribosomal protein gene called <one>RPS19</one>.
47
+ - Nenne eine Krankheit, die aufgrund einer defekten <one>Nucleotide Excision repair</one> im Menschen entsteht. A: <one>Xeroderma Pigmentosum</one>; die <two>Mondscheinkinder</two>.
48
+ - The <one>L1 (LINE) element</one> can cause genetic diseases. Give one such example. A: <one>Hemophilia A</one>.
49
+ - On which human chromosome can we find the <one>Huntingtin Gene</one>? On the <one>short arm of chromosome 4</one>. URL: https://en.wikipedia.org/wiki/Huntingtin#Gene
50
+ - Give an example for a <one>amino acid disorder</one> in humans. A: <one>Phenylketonuria</one> (<two>PKU</two>).
51
+ - Was passiert wenn ein Mensch einen genetischen Defekt in "MyD88" hat? Dann kommt es zum Beispiel zu einer vermehrten Infektion mit <one>Streptococcus pneumoniae</one>.
52
+ - By the year <one>2009</one>: how many diseases could we <two>detect by genetic tests</two>? About <one>2000</one>. []
53
+ - How may <one>Xeroderma pigmentosum</one> be treated? Affected individuals should <one>avoid the sun</one>. []
54
+ - <one>Duchenne-Muskeldystrophie</one>: weches Gen ist defekt? Das <one>Dystrophingen</one>.
55
+ - What happens if a "chromosome breakage" occurs within a gene? The result will be the <one>functional disruption of that gene</one>.
56
+ - Inzidenz bei der Krankheit <one>Alkaptonuria</one>? <one>1 : 200.000</one>. []
57
+ - Name one way how to demonstrate <one>reciprocal translocation</one>? By <one>chromosome painting</one>.
58
+ - How many men are <one>red-green colour blind</one>, in percent? About <one>8%</one>. []
59
+ - Warum ist gerade <one>Trisomie 21</one> beim Menschen so häufig? Weil das Chromosom 21 so klein ist; daher ist es relativ gesehen nicht so ein Problem verglichen mit, zum Beispiel, dem grössten Chromosom Nr. 1.
60
+ - In general: what kind of <one>mutation</one> can cause <two>anticipation</two>? <one>Dynamic mutations</one>.
61
+ - A point mutation in collagen can lead to which disease? <one>Osteogenesis imperfecta</one>.
62
+ - In <one>osteogenesis imperfecta</one> there is a point mutation in ... ? The <one>collagen sequence</one>.
63
+ - Name two lysosomal storage disorders/diseases in mankind. A: (1) the <one>Gaucher disease</one> (2) the <one>Fabry disease</one>
64
+ - How many different lysosomal storage diseases have been described up until 2019, give or take? More than 40.
65
+ - Are lysosomal storage disorders multis-ystem? Yes - they typically affect several organs.
66
+ - Is <one>achondroplasia</one> <two>a dominant mutation</two>? Yes.
67
+ - Name <one>a genetic disease</one> that can be translated with the words <two>hereditary dwarfism</two> (in humans). A: <one>Achondroplasia</one>.
68
+ - The first disease interpretable at the molecular level was ... ? <one>Sickle-cell anaemia</one>.
69
+ - Nenne eine Krankheit, bei der <one>ein angeborener Defekt in der Kollagenbiosynthese</one> vorliegt. A: Die <one>Osteogenesis imperfecta</one> - die Glasknochenkrankheit.
70
+ - In der Biochemie: was bedeuten die Buchstaben beim <one>LHON</one> disease? <one>Leber's Hereditary Optic Neuropathy</one>.
71
+ - Males are quite often affected by "hemophilia". Two factors are usually modified, "factor 9" or "factor 8". Which one is more commonly mutated? <tomato>Factor 9 deficiency</tomato> is more common than <tomato>Factor 8 deficiency</tomato> (<royalblue>9 > 8</royalblue>).
72
+ - Ursache der <one>CML Krankheit</one>? Translokation des Chromosoms 22-9.
73
+ - Wenn das <cadetblue>ATM-Gen</cadetblue> mutiert ist, haben betroffene Menschen welches Problem? Ein gehäuftes Auftreten von Tumoren.
74
+ - Wie hoch ist die <one>Inzidenz bei SCID</one>? A: 1 : 1_000_000.
75
+ - The strongest genetic risk factor for rheumatoid arthritis is which gene (or rather, variants in that gene)? The <tomato>HLA-DRB1 gene</tomato>.
76
+ - Bei der PKU (<tomato>Phenylketonurie</tomato>) kommt es nach Ausfall der Phenylalaninhydroxylase auch zu einer mentalen Retardation. Wieso eigentlich? Da <one>Dopamin</tomato> nicht gebildet wird.
77
+ - Normal red blood cells last about 4 months in the bloodstream. <one>Fragile sickle cells</one> break down after ...? After about <tomato>10-20 days</tomato>, which causes anemia.
78
+ - Is the <tomato>Cockayne syndrome</tomate>, a rare inherited disorder, associated with cancer? No.
79
+ - Nenne eine Möglichkeit die Krankheit <tomato>PKU</tomato> zu diagnostizieren. A: Mit Hilfe des Guthrie-Tests, bei dem das Bakterium <tomato>Bacillus subtilis</tomato> eingesetzt wird.
80
+ - Bei der PKU (Phenylketonurie) ist welches Enzym defekt? Die <tomato>Phenylalaninhydroxylase</tomato>.
81
+ - Welches Problem haben Phenylketonurie-Personen? Sie können die Aminosäure Phenylalanin nicht abbauen. Dadurch reichert sich diese Aminosäure im Körper an.
82
+ - Wofür steht die Abkürzung "BRCA-1 gene"? Breast cancer 1, early onset gene. URL: https://www.wikigenes.org/e/gene/e/672.html
83
+ - If we can detect the <orange>Bence Jones protein</orange> in the urine, this may be indicative of which disease? <tomato>Multiple myeloma</tomato>.
84
+ - The "Werner syndrome helicase" (WRN helicase) is associated with some sort of genetic disease / aging-related effects. We could use a <tomato>slightly longer</tomato> but better name for this helicase. Which one would that be? "<u>Werner syndrome ATP-dependent helicase</u>". URL: https://en.wikipedia.org/wiki/Werner_syndrome_helicase
85
+ - "<u>Dyslipoproteinämie</u>" können auch vererbt werden. Was meinen wir mit einer Dyslipoproteinämie eigentlich? Dies bezeichnet ein gestörtes Verhältnis der Lipoproteinfraktionen im Blutserum, insbesonders ein Missverhältnis von "HDL" zu "LDL".
86
+ - Name a "X-chromosomal recessive disease". A: "Haemophilia" - only male carriers are affected by this disease. URL: https://en.wikipedia.org/wiki/Haemophilia
87
+ - Beim menschlichen "malignen Gliom" (Glioblastoma) wird oft welcher Wachstumsfaktor überproduziert? IGF: "insulin-like growth factor. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4559821/
88
+ - Is "polydactyly" dominant? Yes.
89
+ - Ursache von "Xeroderma Pigmentosum" Defekt? "Nucleotide Excision Repair" ("NER") ist fehlerhaft.
90
+ - Name a human, genetic disease able to cause blindness. A: "Leber's congenital amaurosis". URL: https://en.wikipedia.org/wiki/Leber%27s_congenital_amaurosis
91
+ - "Sickle hemoglobin" unterscheidet sich von normalen Hemoglobin inwiefern? An "Position 6" der "Hämoglobin Beta-Untereinheit" ist E gegen V ausgetauscht. (Mnemonic: "SicklE-V"; Delta 6, E -> V, Glutaminsäure wird zu Valin) URL: https://en.wikipedia.org/wiki/Sickle-cell_disease
92
+ - What may be the "world's most common genetic diseases"? "Hemoglobinopathies".
93
+ - Eine ("genetische") Störungen der Chromosomenzahl durch ...? "Non-Disjunction".
94
+ - Name a genetic disease in which a "missense mutation" is the genetic culpri. A: The "sickle cell disease". URL: https://en.wikipedia.org/wiki/Sickle_cell_disease
95
+ - In people diagnosed with sickle cell disease, at least one of the beta-globin subunits in hemoglobin is replaced with another hemoglobin variant. How do we call this hemoglobin variant? "Hemoglobin S".
96
+ - The "Li-Fraumeni syndrome" arises through a mutation in which gene? "TP53" (the one that codes for p53).
97
+ - Cystic fibrosis is caused by ... ? A deletion of "Phenylalanin-508" ("delta F508").
98
+ - Name 4 single-gene disorders in humans. A: (1) cystic fibrosis (2) sickle cell anemia (3) Huntingtons disease (4) hereditary hemochromatosis
99
+ - When was the human disease "cystic fibrosis" discovered? 1938.
100
+ - What is the main cause of morbidity and mortality in individuals with "cystic fibrosis"? "Lung disease".
101
+ - Das CFTR-Gen, das bei der cystischen Fibrose involviert ist (und mutiert vorliegt), findet sich auf welchem Chrosomon im menschlichen Genom? Auf "Chromosom 7".
102
+ - Bei der cystischen Fibrose ist oft das CFTR-Protein defekt. Wieviele Aminosäuren hat dieses Protein? 1480.
103
+ - The disease called "Diamond-Blackfan anemia" is caused by a mutation in which gene? The "RPS19 gene".
104
+ - Beim Menschen, gib eine andere Bezeichnung jeweils für "Trisomie 21", "Trisomie 18" und "Trisomie 13". A: (a) Trisomie 21: Down-Syndrom (b) Trisomie 18: Edwards-Syndrom (c) Trisomie 13: Pätau-Syndrom
105
+ - Give another term for "Hypertrichosis". A: "Werewolf Syndrome".
106
+ - Ein Mangel an B12 führt zu welcher Krankheit? "Perniziöser Anämie".
107
+ - In SCID, in humans, are more male or female people affected? "More males" are affected by SCID.
108
+ - Was ist die "Achondroplasie" und wie entsteht sie? Dies ist eine Mutation, welche das Wachstum des Skelettsystems betrifft, und zu einer "verfrühten Verknöcherung" führt. Ursache für diese Krankeht ist eine Punktmutation im Gen FGFR-3 (fibroblast growth factor receptor 3).
109
+ - In welchem Gen liegt die "Ursache für die Sichelzellanämie" begründet? Dies ist eine Punktmutation im Beta-Globingen.
110
+ - "Achromatopsie" ist die "totale Farbenblindheit". Wieviele Personen sind hierbei, in Deutschland, betroffen? Etwa 3000 Personen.
111
+ - Name a common cause for the "Swyer-Syndrom". A: A point mutation or a deletion in the "SRY gene".
112
+ - What do we mean with the "Swyer-Syndrom"? These are "XY females". URL: https://de.wikipedia.org/wiki/Swyer-Syndrom
113
+ - Give another term for "Achromatopsia". A: "Total color blindness".
114
+ - If the "Factor VIII gene" is defect, what disease may result from this? "Hemophilia A".
115
+ - What will be the effect of "high levels of deoxyadenosine" in the human body? This will kill B and T cells of the immune system. Thus, the body will be open to infection by bacteria and viruses.
116
+ - What are the typical symptoms of "X-SCID"? The symptoms include "life threatening infections", already in newborns.
117
+ - Name a typical therapy for "X-SCID". A: Via "stem cell transplantation".
118
+ - When was the "Leber's Congenital Amaurosis" first described? In "1869".
119
+ - Welche Krankheit haben "Alkaptonuria Patienten" häufig? "Arthritis".
120
+ - In the Rett syndrome, the MECP2-gene is the major functional cause of this syndrome. Of what type is the product of the MECP2-gene? It is a "transcriptional repressor".
121
+ - 2 Beispiele für autosomal recessive diseases caused by defects in Nucleotide excision repair? (1) "Cockayne Syndrome" (2) "Xeroderma Pigmentosum"
122
+ - Warum verstarb der berühmte "bubble boy" David bei einer Transplantation? Die Spenderin, seine Schwester, trug den "Epstein-Barr-Virus" in sich.
123
+ - Was sind "orphan diseases"? Das ist der Fall wenn wir nur wenige PatientInnen haben bei seltenen Erkrankungen.
124
+ - The "age of onset" in the Huntington diseas, correlates with ... ? The repeat length.
125
+ - Genetische Ursache für die "Progeria" Krankheit? "Frame shift mutation" in Lamin A und Lamin C.
126
+ - Bei der Sichelzellanämie, im Hb(S) Allel, wieso ergibt sich ein Unterschied auf molekularer Ebene? Weil eine polare Aminosäure gegen eine unpolare Aminosäure umgetauscht wird.
127
+ - Give 3 examples for conventional "primary immunodeficiencies" (PID). A: (1) SCN: Severe congenital neutropenia (2) XLA: lack of B cells (3) SCID: lack of T cells
128
+ - Wofür steht "MSMD"? Mendelian susceptibility to mycobacterial disease.
129
+ - Can we treat "XLA" (X-linked agammaglobulinemia)? Yes, via gammaglobulins, in particular IgG.
130
+ - In the disease "Diamond-Blackfan anemia", which gene is mutated? The ribosomal protein gene called "RPS19".
131
+ - Frequency of the Huntingon disease in Western countries? About 5 people per 100_000 are affected by HD.
132
+ - Nenne 1 genetische Ursache für eine "chronische Granulomatose". A: Ein Defekt im "NADPH-Oxidase-System".
133
+ - MeCP2 kann im Komplex-Verbund was? Histone deacetylieren (also Acetylgruppen von Histonen entfernen). Dies "silenced" ein Gene (schaltet es also aus).
134
+ - Beim Rett-Syndrom ist das Gen MeCP2 ("Methyl-CpG-Binding Protein 2") betroffen. Wo genau liegt dieses Gen? Es liegt in der chromosomalen Region "Xq28".
135
+ - Das "Rett-Syndrom" betrifft Mädchen. Welches Gen liegt mutiert vor? Das MeCP2-Gen.
136
+ - Mit welcher Krankheit ist "MECP2" assoziiert? Mit dem "Rett syndrome". (Merkschema: "MacRett")
137
+ - Does "Pentasomy X" (XXXXX) exist in humans? Yes.
138
+ - PKU Inzidenz beim Menschen? 1: 10_000
139
+ - Name an "early method" that could be used to identify "disease genes"? positional cloning.
140
+ - Humans may have "XXXX" chromosomes, Tetrasomy X. When was this first described? In 1961.
141
+ - "X0 monosomy" patients may show "gonadal dysfunction". Give another term for the latter. A: Sterility.
142
+ - What do we mean with the term "genetic load"? Virtually all members of a diploid species carry a number of deleterious recessive mutations.
143
+ - Huntington disease occurs at which frequency? About 1 patient per 100.000 individuals.
144
+ - Nenne eine genetische Krankheit bei der wir die "Bildung eines schädlichen Produkts durch Substratentzug" verhindern mögen. A: Die "Phenylketonurie", PKU.
145
+ - Mukoviszidose entsteht aus einem Defekt im "CFTR-Gen". Auf welchem Chromosom finden wir dieses Gen? Auf dem Chromosom 7.
146
+ - Wie nennen wir die Krankheit "Mukoviszidose" in der deutschen Sprache? "Zäher Schleim".
147
+ - Wie nennen wir die genetisch Krankheit "44XXX" mit trivialer Bezeichnung? "Superfemale".
148
+ - Welches disease ist "XLA"? X-linked Agammaglobulinemia.
149
+ - How many single-gene disorders are known in humans? 6.000.
150
+ - Ein Mensch hat "Chorea Huntington". Ist es etwas besser wenn dies vom Vater oder von der Mutter stammt? Von der Mutter, da die Krankheit dann etwas weniger schlimm verläuft.
@@ -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, wie lange ist das <one>MTE Element</one>? "10 bp", von 18 - 28.
10
+ - Was kommt nach der A-branch point im Intron? A: Ein <one>Py-Tract</one>.
11
+ - Was haben Proteine gemeinsam die <one>sekretiert</one> werden? Eine <one>Amino-terminale Sequenz</one>, die reich an hydrophoben Aminosäuren ist.
12
+ - Wo beginnt <one>PIC formation</one>? A: An der <one>TATA Box</one> (-30).
13
+ - 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ß.
14
+ - 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
15
+ - Between an activator and the basal apparatus, we may be able to find ... ? The <one>coactivator</one>.
16
+ - Wer ist der <one>Transkriptionsaktivator</one> im PhoB/PhoR System? A: <one>PhoB</one>.
17
+ - Welche Fähigkeit verliert <one>acetyliertes HMGA1</one>? A: Kann nicht mehr an DNA binden.
18
+ - <one>mRNA in Eukaryotes</one> is degraded where? In <one>P-bodies</one>.
19
+ - 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.
20
+ - <one>eIF2</one> bindet an? Methionyl-tRNA.
21
+ - 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>.
22
+ - Man findet ein <one>Ribozyme</one> in einer Zelle. Was könnte man zuerst annehmen? Das dieses Ribozyme auch RNA abbauen mag.
23
+ - Give an example where <one>hydroxyprolin</one> can be found. A: In <one>collagen</one>. []
24
+ - <one>hSPT5</one> ist was? A: <one>hSPT5</one> ist ein <two>Elongationsfaktor</two>.
25
+ - <one>Alpha-CTD</one> erkennt was? Das <one>UP-Element</one>.
26
+ - Wer entfernt <one>Introns</one>? A: Das <one>Spliceosome</one>. []
27
+ - The protein called <one>Maskin</one> binds to ... ? To the <one>CPE</one> (<two>cytoplasmic polyadenylation element</two>).
28
+ - Das <one>U6 snRNA Gen</one> hat ein besonderes Strukturmerkmal. Welches? A: Eine <one>TATA Box</one> bei Region-30.
29
+ - Mit welchem Protein beginnt die <one>PIC Formation</one>? A: Mit <one>TBP</one>. []
30
+ - 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).
31
+ - What is the normal task of the enzyme <one>Polynucleotide Phosphorylase</one>? Breaks down RNA.
32
+ - Können Antikörper <one>Histonmodifikationen</one> erkennen? Ja. []
33
+ - Wo beginnen wir mit dem Zählen bei den tRNAs? Vom <one>5' Ende</one> heraus. []
34
+ - <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>.
35
+ - What is the immediate effect of the <one>lacI-Repressor</one> binding to DNA? It <one>causes looping of the DNA</one>.
36
+ - 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>.
37
+ - A. W. für <one>Gal4 Enhancers</one>? <one>UAS</one>.
38
+ - Was können <one>SH2 Domänen</one>? Sie können an die P-Tyr-Reste eines Proteinpartners binden.
39
+ - Methylated and acetylated lysines are important for ... in the nucleus. A: <one>Chromatin regulation</one>.
40
+ - 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).
41
+ - DNA und RNA can be <one>nonspecifically stained</one> with ... ? <one>Ethidium bromide</one>.
42
+ - Name two domains that can be found in <one>HP1</one>. A: (1) <one>chromodomain</one> (2) <one>chromoshadow domain</one>
43
+ - 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>.
44
+ - <one>UBE3A</one> kodiert für? Eine Ubiquitin-Protein Ligase.
45
+ - 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.
46
+ - Wie können <one>DNA Sonden</one> radioaktiv markiert werden? A: Mittels 32P-ATP und dem Enzym <one>Polynukleotid Kinase</one>.
47
+ - How can we define a <one>strong promoter</one>? A strong promoter, by defintion, is a promoter that leads to a high rate of transcription initiation.
48
+ - The <one>DNA-recognition rules</one> are of which two types? (1) <one>chemical</one> (2) <one>stereochemical</one>
49
+ - 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>.
50
+ - Name 3 general ways how <one>translation initiation</one> can be blocked. A: (1) starvation (2) drugs (3) genetic manipulation
51
+ - 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.
52
+ - Welche Proteine bilden den <one>cap-binding complex</one>? A: <one>A, E, G</one> (eIF4A, eIF4E, eIF4G)
53
+ - Was ist <one>template recognition</one>? A: Bindung der RNA Polymerase an den Promoter.
54
+ - 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.
55
+ - In welchen <one>Protein-Typen</one> ist <three>Arginin</three> vor allem wichtig? A: Bei Proteinen die an DNA binden.
56
+ - Was für eine <one>Schleife</one> kann der lac-Repressor ausbilden? Eine <one>Repressionsschleife</one>. []
57
+ - Was geht dem <one>Anticodon loop</one> voraus? Immer <one>2 Pyrimidine</one>.
58
+ - Welche Region im Sigmafaktor agiert als <one>molecular mimic</one> von DNA? A: Der Sigmafaktor Bereich <one>1.1</one>.
59
+ - <one>Metallothionein Promotoren</one> können künstlich wie aktivieren werden? Durch <one>ZnSO4</one>. URL: https://de.wikipedia.org/wiki/Zinksulfat
60
+ - What <one>bridge</one> can we find in the eukaryotic cap? A tri-phosphate bridge.
61
+ - Ist <one>RNA-Editing</one> bei Säugetieren <three>Gewebe-spezifisch</three>? Ja. []
62
+ - 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".
63
+ - What happens in <one>NGD</one>, the <one>no-go decay</one>? mRNAs have a strong secondary structure that can block ribosome progression.
64
+ - <one>CBP</one> und p300 sind was (haben was gemeinsam)? A: Es sind beides <one>Co-Aktivatoren</one>.
65
+ - What do we mean with the <one>ribosome code</one>? The functional specifity among ribosomal proteins regulates gene expression.
66
+ - 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>.
67
+ - 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>.
68
+ - Was ist die <one>H1RNA</one> in Säugetieren? Das ist der RNA Anteil in der RNase P.
69
+ - 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.
70
+ - Was macht <one>UDPE</one>? A: UDPE <one>bindet Vitamin D</one>.
71
+ - In <one>mRNA decay</one>, which variant is more common - the "decapping pathway" or the "exosome pathway"? The <one>decapping pathway</one> is more common.
72
+ - Name <one>a mRNA in Eukarya</one> that has a stem-loop structure in the 3'-UTR. A: <one>Histone mRNA</one>.
73
+ - 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.
74
+ - 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.
75
+ - At which stage is the "Ser5 position" phosphorylated by "TFIIH"? During <one>transcription initiation</one>.
76
+ - In general: <one>transcription</one> that takes place in the nucleus, occurs in ... ? <one>Transcription factories</one>. []
77
+ - Nenne eine Region, an die ein <one>U2AF-Protein</one> binden kann. A: Die <one>3'-Spleißstelle einer prä-mRNA</one>.
78
+ - Provide one example for a <one>post-transcriptional control factor</one>. A: <one>miRNA molecules</one>.
79
+ - What is the major task of the <one>tmRNA</one>? The <two>tmRNA</two> <one>frees stalled ribosomes</two>.
80
+ - 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>.
81
+ - Was macht die <one>PKA</one> im Zellkern? A: Sie überträgt eine Phosphat-Gruppe auf das <one>CRE-Bindeprotein</one>.
82
+ - The <one>protein S1</one> is part of ...? The <one>30S ribosomal subunit</one>.
83
+ - Was heisst <one>mTORC1</one>, vor allem das <three>C</three> dabei? <one>mTOR Complex 1</one>.
84
+ - Nenne einen Cofaktor der RNA Pol III! A: Das <one>La-Protein</one>.
85
+ - In a <one>tRNA</one>: what is the "D-nucleotide"? This is the <one>Discriminator nucleotide</one>.
86
+ - Wo findet man <one>IRES</one> im strukturellen Detail aus gesehen? A: In der <one>5' NCR</one>.
87
+ - <one>Wovor schützt</one> die eukaryotische Cap primär? A: Vor <one>5'→3' Exonucleasen</one>.
88
+ - <one>TRCF</one> hat was für eine Aktivität? A: TRCF hat eine <one>ATPase Aktivität</one>.
89
+ - Was genau ist ein <one>Thymin-Dimer</one>? Eine kovalente Bindung zweier übereinanderliegender Pyrimidinbasen, eben 2x Thymine.
90
+ - Bei der <one>Methylierung von Histonen</one>: wieviele Methylgruppen können wir hier finden? <one>Bis zu 3 Methylgruppen</one>. []
91
+ - Give a general example for <one>constitutively active genes</one>. A: The <one>housekeeping genes</one>. []
92
+ - In der Genexpression, bei E. coli: wofür steht die Abkürzung beim <one>Transkriptionsfaktor FIS</one>? <one>Factor for inversion stimulation</one>.
93
+ - Welche TAFs erkennen das <cadetblue>Inr-Element</cadetblue>? (1) <one>TAF1</one> (2) <one>TAF2</one>
94
+ - Im CRISPR/Cas system: what does <one>Cas</one> stand for? <one>CRIRPS-associated proteins</one>.
95
+ - 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 []
96
+ - <one>FACT</one> ist ein Heterodimer und besteht aus ...? A: (1) <one>Spt16</one> (2) <one>SSRP1</one>
97
+ - Das <cadetblue>Inr-Element</cadetblue> trägt an der +1 Position welches Nukleotid? <one>A</one>.
98
+ - Was heisst <one>ESEs</one>? A: <one>Exon Splicing Enhancers</one> (URL:ESE)
99
+ - Was macht <one>TFIIH</one>? TFIIH <one>phosphoryliert</one> die carboxyterminale Domäne der Pol II.
100
+ - 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>.
101
+ - <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>.
102
+ - A. W. für <one>allgemeine Transkriptionsfaktoren</one>? <one>Basale Transkriptionsfaktoren</one>. []
103
+ - 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>. []
104
+ - Wann wurde die <one>Struktur einer tRNA</one> erstmals aufgeklärt? <one>1974</one>.
105
+ - Nenne ein <one>zelluläres Gen</one> dessen mRNA eine IRES besitzt. A: Das Chaperon <one>BiP-Protein</one>.
106
+ - Physische Form von <one>hnRNA</one>? A: Komplexiert mit <one>hnRNP Proteinen</one>.
107
+ - Was genau bewirkt der <one>lac-Repressor</one>? A: Er verhindert die Trennung der Promoter-DNA Stränge und somit die Initiation der Transkription.
108
+ - Welche Aufgabe hat <one>TF-II A</one>? A: TF-II A stabilisiert die Bindung von <one>TFIID</one>.
109
+ - Nenne <one>eine biochemische Methode</one>, wie wir zwischen Euchromatin und Heterochromatin unterscheiden können. A: Behandlung mittels <one>DNase I</one>.
110
+ - <one>Small silencing RNAs</one> associate with which protein family? With the "Argonaute protein family" (<one>AGO</one>).
111
+ - Which general role does <one>chromatin</one> have, in regards to gene expression? Chromatin in general <one>represses the expression of genes</one>.
112
+ - Was sind <one>uORFs</one>? <one>Upstream ORFs</one>. []
113
+ - Nenne eine Methode mit der wir Ribosome gut untersuchen können. A: Die <one>Kryoelektronenmikroskopie</one>.
114
+ - What is <one>the native PAM sequence</one> of <three>S. pyogenes Cas9</three>? <one>5'-NGG-3'</one>.
115
+ - Wie wirken <one>HMGN-Proteine</one> allgemein in Bezug auf die Genexpression? <one>HMGN-Proteine</one> fördern die Transkription von Genen im Chromatin. []
116
+ - What does a <one>ribosome frameshift</one> produce? An elongated version of the ORF1 protein.
117
+ - Das <one>Schlüsselenzym der Genexpression</one> ist ... ? RNA-Polymerase (genauer: die <one>DNA-abhängige RNA-Polymerase</one>).
118
+ - Which two substrates are used by the <one>CCA-adding enzyme</one>? (1) <one>ATP</one> (2) <one>CTP</one>
119
+ - 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
120
+ - Name the two components of every <one>riboswitch</one>. A: (1) <one>aptamer</one> (2) <one>expression platform</one>
121
+ - Nenne ein Beispiel für eine "RNA-abhängige DNA Polymerase". A: Die <one>reverse Transkriptase</one>.
122
+ - What is <one>the best known ribozyme</one>? The <one>Ribosome</one>. URL: https://en.wikipedia.org/wiki/Ribosome []
123
+ - 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>).
124
+ - 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.
125
+ - Nenne eine chemische Substanz für die Zellfusion! A: <one>Polyethylenglycol</one>.
126
+ - In <one>splicing</one>: the abbreviation <three>SD</three> may stand for ...? <one>Splice donor</one>.
127
+ - What are the <one>transcription factors</one> of tRNA genes? TFIII A, B and D.
128
+ - 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.
129
+ - Welche <one>ribosomale subunit</one> trägt <three>E, P, A</three>? Die (prokaryote) <one>30S Untereinheit</one>. []
130
+ - What are the <one>R-Proteins</one>? <one>Ribosomal proteins</one>.
131
+ - 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.
132
+ - Wo kann man <one>Hämoglobine</one> detektieren? A: Nur <one>in roten Blutkörperchen</one>.
133
+ - How can codons contribute to the duration of gene expression? mRNAs containing <one>many rare codons</one> will take longer to translate.
134
+ - Was heisst <one>TransCon</one>? <one>Translational Control</one>. []
135
+ - Was macht <one>FACT</one>? A: Trennt <one>H2A</one>/<one>H2B</one> ab.
136
+ - Die <one>U4-snRNA</one> geht eine Basenpaarung mit ... ein? Mit der <one>U6-snRNA</one>; später auch mit der U2-snRNA.
137
+ - Give another expression for <one>alternative splicing</one>. A: <one>Exon skipping</one>.
138
+ - Das Genom von <one>Mycoplasma genitalium</one> umfasst wieviele Gene? A: <one>477 Gene</one>. URL: https://de.wikipedia.org/wiki/Mykoplasmen []
139
+ - 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>.
140
+ - 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.
141
+ - Abstand zwischen den <violet>Polysomen</violet>, in <one>n Nukleotide</one>? Etwa <one>80 Nukleotide</one>. []
142
+ - Nenne die 3 Stoppcodons. A: (1) <one>UGA</one> (2) <one>UAA</one> (3) <one>UAG</one> []
143
+ - A. W. für <one>initial transcription</one>? <one>Abortive Synthesis</one>.
144
+ - 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 GU-rich tract
145
+ - 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.
146
+ - Give another word for the <one>splicing machinery</one>. A: The <one>spliceosome</one>. []
147
+ - Welchen Unterschied gibt es zwischen <one>pyrophosphorolytic editing PE</one> und "hydrolytic editing HE"? A: (1) Beim PE wird das letzte Nukleotid der wachsenden RNA Kette durch ein "Polyphosphat" ersetzt. (2) Beim HE geht die Polymerase zurück und entfernt das fehlerhafte Stück.
148
+ - What is the meaning of <one>H3K4me3</one>? Lysin 4 of histone H3 is trimethylated.
149
+ - Warum braucht die <one>Aminoacyl-tRNA Synthetase</one> ein editing center? Um zwischen Isoleucin und Valin zu unterscheiden.
150
+ - Nenne zwei wichtige sekundäre Botenstoff beim Menschen. A: (1) <one>Ca2⁺</one> und (2) <one>cAMP</one>
151
+ - Die <one>Tryptophansynthese in E. coli</one> benötigt wieviele Gene? <one>5</one>. []
152
+ - Name a protein that can bind the cap structure. A: <one>eIF4C</one> (Mnemonic: C ... Cap).
153
+ - In <one>Saccharomyces. cerevisiae</one>: wieviel % der Gene produzieren RNA als Endprodukt? Mehr als 10% (also mehr als <two>750 Gene</two>).
154
+ - What is <one>the terminal nucleotide</one> of the tRNA 5-prime end? <one>G</one>.
155
+ - Was liegt in der <one>active site</one> der <three>RNA Polymerase</three>? <one>Mg2⁺</one>. []
156
+ - Welchen <one>Vorteil</one> hat die RNA Polymerase gegenüber der DNA-Polymerase? Die <one>RNA Polymerase</one> benötigt keinen Primer.
157
+ - Verändert die Polymerase ihre Form während der Transkriptions-Elongation? Ja - sie wird <one>kompakter</one>.
158
+ - 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.
159
+ - In der <one>tRNA</one>: nenne 2 Komponenten die man am "T-Arm" findet. A: Thymidin und <one>Pseudouridin</one>.
160
+ - In humans: how many of their genes undergo alternative splicing? More than 90%.
161
+ - Wo finden wir die <one>BRE-box</on>? <one>Stromaufwärts</one> der TATA Box.
162
+ - When does the <one>packaging of chromatin</one> change? It changes during the eukaryotic cell cycle.
163
+ - Is <one>Xeroderma pigmentosum</one> dominant or recessive? It is <one>a recessive disease</one>.
164
+ - Why is the <one>RNA polymerase II CTD</one> important in eukaryotes? Because the CTD <one> coordinates transcription and RNA processing</one>.
165
+ - <one>Histones</one> typically have what charge? <two>Histones</two> have a net <one>positive</one> charge. []
166
+ - 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.
167
+ - Wann wurde <one>Tyrosine phosphorylation</one> entdeckt? <one>1979</one>.
168
+ - What is the general action of the enzyme "RNase H"? RNase H cleaves RNA in a "DNA-RNA Hybrid Duplex".
169
+ - Which two domains does the <one>RNase P</one> have? The <one>S-domain</one> ("specificity domain") and the C-domain ("catalytic domain").
170
+ - Fehlerrate bei den tRNA-Synthetasen im Zuge der Aminosäurebeladung, in %? Etwa <one>0.1%</one>.
171
+ - Antisense RNA ist komplementär ...? Zu <one>mRNA</one>.
172
+ - 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>.
173
+ - Name two difficulties that are encountered by Pol II during transcriptional elongation. A: (1) <one>Transcriptional pausing</one> (2) <one>Transcriptional arrest</one>
174
+ - In <two>eukaryotes</two>: which transcription factor remains bound to the polymerase during <one>transcriptional elongation</one>? <one>TFIIF</one>.
175
+ - Was produziert das <one>lin4 Gen</one>? A: Zwei RNA-Produkte: miRNA.
176
+ - Who enters the <one>RISC complex</one>? <one>miRNA</one>.
177
+ - How do we call the rotational movement of the ribosomal subunits relative to each other? <one>Ratchet</one>.
178
+ - Nenne ein Enzym in allen <one>RNA-Viren</one>. A: Die <one>RNA-abhängige RNA-Polymerase</one>.
179
+ - Das <one>core enzyme</one> der E. coli RNA Polymerase besteht aus welchen Untereinheiten? Beta, Beta-Strich, 2x Alpha.
180
+ - Which <one>elongation factor</one> causes the small ribosomal subunit to translocate? <one>EF-G</one>, bound with <two>GTP</two>.
181
+ - Who precisely can decode <one>Lysine Methylation</one>? The <one>Chromodomain</one>.
182
+ - Finden wir <one>Kinasen</one> im Zellkern einer eukaryoten Zelle? Ja, dies ist möglich. []
183
+ - In <one>gene expression</one>: where can we find an "anchor region"? In <one>gRNAs</one> ("guide RNAs").
184
+ - Welche Polymerasen sind an <one>Ereignissen im Nucleolus</one> beteiligt? A: Alle 3.
185
+ - The <one>tRNAse Z enzymes</one> are what kind/type of enzymes? They are <one>endonucleases</one>.
186
+ - Was bedeutet <one>positive control of transcription</one>? Give an example as well. A: Transcription requires the binding of an activator protein to the DNA. The Maltose-catabolism in E. coli is an example.
187
+ - Was produziert die RNAse <one>Dicer</one>? A: "dsRNA", zwischen 21-25 Nukleotide lang, mit je 2 Nukleotiden Überhang.
188
+ - 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.
189
+ - 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>.
190
+ - <one>CTCF</one> kann an welche Sequenz binden? A: An <one>ICR</one>.
191
+ - Wie geht die "Consensus Sequenz" der -35 Region? A: <one>TTGACAT</one>.
192
+ - What is a <one>transcriptase</one>? A <two>transcriptase</two> is a general term for <one>an enzyme that carries out transcription</one>.
193
+ - Was ist mit dem Begriff <one>RNA-Editing</one> gemeint? RNA-Editing ist eine posttranskriptionale Modifikation von RNA deren Sequenz verändert wird.
194
+ - 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.
195
+ - 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.
196
+ - <one>Transcribing RNA polymerases</one> swap between which three states? (1) pre-translocated (2) reverse-translocated (3) post-translocated
197
+ - In <one>Prokaryotes</one>: <two>which enzyme</two> synthesizes new DNA molecules? <one>DNA Polymerase III</one>.
198
+ - Wann kommt es zur Bildung eines <one>closed complex</one> bei der Transkription? In der ersten Phase der Initiation.
199
+ - 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"
200
+ - How do the <one>rut-sites</one> look like? A: They contain about 40-60 nucleotides, and are rich in <one>C</one>.
201
+ - Name <one>a protein group</one> that often contains a "histon deacetylase". A: <one>Corepressors</one>.
202
+ - Wie hiess die <one>tmRNA</one> früher? <one>10S RNA</one>.
203
+ - In Eukarya: <one>Ser5</one> of the RNA-Polymerase is phosphorylated by ...? <one>TFIIH</one>.
204
+ - The protein <one>maskin</one> can bind which initiation factor? <one>eIF-4E</one>.
205
+ - Wo ist das <one>decoding center</one>? A: Auf der <one>30S Untereinheit</one>, in der Nähe der A-Site.
206
+ - Was heisst <one>b-ZIP</one> und welches Charakteristikum hat dieses Motiv? A: Basic Zipper (entsteht aufgrund mehrere Leucin-Reste).
207
+ - Why is the <one>glmS ribozyme</one> more than <three>just a ribozyme</three>? Because it is also <one>a riboswitch</one>.
208
+ - Major advantage of <one>translational control</one>? <one>Speed</one>. URL: https://en.wikipedia.org/wiki/Translational_regulation []
209
+ - Which 3 enzymes are required for the <one>mRNA capping event</one>? (1) <one>RNA triphosphatase</one> (2) guanylyltransferase (3) guanine-N7-methyltransferase
210
+ - Die <one>RNA-Pol II</one> besitzt <two>n AA</two>? <one>4500</one>.
211
+ - Wie ist ein <one>Transkriptionsfaktor</one> definiert? Dies ist ein Protein, das an definierte DNA-Sequenzen binden kann.
212
+ - Nenne zwei <one>transkriptionale Aktivatoren</one>. A: (1) <one>NtrC</one> und (2) <one>MerR</one>
213
+ - Das Protein <one>FACT</one> bei der Genexpression kann was genau? Es kann die H2A/H2B Dimere des Nukleosoms abtrennen.
214
+ - Precursor von mRNA (auch der ausgeschriebene Name)? "Heterogeneous nuclear RNA" (<two>hnRNA</two>).
215
+ - Nenne ein Beispiel für einen Organismus der <one>Antitermination</one> verwendet. A: Der Phage <one>Lambda</one>.
216
+ - Wo genau findet man die <one>Shine-Dalgarno-Sequenz</one>? Auf der mRNA (von Prokaryoten), etwa 8 Basenpaare Upstream des (AUG) Startcodons.
217
+ - How can scientists <one>follow the progress of protein synthesis</one>? By <one>radioactive labelling of the amino acids</one>.
218
+ - Gib ein Beispiel in der Genexpression für <one>Substratrepression</one>. A: Das <one>trp-Operon</one> in E. coli.
219
+ - Wie nennen wir in Eukaryoten den Bereich, in den ein (wichtiges) <one>AUG</one> eingebettet sein muss? <one>Kozak-Sequenz</one>.
220
+ - Warum geben wir <one>NaOH</one> zur DNA? Um die <one>Wasserstoffbrücken zwischen der dsDNA-Doppelhelix zu zerstören</one>. []
221
+ - Does the <one>RNA-Polymerase</one> only release pyrophosphate? No, it also releases one <one>Mg2⁺⁺</one>.
222
+ - Wie lange dauert die <one>S-Phase in Säugetierzellen</one>? Etwa <one>8 Stunden</one>. []
223
+ - Was heisst <one>ADAR</one>? A: (<one>RNA editing</one>) by Adenosine Deaminases that acts on RNA (ADARs)
224
+ - 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
225
+ - TFIIS hilft der Polymerase vor allem wobei? Beim <one>Proofreading</one>.
226
+ - Was sind die normalen zellulären Aktivitäten der <one>microRNA</one>? Sie unterdrücken genetische Aktivitäten in der Zelle.
227
+ - What are <one>isoaccepting tRNAs</one>? These are tRNAs that accept the same aminoacid, but have different anticodons.
228
+ - What do we mean with the term <one>monosome</one>? A monosome is <one>a single ribosome</one> - its two subunits are joined.
229
+ - Das <one>bakterielle Holoenzym</one> besteht aus? Dem core Enzym sowie dem assoziierten Sigma-Faktor.
230
+ - Was für eine Aufgabe hat <one>TFIIA</one>? Stabilisiert die TFIID-Bindung.
231
+ - Welcher <one>eukaryotische Elongationsfaktor</one> hat als strukturelle Besonderheit Diphthamid? <one>eEF-2</one>. []
232
+ - Name a <one>cytoplasmic tyrosine kinase</one>. A: Src.
233
+ - <one>IPTG</one> hat wieviele Methylgruppen? <one>2</one>. []
234
+ - 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.
235
+ - The <one>sigma factor</one> helps separate what exactly? <one>dsDNA</one>, at the <two>-10 Region</two>.
236
+ - 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>.
237
+ - Name a Polymerase associated with <one>transcriptional silencing</one>. A: The <one>Pol V</one>.
238
+ - What is the job of the <one>ribosome modulation factor</one>? It binds to ribosomes and inactivates them.
239
+ - Give one good example for an <one>archael repressor</one>. A: The <one>NrpR Protein</one>.
240
+ - Was braucht <one>Promoter Melting</one> in <three>Eukaryoten</three> genau? A: ATP (für TFII H).
241
+ - In der Gentechnik: was heisst "SELEX"? A: <one>Systematic Evolution of Ligands by EXponential Enrichment</one>.
242
+ - Was machen <one>Deiminasen</one>? A: Entfernen Arginin-Methylierung.
243
+ - What are <one>ribosomopathies</one>? <three>Ribosomopathies</three> are <one>human disorders of ribosome dysfunction</one>.
244
+ - Wie kann man die beiden Untereinheiten des Ribosomes trennen? Mit Hilfe eines <one>Sucrose-Gradienten</one>.
245
+ - <one>Rel-Homologe</one> sind Transkriptionsfaktoren die in ihrer DNA-Bindungsdomäne welch anderen Proteinen ähneln? Der NF-Kappa B Familie.
246
+ - Was ist das Besondere an der <one>SD-Sequenz</one>? Sie enthält nur <one>Purine</one>.
247
+ - Wie nennt man die Basis der beiden Polymerase Pincers? A: <one>Beta-flap</one>.
248
+ - Eine Zelle besitzt in etwa wieviele <one>La-Proteine</one>? A: <one>10 Millionen</one>.
249
+ - Bei welchen Genen findet man die <one>E-Box</one>? A: Vor allem vor "Proliferationsgenen".
250
+ - Das <one>Bantam-Gen</one> in Drosophila kodiert für ...? A: Eine 21 Nukleotide lange miRNA.
251
+ - 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.
252
+ - 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)
253
+ - 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>.
254
+ - 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>.
255
+ - Die <one>Pol II</one> n Heptapeptidrepeats bei Hefe / Drosophila / Säugetier? <one>26</one>/44/52.
256
+ - 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>.
257
+ - 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>
258
+ - Nucleotides may be removed one at a time from the 5' and 3' of a tRNA, in a process known as ... ? <one>Trimming</one>.
259
+ - Do <one>eukaryotes</one> typically have many copies of each tRNA gene? Yes.
260
+ - Which <violet>kinase</violet> controls <two>ribosome abundance</two>? The <one>mTORC1 kinase</one>.
261
+ - <one>Puromycin</one> mimics ... ? <one>Tyrosyl tRNA</one>.
262
+ - The forkhead box transcription factors were found in which organism? In <one>Drosophila</one>.
263
+ - Der <one>Fructosetransporter</one> ist ... ? <one>GLUT5</one>.
264
+ - The inducible form of nitric oxide synthase (NOS2) catalyzes the synthesis of nitric oxide (NO) from arginine in response to ... ? Injury and infection.
265
+ - Sp1 is linked to the maintenance of ... ? <one>methylation-free CpG islands</one>.
266
+ - Do <one>pH changes</one> modulate the activity of <two>Sp1</two>? Yes.
267
+ - Why is <one>rifampicin</one> so useful in "molecular biology research"? Because rifampicin will inhibit transcription - unless an "open promoter complex" has already formed.
268
+ - What is the "opposite" of the term <one>inducer</one>? A <one>corepressor</one>. URL: https://en.wikipedia.org/wiki/Corepressor
269
+ - Sind <one>Leucin-Zipper</one> Beispiele amphipathicher Helices? Ja.
270
+ - Der <violet>EJC</violet> (<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
271
+ - Nenne eine andere Bezeichnung für <one>SF1</one>. A: <one>BBP</one> - branch binding protein.
272
+ - <one>U4</one> arbeitet als Komplex mit ... ? A: <one>U6</one>.
273
+ - Nenne 1 Protein das an <one>Sigmafaktor 32</one> bindet. A: DNA j.
274
+ - Name a huge advantage of <one>group I introns</one>. A: They do not require the help of protein factors.
275
+ - Wo liegt die Signalsequenz die die Steuerung ins Peroxisom bedingt? A: An <one>C-Terminaler Seite</one>.
276
+ - <one>How long</one> does it take a cell to transcribe the "dystrophin gene"? About <one>6 hours</one>.
277
+ - Die <one>MAPK-Kaskade</one> reguliert Gene, deren Produkte die ... ? <one>Zellproliferation stimulieren</one>. URL: https://en.wikipedia.org/wiki/MAPK/ERK_pathway
278
+ - Wie häufig ist eine TATA-Box bei Haushaltsgenen? Eher selten.
279
+ - Andere Bezeichnung für die <one>heat shock response</one>? <one>Unfolded protein response</one>.
280
+ - Wie nennen wir Gene die strändig transkribiert werden? <one>Konstitutiv exprimierte Gene</one>.
281
+ - 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>.
282
+ - 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.
283
+ - What is the <one>SWI-SNF complex</one> capable of doing? Repositions nucleosomes (in a test-tube assay) if ATP is present.
284
+ - Was heisst <one>Raptor</one>? A: <one>Regulator associated protein of mTor</one>.
285
+ - What does a <one>bromodomain</one> bind? Acetyllysin (<one>acetylated lysines</one>).
286
+ - Womit interagiert der <one>Mediator</one>? A: Mit dem CTD Tail der Polymerase.
287
+ - Inside of a cell, <one>codon bias</one> is correlated with ... ? <one>tRNA availability</one>.
288
+ - A. W. für "knock in transfer"? <one>Exchange of function</one>.
289
+ - Nenne ein Beispiel für einen <one>mammalian splicing repressor</one>. A: <one>hnRNPI Protein</one>.
290
+ - Nenne einen Grund wieso es so schwierig war Ribosomen zu kristallisieren. A: Weil sie so <one>heterogen</one> waren.
291
+ - Is the micronucleus of ciliates "transcriptionally active"? No - it is <one>transcriptionally inactive</one>.
292
+ - Was sind <one>Aptamere</one>? DNA oder RNA-Oligonucleotide (15-16 Nukleotide) die an Proteine binden kann.
293
+ - Das Poly(A)-Signal ist entweder <violet>AAUAAA</violet> oder <violet>AUUAAA</violet>. Welches davon ist seltener anzutreffen? <one>AUUAAA</one>.
294
+ - Welche Scherkräfte wenden wir meistens bei der ChIP-Technik in der Genexpression an? <one>Ultraschall</one>.
295
+ - Welchen Effekt hat Rapamycin auf mTOR, und davon ausgehend, auf die Zelle? Rapamycin inaktiviert mTOR - und <one>reduziert dadurch die Proteinbiosynthese</one>.
296
+ - A. W. für "Aconitase"? <one>Iron response regulatory protein</one>.
297
+ - Which part of the RNA polymerase II contains the CTD? The <one>beta subunit</one>.
298
+ - In Eukaryoten: wie kann die <cadetblue>Adenylatzyklase</cadetblue> aktiviert werden? Durch <one>Glukaogen</one>, das an die Adenylatzyklase binden kann.
299
+ - <cadetblue>cAMP</cadetblue> in Eukaryoten aktiviert welches cytoplasmatisches Protein? Die <one>Proteinkinase A</one>. URL: https://en.wikipedia.org/wiki/Protein_kinase_A
300
+ - Welcher Initiationsfaktor fällt zuerst ab? A: <one>IF3</one>.
301
+ - Ein "Leucin-Zipper" hat wieviele Alpha-Helices? Zwei.
302
+ - Does the Polymerase I have a <cadetblue>CTD</cadetblue>? No.
303
+ - 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.
304
+ - Name three different RNA products of Polymerase II. A: (1) <one>hnRNA</one> (2) <one>mRNA</one> (3) <one>snRNA</one>
305
+ - Nenne eine kurze Erkennungssequenz die wir in/an Exons finden können - zumindest bei prä-mRNAs. A: ESEs: <one>Exon-Spleiß-Enhancers</one>.
306
+ - Nenne zwei <cadetblue>Poly(A)-Signale</cadetblue>. A: (1) <one>AAUAAA</one> (2) <one>AUUAAA</one>
307
+ - Give one example for a "regulatory nucleotide". A: cyclic AMP (<violet>cAMP</violet>).
308
+ - <violet>WNT</violet> baut was ab? A: Beta-Catenin.
309
+ - What is meant with <one>aa-tRNA</one>? This refers to an <cadetblue>aminoacyl tRNA</cadetblue>.
310
+ - 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
311
+ - Dyskerin is responsible for the conversion of ... to ... ? uridine -> pseudouridine
312
+ - Nenne ein Enzym das "Inosine" produzieren kann. A: <one>ADAR</one> ("Adenosine Deaminase acting on RNA")
313
+ - Was meinen wir mit Hotspot Mutationen in PI3K? Dies sind Mutationen die die Kinase Aktivität erhöhen.
314
+ - Die <violet>PI3K</violet> (Phosphoinositide-3-Kinase) hat welche Untereinheiten? 2. p85: die regulatorische Untereinheit, die an den Rezeptor bindet; sowie p110: die katalytische Untereinheit.
315
+ - pTEFB ist was für ein Enzymtyp? A: Ist eine <one>Kinase</one>.
316
+ - Was meinen wir mit einer "bicistronischen mRNA"? Dies ist eine mRNA mit zumindest zwei offenen Leserahmen (<one>2 ORFs</one>).
317
+ - Der eukaroytische eIF4E wird durch welchen Komplex inaktiv gehalten? A: Durch <violet>4E-BP</violet>.
318
+ - Das <violet>src-Protein</violet> 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
319
+ - Wann wurden <violet>Ribozymes</violet> entdeckt? 1982.
320
+ - Masse einer tRNA, in kd? <violet>25 kd</violet>.
321
+ - Wo findet man "Riboswitches"? In der "5-prime UTR" Region von Genen.
322
+ - Das Paradebeispiel eines "Ribozyme", ausgenommen dem Ribozyme-Anteil im Ribosom, ist ...? <one>RNase P</one>.
323
+ - 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>.
324
+ - 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>.
325
+ - Name one way how to inhibit sigmafactors. A: With <one>anti-sigma factors</one>.
326
+ - Bei <violet>bZIP Proteinen</violet>, wo liegt die DNA Bindedomäne? A: Die liegt genau vor dem Leucin-Zipper Motiv.
327
+ - Who or what acts as "<u>signal for degradation</u>" in a cell? <one>Ubiquitin</one>. URL: https://en.wikipedia.org/wiki/Ubiquitin
328
+ - The eukaryotic cap is protected from decapping enzymes by which protein? By the cap-binding protein <cadetblue>eIF4E</cadetblue>.
329
+ - Wie gross (in kDa) muss ein Protein sein, um die Zellkern-Poren noch passieren zu können? <one>40 kDa</one>.
330
+ - Warum ist das Wort "Homöostase" ein eher falscher Begriff, aus Sicht der Genexpression? Da eigentlich ein <violet>dynamisches Equilibrium</violet> gemeint ist; also laufend weiterhin Veränderungen und somit auch aktive Genexpression. URL: https://de.wikipedia.org/wiki/Hom%C3%B6ostase
331
+ - Nenne ein "Restriktionsenzym" das nur methylierte DNA schneidet. A: <violet>Dpn I</violet>.
332
+ - Wo finden wir die Destabilisierungselemente in einer mRNA? In der <one>5'-UTR</one>.
333
+ - Which "eukaryotic polymerase" uses a transcription factor called "UBF"? The <one>RNA polymerase I</one>.
334
+ - Wo findet man die "Anti-Shine-Dalgarno" Sequenz? A: Auf der <one>16S rRNA</one>.
335
+ - Wo finden wir einen upstream ORF? <one>Innerhalb</one> der 5-prime UTR einer mRNA.
336
+ - Im Jahr 2009 wurden "self-replicated ribozymes" erstellt. Wie lang waren diese RNAs? Jedes war etwa <one>70 Nucleotide</one> lang.
337
+ - Der Glucocorticoid-Rezeptor erkennt welche Sequenz? A: <one>AGA ACA</one>.
338
+ - Why is control of enzyme activity important in gene expression? Because it <one>allows for a fast response</one>.
339
+ - Can the removal of intervening sequences in eukaryotes occur before or after polyadenylation has occurred? Yes.
340
+ - The addition of up to 200 adenosine residues onto a nascent RNA is also called ... ? Polyadenylation.
341
+ - uAUGs finden wir allgemein wo genau? In der 5'UTR region.
342
+ - 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.
343
+ - Was heisst TAFs? TBF-assoziierte Faktoren. URL: https://en.wikipedia.org/wiki/TBP-associated_factor
344
+ - Substrat für die "Luciferase"? <one>Luciferin</one>.
345
+ - <violet>UBF</violet> 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).
346
+ - Proteinkinase A phosphoryliert welchen Transkriptionsfaktor im Zellkern? <one>CREB</one>.
347
+ - <royalblue>CREB</royalblue> ist was für ein Typ eines Transkriptionsfaktors? <royalblue>CREB</royalblue> ist ein <one>bZip-Protein</one>.
348
+ - Was heisst das "H" in <one>rpoH</one>? Heat shock response.
349
+ - In Eukaryoten: welche Proteine erkennen <one>premature termination codons</one>? UPF-Proteine (up frameshift). URL: https://en.wikipedia.org/wiki/UPF1
350
+ - Name a subunit/component of mTORC2 (mammalian target of rapamycin complex 2). A: RICTOR. URL: https://en.wikipedia.org/wiki/RICTOR
351
+ - We know mTOR, but what is meant with mTORC, the "C" here? This stands for "complex". URL: https://en.wikipedia.org/wiki/MTOR#Complexes
352
+ - 4E-BP bindet an (und inaktiviert dadurch) welches Protein? <one>eIF4E</one>. URL: https://en.wikipedia.org/wiki/EIF4E
353
+ - 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.
354
+ - Do <one>transcribed snRNAs</one> contains a Poly-A tail? No.
355
+ - Sirtuins are De-Acetylases. They depend on which cofactor? <one>NAD+</one>.
356
+ - mTOR ist was für ein Protein (Typ)? mTOR ist eine <one>Proteinkinase</one>.
357
+ - mTOR ist eine Proteinkinase. Welche Aminosäure oder welche Aminosäuren sind das Ziele von mTOR? (1) Serin (2) Threonin
358
+ - mTOR kann 4E-BP phosphorylieren. Hierzu benötigt es welches Protein? <one>Raptor</one>. URL: https://en.wikipedia.org/wiki/RPTOR#Function
359
+ - Bei mTOR: wofür steht das <one>m</one>? Für <orange>mammalian</orange>.
360
+ - Allgemein: wenn ein Promotor methyliert wird, so führt dies zu welchem Effekt? Dies führt zum <orange>Abschalten des Gens</orange>.
361
+ - Bei <slateblue>PolI Promotoren</slateblue>, wie liegt TBP vor? A: Im Verbund mit SL1.
362
+ - Do Eukaryotes have a "SRP" ("<u>signal recognition particle</u>")? Yes.
363
+ - Gib ein Beispiel für ein Protein mit Bromodomäne! A: Der "Swi-SNF Komplex".
364
+ - Werden "eukaryote Chromosomen" wie "prokaryote Chromosomen" repliziert? Nein. Verschiedene Abschnitte im Chromosom werden zu unterschiedlichen Zeiten in der S-Phase repliziert.
365
+ - During cold shock and heat shock response, which proteins are synthesized significantly more often? "Chaperones" that "help refold unfolded proteins".
366
+ - How was the "non-colinearity of eukaryotic genes" discovered? DNA was hybridized with the mRNA transcribed from it.
367
+ - Im "lac-Operon", damit CAP eine positive Wirkung erzielen kann, muss es welches Molekül gebunden haben? cAMP. URL: https://en.wikipedia.org/wiki/Catabolite_activator_protein
368
+ - Is CREB (the "cAMP response element binding protein") phosphorylated? Yes; this can be determined via an antibody, against the "phosphorylation status of serine 133".
369
+ - Wieviele Basenpaare umfasst der "open complex"? "14".
370
+ - 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.
371
+ - Was macht der "allosteric effector" allgemein? It "binds to the allosteric site" of the regulatory protein in such a way as to change its activity.
372
+ - Which "protease" activates the anti-sigma factor RseA? DegS.
373
+ - Nenne ein Kennzeichen der "Initiator-Elemente". A: Sie sind sehr "pyrimidinreich".
374
+ - "Dimerisierte Rezeptor-Tyrosinkinasen" stellen eine Bindungsstelle für welches Protein dar? Das "Adapterprotein Grb2". URL: https://en.wikipedia.org/wiki/GRB2
375
+ - Name two different "chromatin-remodeling complex families". A: (1) the "SWI/SNF family" (2) the "ISWI family"
376
+ - Rtt103 bindet woran genau? A: An phosphoryliertes Serin 2 der "YSPTSPS-Sequenz".
377
+ - 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
378
+ - What do we mean with an "internal promoter"? This is a promoter "located within the transcribed region".
379
+ - Who is the "most well studied eukaryotic activator"? "Gal4".
380
+ - Wo (zellulär betrachtet) finden wir "Drosha" und in welcher Organismengruppe? A: Nur im Nucleus, und nur bei Tieren (nicht bei Pflanzen)
381
+ - Can "protein levels" be reliably predicted from mRNA abundance? No.
382
+ - In der Genexpression, wofür steht die ABkürzung "RTF"? "Regulatorische Transkriptionsfaktoren".
383
+ - Du musst terminal phosphate von 1 Polynucleotide chain entfernen. Was tun? Das Enzym "Phosphatase" verwenden.
384
+ - Gib ein Beispiel für ein "Zinkfingerprotein". A: Der Transkriptionsfaktor SP1.
385
+ - Woher nehmen die "Histon-Acetlytransferasen" die Acetylgruppen? Von "Acetyl-Coenzym A".
386
+ - Was heisst "RACE"? "Rapid Amplification of cDNA Ends".
387
+ - Anderes Wort für eine Reversion an einem anderen Ort? A: "Double Mutant Reversion".
388
+ - "Aktivierungsdomänen" besitzen allgemein oft was für Aminosäuren? Überdurchschnittlich viele "saure Aminosäure".
389
+ - Welche Terminationsarten der Transkription sind in Ecoli bekannt, und welche tritt häufiger auf? A: "Rho-abhängig" und "rho-unabhängig".
390
+ - Welche Sequenzfolge hat die "Kozak sequence"? 5-prime ACCAUGG 3-prime
391
+ - 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".
392
+ - Minimum number of genes required to make a living cell? "470 genes" (but this is a parasite).
393
+ - Which U-snurp creates the intron RNA loop? "U5".
394
+ - Welche Proteine regulieren die Stabilität von mRNAs? Die "ARE-Bindungsproteine".
395
+ - Beim "mRNA Export" - welcher Teil der mRNA verlässt den Zellkern zuerst? Die 5'cap Struktur gelangt als erstes ins Cytoplasma.
396
+ - "Alternative Polyadenylierung" wird oft kombiniert mit ... welch anderem zellulären Prozess? "Alternativem Splicing".
397
+ - Die "alternative Polyadenylierung" 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.
398
+ - 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
399
+ - Anderer Name für eine "Protein-bindende Domäne"? "Transaktivierungsdomäne".
400
+ - Welche "intrazellulären Rezeptoren" verwenden "Zinkfinger-Motife"? Die Rezeptoren für Steroide, zum Beispiel.
401
+ - Rezeptoren lassen sich charakterisieren nach welchen drei Kriterien? (1) ihrer "Lokalisation": Zytoplasma/Zellkern, Zellmembran (2) ihrer "molekularen Struktur" (3) dem "beteiligten Signalübertragungsweg"
402
+ - How long are "eukaryotic replicons", from-to? About 40 kb to 100 kb in length.
403
+ - UBF Proteine ähneln welchen anderen Proteinen? "HMG1 Chromatin Proteinen".
404
+ - Why are Enhanceosomes necessary? So "to overcome the inertia of chromatin".
405
+ - Name two functions of RISC. A: (1) "represses translation" (2) "promotes mRNA degradation"
406
+ - 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/
407
+ - Who recognizes the TATA element in eukaryotes? "TFIID".
408
+ - Nenne einen "Ribozyme-Typ". A: Das "Hammerhead-Ribozyme".
409
+ - Welcher Teil der bakteriellen Polymerase bindet DNA? Die "Beta' Untereinheit".
410
+ - Name a protein that can bind to AREs and thus destabilize mRNA. A: TTP: "Tristetraprolin". URL: https://en.wikipedia.org/wiki/ZFP36 Tristetraprolin
411
+ - Wann erschien das Wort "Ribozyme" zum ersten Mal? Im Jahre "1982".
412
+ - 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
413
+ - What is the "general impact of chromatin" in regards to gene expression? Chromatin itself "represses gene expression".
414
+ - What are "ncRNAs"? non-coding RNAs.
415
+ - Welche Zielaminosäuren haben SH2- und SH3-Domänen? (1) SH2: "Prolin" (2) SH3: "Phosphotyrosin"
416
+ - Name one way (a technique) how to store "protein-protein interaction" on a combinatorial scale. A: "Phage display".
417
+ - Was heisst "siRNA"? "Small interfering RNA".
418
+ - If we see an "Up element", what may we conclude? That this is a "very strong promoters".
419
+ - Bei der Genexpression, der Regulation, worauf bezieht sich positive und negative Regulation? Auf die Transkription: negativ schaltet sie ab, Positiv schaltet sie ein.
420
+ - Is the "TATA box" special, from its sequence alone? Yes - "TATAAT" is an A/T-rich sequence, so melting this apart is quite simple.
421
+ - Which polymerase transcribes the "U1 snRNA"? "RNA Polymerase II".
422
+ - 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
423
+ - Which polymerase transcribes the "snoRNAs"? The "RNA Polymerase II". URL: https://en.wikipedia.org/wiki/Small_nucleolar_RNA
424
+ - All "transcription factors" have which domain, in general? A "DNA-binding domain".
425
+ - 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".
426
+ - "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".
427
+ - "Karyopherins" are nuclear transport receptors that bind to ... ? "Nups".
428
+ - Gib ein Beispiel für einen Anti-Sigma Faktor mit Organismus der ihn kodiert hat! A: Faktor "AsiA" aus dem <two>Bakteriophagen T4</two>.
429
+ - Was heisst "SIR"? A: "Silent Information Regulator". URL: https://en.wikipedia.org/wiki/SIR_proteins
430
+ - Wo in der Zelle finden wir "snoRNPs"? Im "Nucleolus".
431
+ - Wofür steht die Abkürzung "JAK"? A: "Just Another Kinase".
432
+ - What is the most important enzyme for an Okazaki fragment? The "DNA ligase".
433
+ - Worum geht es bei LRP und GATC Sequenzen? A: Um "Pap Pilus Synthesis".
434
+ - Nenne einen "key-step" in transcription initiation von RNA Pol II? A: "Phosphorylierung von CTD".
435
+ - The U6 snRNA is transcribed by which enzyme? By the "RNA Polymerase III".
436
+ - Was heisst "MRP", als Teil der Genexpression/Zellbiologie? A: "Mitochondrial RNA Processing".
437
+ - What could happen if there is a point mutation in the "SD sequence"? This "could prevent a mRNA from being translated".
438
+ - Nur wann/wie können STATs in den Zellkern wandern? Nur wenn sie im dimeren Zustand vorliegen.
439
+ - Antisense RNA hat was für einen Einfluss auf die Genexpression? Antisense-RNA "inhibiert allgemein die Genexpression".
440
+ - Wie gross (in kDa) ist Transferrin und wieviel Eisen kann es binden? A: "80 kDa", und kann "2 Eisen / Transferrin" binden.
441
+ - The <one>tmRNA</one> carries which amino acid? "Alanine" (Mnemonic: tmRNA... ends with A; thus "Alanine").
442
+ - Riboswitches in a cell function as ...? "Sensors", by binding to metabolites with high affinitay and specificity.
443
+ - Wo wird ein "Stop Codon" erkannt? In der "A site eines Ribosoms".
444
+ - Nenne eine ungewöhnliche Base im Anticodon-Loop von tRNA! A: "Methylinosin".
445
+ - What is the "effector molecule" for the "glmS ribozyme"? "Glucosamine-6-phosphat".
446
+ - Wann wurde die "Shine-Dalgarno-Sequenz" entdeckt? "1975".
447
+ - The "Wnt proteins" are rich in which amino acid? "Cysteines".
448
+ - Where in Eukarya can we find "diphthamide"? In the elongation factor "eEF2".
449
+ - Die tmRNA ist mit welchem Protein assoziiert? "SmpB".
450
+ - Wo liegen die Ecoli Lac O2 und Lac O3 Repressorstellen? A: (1) O2 bei +410 (2) O3 bei -83
451
+ - Can a tRNA recognize more than one codon? Often it can, so yes.
452
+ - Which enzyme processes the 5' end of (pre)tRNAs? The "RNase P", an Endonuclease. URL: https://en.wikipedia.org/wiki/RNase_P
453
+ - Can the Lysines of Histones be "ubiquitinylated"? Yes.
454
+ - In der Genexpression, was heisst "ppGpp" und "pppGpp"? (1) ppGpp: "guanosine tetraphosphate" (2) pppGpp: "guanosine pentaphosphate"
455
+ - What cool tunnel can we find in the RNA-Polymerase? The "Ribonucleotide triphosphate tunnel".
456
+ - Wo in der Zelle finden wir "MRP-RNPs"? (1) Nucleolus (2) Mitochondrien
457
+ - Are tRNAs ever methylated? Yes, some are - on their 2'OH to produce "2'-OH-methyl tRNA".
458
+ - 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".
459
+ - "Acetyl groups" are added to "histone proteins", by ... ? "Histone Acetyltransferase enzymes". URL: https://en.wikipedia.org/wiki/Histone_acetyltransferase
460
+ - 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
461
+ - Name a disadvantage of the "DNA Microinjection" technique. A: There will be "random Integration" of the foreign DNA.
462
+ - Durchmesser Ribosom? "25 Nanometer".
463
+ - The PABP (Poly(A)-binding protein) covers how many nucleotides? Around "50 nucleotides".
464
+ - Steroid-Hormone binden im Zellkern an ...? HRE ("Hormone-Responsive-Elements").
465
+ - We add acetyl-groups to N-terminal area of a protein. What is the effect, in regards to such proteins? These proteins are "more resistant to degradation".
466
+ - Histones containing the "H3K4me3 modification" are frequently found near ... ? Near "promoters of transcriptionally active genes".
467
+ - Give another term for "histone modifications. A: The "histone code".
468
+ - 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
469
+ - What is the task of the "snoRNAs"? snoRNAs "modify ribosomal RNAs".
470
+ - Nenne einen Faktor der die Elongation stimuliert. A: "TFIIS".
471
+ - "SP1" binds to which sequence? "GGCGCC".
472
+ - Wie geht das "Polyadenylierungssignal" (zwei Möglichkeiten)? (1) "AAUAAA" (2) "AUUAAA"
473
+ - Welche Kontrolle gibt es beim "ara-operon"? A: Positive Kontrolle, durch "CRP".
474
+ - How do we call the ligand-binding part of a riboswitch? "Aptamer".
475
+ - Nenne eine RNA die wir im eukaryoten SRP ("Signal Recognition Particle") finden können. A: Die "7SL-RNA".
476
+ - Was meinen wir mit einem "reprimierbaren Promotor"? Dies ist ein Promotor, bei dem die Expression durch ein Repressormolekül gehemmt wird.
477
+ - 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.
478
+ - "CrcZ" has how many "Hfq binding motifs"? 6.
479
+ - Wie häufig ist das "minor spliceosome" in Menschen zu finden? A: 1 in 1000 (also 0.1%).
480
+ - Ein Beispiel eines "Anti-VEGF" nennen. A: "Avastin".
481
+ - What is the role of the snoRNAs? They are required for "rRNA processing".
482
+ - Where are Riboswitches typically found, from a genetic point of view? In the "5' UTR".
483
+ - Von welchen zwei Dingen ist die DNA-Ligase abhängig? Von "ATP" und von einem Lysin-Rest im Enzym.
484
+ - In the cell, mRNA decay competes with ...? "mRNA translation".
485
+ - 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
486
+ - We have found histone variants for all "core histones", except for ... ? Histone "H4".
487
+ - Wann werden "leaky" Promotoren zu einem Problem? Wenn da Genprodukt "toxisch" ist.
488
+ - "Histone phosphorylation" occurs on ... ? The "hydroxyl-group of serine and threonine".
489
+ - Name two histone modifications that start with the letter "A". A: (1) "Acetylation" (2) "ADP-ribosylation"
490
+ - Welche "Proofreading Eigenschaften" hat RNA Polymerase? A: "Hydrolytic editing" und "Pyrolytic editing".
491
+ - Nenne alle Basen die in tRNA Anticodon vorkommen können. A: Folgende fünf Basen können vorkommen: (1) "A" (2) "C" (3) "U" (4) "G" (5) "I"
492
+ - Name five improtant levels of "gene regulation in prokaryotes". A: (1) "Transcription" (2) "RNA processing" (3) "RNA stability" (4) "Translation" (5) "Post-Translation"
493
+ - Nenne eine allgemeine Einschränkung jeder DNA Polymerase. A: Alle DNA-Polymerasen benötigen einen DNA-Primer.
494
+ - Phosphorylation requires what? ATP.
495
+ - Gib zwei Beispiele für "bZIP Proteine"! A: (1) CREB (2) JunD
496
+ - Was heisst "MITE"? Miniature inverted repeat transposable Element.
497
+ - Mit welchem Organell ist mTORC1 assoziiert? Mit dem "Lysosom".
498
+ - Ringförmige RNA kann welche merkwürdige Form annehmen? Aufgrund zahlreicher Basenpaarungen kann das "Potato spindle tuber viroid" die Form eines "Stäbchens" annehmen.
499
+ - Was heisst "FACT"? A: "Facilitates Chromatin Transcription".
500
+ - The fMet Initiation tRNA starts out where in the ribosome? In the "P site" (thus: "in the middle").
501
+ - Wie können wir die His-Tags purifien, also reinigen? Mittels einer "Nickel-Säule".
502
+ - Do we regard "coactivators" as "transcription factors"? Yes.
503
+ - Der "Mediator-Komplex" lagert sich woran genau an? An die "C-terminale Region" der RNA-Polymerase II.
504
+ - What do we mean with an "ubiquitous promoter"? This is a promoter that can drive expression of a gene "in all tissues".
505
+ - What is meant with the term "enzyme induction"? The appearance of specific enzyme(s) only in the presence of its substrate(s).
506
+ - Can one gene have two transcripts with opposite effects? Yes.
507
+ - "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
508
+ - Activation of eukaryotic genes requires change in ... what "state"? The "state of chromatin".
509
+ - Name two elements to which an "activator" binds to. A: (1) a specific DNA target region (2) a component of the "basal transcription apparatus"
510
+ - Which protein coats the Poly(A) tail? "PABP": the poly(A) binding protein.
511
+ - Why is mRNA unstable? Due to the action of ribonucleases.
512
+ - Nenne einen Organismus", der "Pyrrolysin" verwendet. A: Methanosarcina barkeri.
513
+ - Gib ein Beispiel für einen "heterodimeren Transkriptionsfaktor". A: AP-1.
514
+ - Gib zwei konkrete Beispiele für "irreversible Proteinveränderungen". A: (1) Hitzeinaktivierung (2) Proteolyse
515
+ - For PAM recognition in CRISPR/Cas systems, which "amino acid" is extremely important? Arginine.
516
+ - CRISPR-medated adaptive immunity occurs in which 3 stages? A, E, I. (1) acquisition stage (2) expression stage (3) interference stage
517
+ - Can "riboswitches" control "alternative splicing"? Yes.
518
+ - Which bacterial protein helps a sRNA bind to its target mRNA? The protein "Hfq".
519
+ - What effect does the 6S RNA have in regards to transcription? It down-regulates transcription from many sigma-70 promoters.
520
+ - Where in an eukaryotic cell can we find dipthamide? In the eukaryotic elongation factor "eEF2".
521
+ - "Histone Acetyl Transferases" (HATs) are countered by which enzymes? The "Histone Deacetylases" (HDACs).
522
+ - 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.
523
+ - Was heisst "NRPS"? Nichtribosomale Peptidsynthetase. URL: https://de.wikipedia.org/wiki/Nichtribosomales_Peptid
524
+ - Wann entstand Crick's tRNA Adapter Hypothesis? A: 1958. URL: https://en.wikipedia.org/wiki/Adaptor_hypothesis
525
+ - How do "primary tRNAs" differ from "mature tRNAs"? Primary tRNAs contain a 5' leader and a 3' trailer; mature tRNAs do not.
526
+ - Which "eukaryotic transcription factor" is the most similar one to Sigma? TFIIF.
527
+ - Ago2 (Argonaute 2) is similar to which other cellular protein? RNaseH.
528
+ - CTD trägt welche 2 Protein-Komplexe? A: (1) CPSF (2) CSTF
529
+ - Pol II Heptapeptidfolge findet man an welchem Ende? Carboxyterminal.
530
+ - The sigma factor is responsible for ...? Promoter selection.
531
+ - Where can we find "uORFs"? In between the 5-prime and the start of the gene.
532
+ - Do eukaryotic mRNAs have a "ribosome binding site"? No.
533
+ - Wofür steht die Abkürzung "PTGS" in der Genexpression? Post Transcriptional Gene Silencing.
534
+ - Name an advantage for a cell to "regulate post transcription-initiation"? The "response time can be reduced".
535
+ - How is an exon defined? This is "any region retained in a mature RNA".
536
+ - Give another name for the transcriptional repressor CTCF. A: "CCCTC-binding factor".
537
+ - Name a nonspecific RNAase inhibitor. A: The polysaccharide "heparin".
538
+ - Wie können wir den lacUV5-Promotor induzieren? Mit Hilfe von "IPGT", dem Induktor.
539
+ - 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.
540
+ - Wo findet man "rut-sites"? A: Upstream von Sequenzmotiven, die die Geschwindigkeit der RNA Polymerase verringern können.
541
+ - Name a modification of tRNAs that can protect it against "hydrolysis by ribonucleases". A; Methylation.
542
+ - How many "different tRNA modifications" are known? At the least 70.
543
+ - What is the main job of the RNase P enzyme complex? To remove the 5' leader sequence of tRNAs.
544
+ - 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.
545
+ - In Gene expression, what is "PYLSI"? This is the "pyrrolysine insertion sequence".
546
+ - Does the TBP bind to the minor or the major groove of DNA? It binds to the minor groove of DNA.
547
+ - Was für eine Aufgabe hat Region 2.3 des Sigmafaktor? A: "Promoter Melting" (Transcription Initiation).
548
+ - Aminoacyl tRNA-synthetase link amino acid to ... of tRNA? The 3' end of a tRNA.
549
+ - Give one example for a "strong promoter" not starting with the letter "T". A: The "SV40 promoter".
550
+ - Why may some proteins have a "hinge-domain"? Because this allows for more "flexibility", in particular for "transcription factors".
551
+ - What is the most important part of a tRNA? The "anticodon arm".
552
+ - Was passiert wenn wir das Hormon "Thyroid" zu menschlichen Erythroblasten geben? Wir sehen ein "erhöhtes Maß an Differenzierung".
553
+ - In which direction does the Rho-factor move? It moves from "5-prime" to "3-prime" direction along the mRNA strand.
554
+ - piggyBac verwendet man vor allem bei welchen Tieren? Insekten.
555
+ - Wie unterscheidet sich "Dihydrouridine" von "Uridine"? Dihydrouridine hat "2 H-Atome" mehr als Uridine; der Name deutet dies auch an.
556
+ - Wer genau erkennt das UP-Element? A: Die "Alpha-CTD Region" der Polymerase.
557
+ - Which bacterial, ribosomal subunit binds the mRNA? The 30S subunit, the "small subunit".
558
+ - Wo finden wir die 5S-rRNA? Sie ist "Teil der großen ribosomalen Untereinheit".
559
+ - 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.
560
+ - Wo finden wir den genetischen Mechanismus der "Attenuation"? Nur in "Bakterien", da hier Transkription und Translation gekoppelt ablaufen.
561
+ - Gib ein Beispiel für ein Protein das einen "Leucine zipper" enthält. A: Das "CREB-Dimer".
562
+ - Wo findet man POL II und POL III? A: Im "Nucleoplasma". URL: https://de.wikipedia.org/wiki/Karyoplasma
563
+ - Wovor schützt die Methylierung? Vor "Restriktion".
564
+ - DNAsen kann man unterscheiden in? Endonucleases und Exonucleases.
565
+ - In mammals, who or what recognizes "nonsense codons" within a mRNA? "Exon-junction complexes".
566
+ - LexA is what kind of protein? LexA is "a bacterial repressor protein".
567
+ - Name a step in "eukaroytic gene expression" that can not be found in "Prokaryotes". A: Splicing.
568
+ - The RNA for the globin protein is found ...? Only in "reticulocytes".
569
+ - Nenne 2 Beispiele für RNAs die für "genome defence" zuständig sind! A: (1) piRNA (2) siRNA
570
+ - Lac ZYA kodiert für 3 Gene. Welche? A: (1) Z: Galactosidase (2) Y: Permease (3) A: Thiogalactoside Transacetylase
571
+ - Definiere "trans-splicing"! A: Hierbei wird "die Information von zwei oder mehr verschiedenen mRNAs kombiniert" (findet man in "Trypanosomen" und "Euglenoiden").
572
+ - RNA-Polymerases may undergo "slippage", especially where? When it encounters "CA-repeats".
573
+ - In der "Shine-Dalgarno Sequenz" finden wir vor allem welches Nukleotid? G - "AGGAGG". URL: https://en.wikipedia.org/wiki/Shine-Dalgarno_sequence
574
+ - What is the "CPE-consensus sequence"? UUUAU.
575
+ - Was heisst "Max" in der Genetik? A: Myc associated factor X.
576
+ - In gene expression, what is "Rat 1"? This is a nuclear "5'-to-3' exonuclease", involved in mRNA Degradation.
577
+ - Give 4 examples for "specific histone marks" associated with transcriptionally active genes. A: (1) acetylated H3K9 (2) acetylated H4K16 (3) methylated H3K4 (4) methylated H3K36
578
+ - Wer erkennt TATA Box? A: TBP.
579
+ - 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.
580
+ - Welcher Release-Faktor bindet GTP? RF3.
581
+ - Woraus besteht die Transaktivierungsdomäne von CRE verwandten Proteinen? A: Aus "Q1", der "P-Box" und "Q2".
582
+ - DNA Bindemotiv in CREB besteht aus? A: Vielen basischen Aminosäuren wie "Lysin" oder "Arginin".
583
+ - Wie entsteht Cap0? A: Nach dem Anheften des G und der ersten Methylierung dieses G. Das entstehende Produkt wird Cap0 genannt.
584
+ - Welche 3 Enzyme führen die eukaryotische CAP-Reaktion durch? A: In Reihenfolge: RNA-Phosphatase, Guanyl-Transferase, Methylase
585
+ - The protein "maskin" can bind to ... ? CPE aka "cytoplasmic polyadenylation element".
586
+ - Explain the role of the protein maskin in not more than three words. A: "Impedes initiation factors".
587
+ - Was kann das Protein SUMO1? Es kann "Ubiquitinierungen unterdrücken".
588
+ - Wie nennt man den Übergang vom "closed binary complex" in den "open binary complex"? A: Transition bzw genauer "Isomerization".
589
+ - Does "alternative splicing" occur before capping? No.
590
+ - Wie lang ist das "optimum spacing" zwischen -10 und -35 Region? 17 bp.
591
+ - Wieviele Nukleotide umfasst das Tetrahymena self-splicing Intron? A: 413.
592
+ - Which Sigmafactor controls the "heat shock response"? RpoH "Sigmafaktor 32". Merkhilfe: H für "Heat" oder "Hitze".
593
+ - Gib einen "common cause" für RNA Polymerase arrest an! A: Geschädgite DNA.
594
+ - Kuriosität von "Pol-III Promotoren"? A: Sie befinden sich "downstream" von der Startstelle.
595
+ - Inosine entsteht aus welcher Base? Hypoxanthine.
596
+ - Wie lautet die "anti-SD Sequenz"? 5'-CCUCCU-3'.
597
+ - Wie heisst das weltweit erste "anti-Sense Medikament"? Vitravene.
598
+ - HATs add acetyl groups from where, where to? From "Acetyl-CoA" to "Lysin residues".
599
+ - Nenne 1 Protein das den Zellzyklus stoppen kann! A: p21.
600
+ - Nenne zwei Hormonklassen. A: (1) Peptide (2) Steroide.
601
+ - Typische Länge eines core promoter (in Eukaryoten, von-bis in Nukleotide)? A: 40-60 Nukleotide.
602
+ - How can we reveal if a protein codes for a functional "nuclear localization signal"? Via "translational fusion experiments".
603
+ - Which 2 histones are sometimes replaced? (1) H2A (2) H3
604
+ - 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
605
+ - Wie ergibt sich die Identität der tRNA? Über die "Anticodon-Loops".
606
+ - In Genetics, what do we mean with an "Inducer"? An inducer is an effector molecule involved in the "induction of gene expression".
607
+ - 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.
608
+ - Vorläufer der aromatischen Aminosäure Tryptophan für seine Biosynthese? A: chorismic acid URL: https://en.wikipedia.org/wiki/Chorismic_acid
609
+ - Do we find "attentuation control" in Eukarya? No.
610
+ - Wie geht die "Shine-Dalgarno (SD) Sequenz"? 5'-AGGAGGU.
611
+ - A. W. für "Polyadenylierungssignal"? Schwanzsignal.
612
+ - Why the name "stabilizing helix" in a helix-turn-helix? Because it stabilizes the first helix, by interacting hydrophobically with it.
613
+ - 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
614
+ - Augabe der snoRNAs? Chemische Modifikation von rRNAs.
615
+ - Name 3 DNA-binding proteins that contain a "helix-turn-helix structure". A: (1) lac repressor (2) trp repressor (3) lambda repressor
616
+ - How was the existence of the Ribosome of the A and P sites originally determined? With the antibiotic "puromycin".
617
+ - Was macht die "RNase D"? RNase D ist bei der Reifung von tRNAs wichtig, und zwar reift sie die 3-prime Enden der tRNA.
618
+ - Nenne 1 "strukturelle" Eigenschaft der snRNAs. A: Sie besitzen "viele Uridinnucleotide".
619
+ - Is "RNA turnover" a defense system? Yes - it can also help defend against viruses and parasitic elements.
620
+ - The proofreading of DNA polymerase III requires what specific activity? 3 Prime to 5 Prime exonuclease activity.
621
+ - Which part of Methionine is modified with "N-formyl"? The +H3N end (Aminoterminus).
622
+ - Können beladene tRNAs korrigiert werden? Ja.
623
+ - Unbeladene tRNAs tragen was an ihrem eigenen 5-prime Ende, also terminal? Ein G.
624
+ - What does it mean when a promoter lacks an UP-element? It is probably a "weak promoter".
625
+ - What is the job of the "tmRNA in Bacteria"? The tmRNA rescues "stalled ribosomes".
626
+ - When Arabinose is absent, how does the "Arabinose operon" behave? It is repressed in this case.
627
+ - Which polymerase transcribes "Alu-Sequences"? The RNA-Polymerase III. But it only transcribes them - these RNA sequences are not translated.
628
+ - Was "können" Ribozyme? Zum Beispiel sich selbst ausschneiden.
629
+ - In Eukarya, which factors are required for "correct initiation"? (1) IF1 (2) IF2 (3) IF3
630
+ - Gib zwei Beispiele für Proteine mit Zinkfingermotiven an! A: (1) Sp1 (2) TFIIIA
631
+ - When would bacteria generate more "non-stop mRNAs" than normal? During "stress-response".
632
+ - Wie kann ich RNA-Polymerase irreversibel hemmen? Durch "Alpha-Amanitin".
633
+ - Nenne ein Enzym das "RNAse H" inkludiert. A: Die "reverse Transkriptase".
634
+ - Aminoacyl-tRNA Synthasen benötigen welche 3 Moleküle? A: (1) Die Aminosäure (2) die dazugehörende tRNA (3) ATP
635
+ - Can a protein recognize DNA segments without unwinding DNA? Yes, it can.
636
+ - Is SUMOylation is "reversible"? Yes.
637
+ - What is a "dead kinase" mutation? This is a mutation that inactivates a kinase, which means that this kinase is now "incapable of phosphorylation".
638
+ - There is the "C3H1-type zinc finger" motiv. It interacts with ...? With the 3-prime untranslated region of mRNAs.
639
+ - 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.
640
+ - We wish to decrease the overall rate of protein synthesis, by modifying only one cellular factor. Which one? eIF2.
641
+ - 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
642
+ - Der Transkriptionsfaktor Sp1 hat in seiner DNA-Bindungsdomäne wieviele aufeinanderfolgende Zinkfinger? 3.
643
+ - Nenne ein Protein das der Telomerase den Zugang zu den Telomeren erschwert. A: POT1.
644
+ - A. W. für "DNA-Sequenzelemente zur Unterdrückung der Genexpression"? Silencer.
645
+ - Which two domains can we find in "Gal4"? (1) Activation Domain (2) DNA-Binding Domain
646
+ - mTORC kann einen Überschuss von Aminosäuren registrieren, insbesondere welcher Aminosäure? Leucin.
647
+ - Die TFIIH vereint welche zwei Aktivitäten? (1) Helikase-Aktivität (2) Kinase-Aktivität
648
+ - 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.
649
+ - Die Steroid-Transkriptionsfaktoren besitzen wieviele funktionellen Domänen? 4 (A/B, C, D, E(/F))
650
+ - 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.
651
+ - What is a Twintron? A "Twintron" is an intron-within-intron, excised by sequential splicing reactions.
652
+ - Name the two major nuclear mRNA decay enzymes. A: (1) 5 prime- 3 prime exoribonuclease Rat1p (Xrn2 in humans) (2) Nuclear Exosome.
653
+ - 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.
654
+ - Das TFII-I Protein in Eukaryoten, kann woran binden? An das Inr-Element.
655
+ - Die U5-snRNA tritt an Stelle von welcher anderen snRNA? Der U1-snRNA.
656
+ - Nenne eine nicht-tRNA, die durch die RNA Polymerase III transkribiert wird. A: 5S rRNA
657
+ - Der SP1-Transkriptionsfaktor besteht aus n Domänen? Er besteht aus 2 Domänen.
658
+ - Welcher Teil des TBP Proteins bindet an DNA? Der C-terminale Bereich.
659
+ - Name a kinase that phosphorylates lipids. A: Die PI 3-kinase.
660
+ - In der Genexpression, gib ein Beispiel für ein "Substrat-unähnlichen Effektor". A: Licht.
661
+ - S. cerevisie hat n Kopien an "YSPTSPS", Säugetiere n? S. cerevisiae: 26 Kopien von YSPTSPS, Säugetiere: 52 Kopien von YSPTSPS.
662
+ - TFIIH consist of n subunits? 9.
663
+ - An amino acid can be adenylated at which terminus? At its carboxyterminus.
664
+ - Histone H1 is rich in which amino acid? Lysine.
665
+ - How do we denote microRNA genes? With the symbol "mir".
666
+ - For eukaryotic promoters, name two additional regulatory elements aside from the TATA box. A: (1) CCAAT-Box (2) GC-rich regions
667
+ - At the eukaryotic cap, the Cap II group is ...? -CH3; a methyl group.
668
+ - SmpB structurally mimics ...? The anticodon arm of a canonical tRNA.
669
+ - tmRNA has which partner protein? SmpB - small protein.
670
+ - How long is the final tmRNA? 363 nucleotides.
671
+ - In gene expression, we have the "CPE". What does CPE stand for? "cytoplasmic polyadenylation element"
672
+ - Welche 2 Schleifen kann die trp mRNA ausbilden? (1) Terminatorhaarnadelschleife (2) Antiterminatorhaarnadelschleife
673
+ - Was macht das Enzym "Disulfidisomerase"? Es baut Disulfidbrücken um.
674
+ - Name a famous deadenylase in mammalian cells. A: The PARN-deadenylase.
675
+ - Which enzyme introduces positive supercoils into DNA? The reverse DNA gyrase.
676
+ - Who recognizes the BRE-element? The TFB (transcription factor B).
677
+ - Where can we find "Polysomes"? In both bacteria and eukaryota.
678
+ - In gene expression, what does "ITAFs" stand for? IRES trans-acting factors.
679
+ - What is the effect of binding of EF-1? This displaces the empty tRNA from the E-site under hydrolysis of GTP.
680
+ - 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.
681
+ - Why can we say that translation is accurate? Because of the consistency found when we determine the sequence of a polypeptide.
682
+ - What do we mean with "leaky scanning"? When we overlook ORF1 and initiate translation at the start of ORF2.
683
+ - Was heisst "PI3K"? Phosphoinositide 3-Kinase.
684
+ - How many classes of tRNA synthetases exist? 2
685
+ - In E. coli, AUG, GUG and UUG can serve as initiation codon. What additional codon can serve as initiation codon in E. coli? AUU.
686
+ - Drosha belongs to which pathway? Drosha belongs to the "miRNA pathway".
687
+ - What is the 1st product of tRNA-Synthetase? aminoacyl-AMP (+ PPi)
688
+ - How many steps are required for the formation of the eukaryotic cap? 3.
689
+ - In welchen mRNA Typ kann man viele uORFs finden? In mRNAs die für "Wachstum-regulierende Proteine" kodieren.
690
+ - Es gibt die Lipidkinase PI3K. Was heisst PI3K? Phosphoinositid-3-Kinase.
691
+ - Name the two major substrates of mTORC1. A: (1) S6K1 (2) 4E-BP1
692
+ - 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
693
+ - How many vertebrate mRNA contain at least one uORF (Upstream open reading frame)? About 10%.
694
+ - Was heisst "TOP mRNA"? Terminal oligo-pyrimidine tract.
695
+ - Wann wurde mTOR im Menschen entdeckt? 1994.
696
+ - Was heisst "uORF"? upstream open reading frame.
697
+ - Welche Aufgabe hat IF3? IF3 bindet an eine 30S Untereinheit und verhindert dessen Interaktion mit einer 50S Untereinheit.
698
+ - Name 2 factors that help dissociate ribosomal subunits. A: (1) RRF (2) EF-G
699
+ - Merkslogan zu tRNA Wobble rules? C,A,G,U,I.
700
+ - 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.
701
+ - Aktivator der tRNA? ATP.
702
+ - For "translational repression of riboswitches", where may we be able to find these riboswitches? Around the initiation site of translation.
703
+ - The Eukaryotic initiation factor eIF4GI is a component of the ...? The cap-binding protein complex eIF4F.
704
+ - 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
705
+ - Activators recognize DNA sequences in which area? In Enhancers.
706
+ - Name 2 areas of a tRNA that are close together in 3D. A: The T-Loop and D loop.
707
+ - Give 2 examples for single-subunit RNA polymerase enzymes. A: (1) phages (2) organelles
708
+ - Where can we find the "peptide anticodon"? This 3-amino acid can be found in the Ribosome.
709
+ - A. W. für "intron containing genes"? Split genes.
710
+ - What means the abbreviation "shRNA"? Small hairpin RNA.
711
+ - Welche 2 Bindings Sites hat eine "Aminoacyl-tRNA-Synthetase"? (1) tRNA binding site (2) Aminoacid
712
+ - Wie funktionieren Release Factors? Sie lösen die Hydrolysis der Peptidyl-tRNA aus, die an der P-Site ist. Das Protein wird dadurch freigesetzt.
713
+ - Wie stabil kann mRNA maximal sein? Die mRNAs in Oocyten kann Jahre lang stabil bleiben.
714
+ - Wo liegt das Gen für den Gerinnungsfaktor VIII im Menschen? Auf dem X-Chromosom.
715
+ - Why do we make use of "polysome gradients"? 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.
716
+ - The peptidyl transferase reaction occurs between which 2 types of tRNA? (1) peptidyl-tRNA (2) aminoacyl-tRNA
717
+ - The La-Protein binds to ... ? It binds to the 3-prime end of transcripts.
718
+ - Ein anderes Wort für "minor spliceosome"? A: AT-AC Spliceosome ("attack spliceosome")
719
+ - 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.
720
+ - Welchen Nachteil haben Proteine die Selenocystein verwenden? Selen ist anfällig gegenüber Oxidationen. Diese Proteine müssen ergo vor Sauerstoff geschützt werden.
721
+ - 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.
722
+ - Was heisst "Fen1"? Flap-Endonuclease.
723
+ - Was wird in einem "pulse-chase" Experiment verwendet? A: Radioaktiv markiertes Uracil.
724
+ - Bacterial enhancers employ which sigma factor? Sigma 54.
725
+ - Who recognizes the cap during initiation? eIF4E.
726
+ - Was bedeutet "Translationskontrolle"? Auswählen der zu translatierenden mRNAs.
727
+ - Nenne 3 Typen cis-regulatorischer Sequenzen, die die Transkription beeinflussen können. A: (1) Promotoren (2) Silencer (3) Enhancer
728
+ - 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
729
+ - Helici in Homöobox-Domänen haben eine "Erkennungshelix". Welche ist es? A: Helix 3 ist diese Erkennungshelix.
730
+ - What is "RNAsin"? A RNAse inhibitor.
731
+ - 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.
732
+ - In Bacteria, which complex couples transcription with translation? The NusEG complex.
733
+ - Does the transcriptome faithfully represent the proteome? No.
734
+ - Name a human hormone that can cause differentiation of human erythroblasts. A: The thyroid hormone.
735
+ - Yanofsky untersuchte welches Enzym? A: Die Tryptophan Synthetase.
736
+ - In Apoptosis, what means "DISC"? Death inducing signalling complex.
737
+ - Welchen Zweck erfüllt die "Kozak-Sequenz"? Sie stellt die richtige Umgebung für das Initiationscodon (AUG) her.
738
+ - What are "Isochizomers"? They have identical recognition sites, but not always the same cutting site.
739
+ - Why is RNA polymerase arrest a problem? If the gene transcribed is essential then no new product is made - the cell may die.
740
+ - The cap in eukaryotic mRNA has the methyl group where? At position-7.
741
+ - What are the "Polycomb-group proteins" and what are they doing? These proteins, discovered in fruit flies, can remodel chromatin such that epigenetic silencing of genes takes place.
742
+ - Was heisst "EMSA" in derGentechnik? Electrophoretic mobility shift assay.
743
+ - Was macht die "Peptidyl-prolyl-Isomerase"? Konvertiert zwischen cis und trans Formen eines Proteins.
744
+ - Nenne eine super-family für nukleare Rezeptoren. A: Steroidhormon-Rezeptoren.
745
+ - Der CTD-Schwanz einer eukaryoten Polymerase ist Teil welcher Untereinheit? A: TFIID.
746
+ - How can we experimentally distinguish between protein synthesized anew? Via cycloheximide.
747
+ - 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.
748
+ - What happens in the "R-looping technique"? RNA is hybridized to its DNA template.
749
+ - What is "ratcheting" in molecular biology? The two tRNAs at the A and the P site are tilted relatively.
750
+ - Die 23S rRNA in Prokaryoten entspricht was in Eukaryoten? Der 28S rRNA.
751
+ - Enzymatische Strukturanalyse durch ... ? RNasen.
752
+ - Wieviel % der Proteine in einer typischen Säugetierzelle ist, bei einer beliebigen Zeit, phosphoryliert? Etwa 1/3.
753
+ - Which enzym in E. coli does the de-novo synthesis of DNA strands? DNA polymerase IV.
754
+ - The DNA-Polymerase V is also called ..? Error-pron polymerase.
755
+ - Alpha-Amanitin ist ein zyklisches Peptid das aus wievielen Aminosäuren besteht? Es besteht aus 8 Aminosäuren.
756
+ - The protein U2AF binds where to? To the 3-prime splice site.
757
+ - Where can we find a 5-prime to 5-prime triphosphate bridge? In the eukaryotic 5-prime cap structure.
758
+ - What is "R-loop mapping"? When RNA is incubated with dsDNA, the RNA displaces one RNA stretch.
759
+ - Sulfolobus species have n replicons? 3.
760
+ - Was finden wir an der "active site" einer Topoisomerase? Einen "tyrosine residue".
761
+ - Are Transitions or Transversions more likely to occur? Transitions occur twice as frequently as Transversions.
762
+ - 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.
763
+ - Protein-Phosphorylation can occur on Serin, Threonine and Tyrosine. In Plants and Prokaryotes, on which additional Aminoacid? Histidine.
764
+ - Die tRNA ist mit der Aminosäure über welche Bindung verknüpft? Über eine Esterbindung.
765
+ - Which protein recognizes both tRNA-sec and the stem-loop in Prokarya? SelB.
766
+ - Why may mammalian mRNA require Cap2? Because it can increase the efficiency of translation.
767
+ - Welche Besonderheit haben U1 und U2 Gene? Sie sind "TATA-less" - haben also keine TATA Box.
768
+ - Is the Poly-A tail 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.
769
+ - The snRNAs of the snurps recognize which 3 sites? (1) 5-prime splice site (2) 3-prime splice site (3) branch site
770
+ - The MTE (motif ten element) requires which other element? The INR element.
771
+ - The "transcription cycle" of Pol II transcription has which 5 points? (1) preinitiation (2) initiation (3) promoter clearance (4) elongation (5) termination
772
+ - 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.
773
+ - Wie unterscheidet sich Pseudouridine von Uridine? Pseudouridine besitzt Ribose an einem C des Ringes.
774
+ - Nenne 2 Metallionen die von der RNA-Polymerase verwendet werden. A: (1) Mg2+ (2) Mn2+
775
+ - One gene, one enzyme. Name 3 general exceptions of this scheme. A: (1) alternative splicing (2) polyprotein (3) frameshift
776
+ - Welche Funktion erfüllt die Pol 5-prime -> 3-prime exconuclease activity? Entfernt RNA Primer.
777
+ - Warum finden wir Attenuation nicht in Eukaryoten? Weil Transkription und Translation räumlich getrennt ablaufen.
778
+ - Name 2 eukaryotic replication initiation factors. A: (1) Orc1 (2) Cdc6
779
+ - Where may we find "diphtamide"? In the eukaryotic elongation factor eEF2.
780
+ - The CCA-adding enzyme uses what as input? Only ATP or CTP.
781
+ - A. W. für snoRNA? "U-RNA".
782
+ - Nenne die 3 Sequenzmotive um PolyA in Eukaryoten anzufügen. A: (1) AAUAAA (tail signal) (2) CA-dinucleotide (3) GU-rich tract
783
+ - Nenne einen zellulären Prozess bei dem zwei Transester-Reaktionen involviert sind. A: Splicing.
784
+ - Was genau heisst fMet? N-formyl-methionin.
785
+ - Which type of genes make use of GUG rather than AUG in prokarya? Regulatory proteins such as LacI.
786
+ - Name the four steps in Translation. A: (1) Initiation (2) Elongation (3) Termination (4) Ribosome recycling
787
+ - What happens when Arabinose binds to AraC? It converts AraC from being a repressor to become an activator.
788
+ - Which TF can bind to the TATA Box? TFIID.
789
+ - Was zeigten die jeweiligen swi und snf Mutanten? swi could not switch mating type, snf could not grow well on sucrose.
790
+ - Welchen Vorteil beitet der "deadenylation-independent mRNA decay pathway"? It is initiated by decapping and is not dependent on prior deadenylation.
791
+ - What must happen before "decapping" of mRNA can occur? Deadenylation.
792
+ - What means "deadenylation"? The removal of poly(a) tail from the 3-prime end.
793
+ - Was ist die normale Aufgabe des Elongation Factor 2? It brings a charged tRNA to the Ribosome.
794
+ - Why does a cell encode DNA-Ligase? Because it is required for DNA replication.
795
+ - In einem eukaryoten Strukturgen, wo finden wir die GC-Boxen? -90bp.
796
+ - Name 4 regulatory nucleotides. A: (1) cyclic AMP (2) cyclic GMP (3) ppGpp (4) cyclic di-GMP
797
+ - 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.
798
+ - Welche Aufgabe hat das "rudder" in der Polymerase? Diese Schlaufe trennt die DNA-Stränge.
799
+ - RNA Polymerase III in eukaryotes transcribes which genes? tRNA genes.
800
+ - Wann wird das trp-Operon gehemmt? Nur wenn Tryptophan vorhanden ist, und der resultierende trp-Repressorkomplex an den Operator binden kann.
801
+ - How can "modification enzymes" protect? They transfer a methyl group onto the DNA.
802
+ - What means "gene knockdown"? This is an experimental technique by which the expression of an organisms gene is reduced.
803
+ - Welchen Einfluss hat Glucose auf die Adenylatcyclase? Sie hemmt dieses Enzym.
804
+ - Was sind "Strukturanaloga"? Dies sind Substanzen, die wie natürliche Induktoren wirken können, jedoch nicht von dem Enzym metabolisiert werden können.
805
+ - Welche Relation gibt es zwischen ppGpp und GTPasen? ppGpp can bind and inhibit GTPases.
806
+ - Nenne einen zellulären Vorgang auf Protein-Ebene der nicht ohne weiteres reversibel ist. A: Proteolysis.
807
+ - 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)
808
+ - In Genetics, the Tm is proportional to ... ? Tm is proportional to the GC content of the DNA.
809
+ - What are "recognition helices"? Domains that bind DNA.
810
+ - Was sind eigentlich "Inteins"? 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
811
+ - 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
812
+ - What is the substrate for RNA Editing events? Double stranded RNA molecules.
813
+ - What auxiliary factor does RNaseP require for cleavage? Mg2+ Ion.
814
+ - Nenne 3 Unterschiede zwischen "primary tRNAs und "mature tRNAs". A: (1) no 5-prime leader sequence (2) no 3-trailer sequence (3) no introns
815
+ - Der Glucocorticoid-Rezeptor kann was genau binden? Cortisol. Cortisol (ein Glucocorticoid) bindet bindet an die sogenannte LBD Domäne des Glucocorticoid-Rezeptors.
816
+ - Welche Aufgabe haben die "guide regions" der guide RNAs? This region templates U insertion or deletion via A-U G-U pairing.
817
+ - Was ist eine "Heteroduplex"? Eine DNA-Helix aus Strängen, welche von 2 verschiedenen DNA-Moleküle stammen.
818
+ - 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
819
+ - Which 3 RNA degradation pathways exist. A: (1) RNA Turnover (2) RNA Processing (3) Quality Control
820
+ - Ionenkanäle zeigen welche 3 Kontrollmöglichkeiten? (1) spannungskontrolliert (2) ligandenkontrolliert (3) mechanisch kontrolliert
821
+ - Wie erkennen DNA-Glycosylasen falsche Nukleotide? Mittels "bbase-flipping".
822
+ - Warum ist es so schwer die Replikationsursprünge in Säugetierzellen zu identifieren? Da außenliegende Sequenzen einen grossen Einfluss haben können.
823
+ - 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.
824
+ - Wie schnell ist die "DNA-Helicase"? Etwa 1000 Nukleotide pro Sekunde.
825
+ - Who matures tRNA 5-Prime Ends? The RNase P Enzyme complex.
826
+ - Nenne die 2 Polyadenylation-Signals. A: (1) AAUAAA (2) AUUAAA
827
+ - Warum sind viele der Nukleotide in der rRNA methyliert? Das schützt die rRNA vor Abbau durch Ribonucleasen.
828
+ - SRP (signal recognition particle) binden woran? An das Signal peptide eines secretory proteins.
829
+ - Give 3 examples how "transcriptional arrests" can be caused. A: (1) intrinsic DNA structures (2) DNA Binding proteins (3) drugs that bind DNA
830
+ - A. W. für "Metagenomics"? Environmental genomics.
831
+ - Bei DNA Typ I Isomerasen finden wir welche Aminosäure an der aktiven Stelle? Tyrosin.
832
+ - Welche zwei traditionellen Verfahren gibt es zur Identifizierung des Transkriptionsstartes von PolII? (1) S1-Nuclease Kartierung und (2) Primer Extension Methode
833
+ - Welches Ende der RNA liegt im aktiven Zentrum bei PolyII? Das 3 Strich-OH Ende.
834
+ - TAF3 hat eine PHD-domain, den PHD-finger. Was kann diese Domain? Sie kann dimethylierte und trimethylierte H3K4 erkennen.
835
+ - Das Ribosom bedeckt wieviele Basen auf der mRNA? Etwa 35.
836
+ - Was ist gRNA? guide-RNA, die ist an RNA-editing beteiligt.
837
+ - Welche RNA splicing Klassen existieren (mit langem Namen nennen)? Es existieren folgende 3 Klassen: Nuclear, group I Introns, group II Introns.
838
+ - tRNA Länge (von / bis)? 73-94 Nukleotide.
839
+ - Wie wirkt der FACT Complex molekular? Der FACT-Komplex blockiert eine starke DNA-Bindestelle auf den Histonen.
840
+ - Wie viele Restriktionsendonucleasen sind bekannt? A: Über 3000. URL: https://en.wikipedia.org/wiki/Restriction_enzyme
841
+ - Definiere den Begriff <one>Amplicon</one>. A: "Primer-to-primer" Grenze in DNA.
842
+ - Was ist die katalytische Untereinheit des SAGA-Complex? <one>GCN5</one>.
843
+ - Was sind "chromosomale Domänen"? Sie definieren transkribierte und nicht-transkribierte Bereiche.
844
+ - Die MAPK Kinase kann welchen Transkriptionsfaktor im Zellkern aktivieren? Elk-1.
845
+ - Was kann eine <one>Chromodomain</one> erkennen? Methylierte DNA.
846
+ - 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.
847
+ - Welche Aminosäuren können im Zuge der Interpretation des Histone Codes methyliert werden? Lysin und Arginin.
848
+ - In der Genexpression, was meint man mit der "nucleosomal response"? Die Phosphorylierung von H3.
849
+ - In der Genexpression, was heisst STATs? Signal transducers and activators of transcription.
850
+ - Gib ein Beispiel für ein "Phosphoprotein. A: Alpha-Synuclein (alpha-Syn)
851
+ - NtrC erhält wie Energie? Durch ATP Hydrolyse.
852
+ - 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.
853
+ - The KH domain interacts with ...? ssDNA and ssRNA.
854
+ - Die SD-Sequenz ist welcher Region komplementär? Der 16S rRNA.
855
+ - Nenne 2 fettlösliche Liganden. A: (1) Tyroxin (2) Steroidhormone
856
+ - Nenne die 4 Gruppen von Steroid-Hormone in Säugetieren. A: (1) Sexualhormone (2) Glucocorticoids (3) Mineralcorticoids (4) Progestagens
857
+ - In der Genetik, wie ist eine "Attenuatorregion" definiert? A: Dies ist eine DNA-Region an der sich entscheidet ob die RNA-Polymerase die Transkription fortsetzt oder nicht.
858
+ - Der Rho-Faktor bindet an? Rut-sites.
859
+ - What are the two essential functions of DNA-Polymerases? (1) primer function (2) Template function
860
+ - 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.
861
+ - Anderes Wort für "Enhancer"? A: UAS (Upstream Activating Sequence)
862
+ - In Genetics, what is an "Antiterminator"? A regulatory protein that acts by preventing transcription termination.
863
+ - Welche 2 Motive haben "Leucine-Zipper Proteins"? (1) A basic region recognizing DNA sequence (2) a series of repeated leucin residues that mediate dimerization.
864
+ - What is a "riboswitch"? An RNA whose activity is controlled by the metabolic product or another small ligand.
865
+ - Wie wirken Tetracycline genau? Sie lagern sich an die 30 S-Ribosomenuntereinheit an und verhindern damit die Anlagerung der tRNA.
866
+ - A. W. für "Nucleolus"? Ribosomen-Fabrik.
867
+ - Definiere ein "antigene-oligonucleotide". A: An Oligonucleotide that is designed to bind to a gene and block transcription.
868
+ - Name one key change in the transformation of silent to active chromatin. A: The acetylation of histones. HATs do this transformation.
869
+ - Was ist STAB-SD in der Genetik? Sogenannte "stabilizer SD Sequences".
870
+ - Welche allgemeine Aufgabe haben snoRNAs? Modifizieren RNA-Basen chemisch.
871
+ - In der Genexpression, was heisst "SH2 domain"? Src Homology 2.
872
+ - Which receptor binds Testosterone? The Androgen Receptor.
873
+ - Warum der Name "positive regulation"? Because an activator protein must bind to its target DNA site for transcription to begin.
874
+ - Name one advantage of "constitutive expression" over an inducible system. A: You do not need an inducer!
875
+ - Nenne zwei Motife im Leucine Zipper Protein. A: (1) Basic region that recognizes DNA sequence and (2) a series of repeated Leucine residues.
876
+ - Der Holorepressor besteht aus? Aporepressor und Corepressor.
877
+ - Nenne einen Organismus mit catalytic RNA. A: Oxytricha nova.
878
+ - Die Gegenspieler von Protein-Kinasen? Protein-Phosphatasen.
879
+ - Der cAMP-CAP Komplex verstärkt die Ablesung der DNA um ...? Das 50-fache.
880
+ - Spc-mRNA ähnelt wem? Der 16S rRNA.
881
+ - MukB kann was? DNA-Stränge umklammern.
882
+ - Welche 2 Enzymaktivitäten hat die Reverse Transkriptase? Eine RNAse Aktivität und eine DNA-Polymerase-Aktivität.
883
+ - BamH1 schneidet wo? GGATCC.
884
+ - Endonuclease UvrABC ist mit welchem Phänomen assoziiert? A: Transcription coupled repair.
885
+ - RNase A schneidet wo? Nach einem Pyrimidine.
886
+ - Nenne 3 Gründe warum Oligonucleotide wichtig sind. A: (1) DNA-Sonde (2) Primer für PCR (3) Sequenzierung
887
+ - mTOR phosphoryliert was? 4E-BP.
888
+ - Beim freien Signal-Aptamer, wie wird die Fluoreszenz unterdrückt? Durch die räumliche Nähe von Quencher und Fluorophor.
889
+ - Nenne 3 Methoden zum Einschleusen von Fremd-DNA in Mäuse! A: (1) Einschleusen gentechnisch veränderter Stammzellen (2) Mikroinjektion (3) Retrovirusvektoren
890
+ - Input der Aminoacyl-tRNA-Synthetase? ATP, tRNA + Aminosäure.
891
+ - Die Rossman-Schleife bei tRNA-Klasse-I-Synthetase macht was? Bindet ATP und heftet Aminosäure an die 2 Strich OH-Gruppe der entständigen Ribose.
892
+ - Primase: Wie lange sind die generierten Nukleotide? 8-12.
893
+ - Was macht Ef-Ts? Regeneriert Ef-Tu.
894
+ - Exonucleases generate what? Mononucleotides.
895
+ - Die Beta-Clamp kooperiert mit welcher Polymerase? Pol III.
896
+ - Def. insertional Mutagenesis! A: This technique causes Mutations through random insertion of foreign DNA Fragments.
897
+ - Welche 3 Domänen hat die lac-Repressor UE? DNA bindende Domäne, Core Domain, und Tetramisierungs-domain.
898
+ - Wie geht der Gal Pathway? Gal 2,1,7,10,7 Glycosis.
899
+ - Nenne eine Gemeinsamkeit von group II introns und Spliceosome? A: Wahrscheinlich ein gemeinsamer Vorfahre.
900
+ - Können Enhancer in Introns liegen? A: Ja.
901
+ - 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.
902
+ - Trivialname für NtrC? Stickstoff-Regulator Protein (NtrC).
903
+ - 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
904
+ - Die U2-snRNP ersetzt welche zwei Faktoren wenn sie an die interne A-Site im Intron bindet? A: U2AF und BBP
905
+ - Ein Intron das 300kb lang ist braucht wie lange zum transkribieren? 2.8 Stunden.
906
+ - Die ältesten Introns gehören wahrscheinlich zur ... ? A: Group II Introns.
907
+ - Die Aktivität von CAP wird woduch gesteuert? Durch den intrazellulären Gehalt von cAMP.
908
+ - Wie wird CAP aktiviert? Durch cAMP.
909
+ - TFIIF entspricht in Bakterien was ...? A: Dem <one>Sigmafaktor</one>.
910
+ - Wer bindet an Poly-A? PABP.
911
+ - Nenne 3 post-translationale Modifikationen! A: (1) Glykosylierung (2) Myristylierung (3) Phosphorylierung
912
+ - Nenne 1 Thymin-Analog! A: Bromouracil.
913
+ - When was splicing discovered? 1977.
914
+ - Typische Exon Grösse? 150 Nukleotide.
915
+ - Wie viele Regionen hat der Sigmafaktor? A: Vier
916
+ - Warum der Name Cosuppression? Weil sowohl das Transgen als auch das endogene Gen unterdrückt werden (suppression).
917
+ - Gib 2 Beispiele für Organismen die "trans-splicing" verwenden! A: (1) Trypanosomen (2) Euglenoiden
918
+ - Welches ist der Standard-Sigmafaktor? Sigma-70.
919
+ - Was erlaubt der NTP-Uptake channel? Das neue Nukleotide an die active site der Polymerase gelangen können.
920
+ - 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.
921
+ - Nenne eine Region im Sigmafaktor die als molecular mimic von DNA agiert! A: Region 1.1
922
+ - Nenne 2 Beispiele für sequence motif Typen! A: Enhancers und Silencers.
923
+ - Warum ist die Kenntnis der alternativen Tautomers wichtig? Da sie einen häufigen Fehler bei der DNA Replikation darstellen können.
924
+ - 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".
925
+ - Aufgabe von IF3? Ist an die kleine ribosomale Untereinheit gebunden und verhindert das sich diese UE zu schnell mit der grossen ribosomalen UE verbindet.
926
+ - FACT hilft bei welchem "genetischem" Vorgang? Bei der Elongation (da er die H2A und H2B Dimere trennt).
927
+ - Bei copolymers ohne AUG, wo starten die Ribosomen ihre Synthese? An zufälligen Stellen.
928
+ - Sigmafaktor 70 hat wie viele Regionen? 4.
929
+ - Slogan: rRNA folds how? By "intramolecular base pairing".
930
+ - Release Factors binden wo genau? An der A-Site im Ribosom.
931
+ - Bei DNA Replikation, was geschieht mit dem Pyrophosphat das abgespalten wird? Es wird mittels dem Enzym Pyrophosphatase sehr schnell in 2 Phosphor umgewandelt.
932
+ - SL1 besteht aus welchen Untereinheiten? A: TBP sowie 3 weiteren TAFs, 48, 63, 110
933
+ - 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.
934
+ - Wie kann man mRNA inaktivieren? Mittels anti-sense mRNA.
935
+ - trn1 und trnA liegen wo? Neben der 16S rRNA.
936
+ - SL1 bindet an DNA nur wenn ... ? A: Nur wenn sein Kofaktor UBF an die DNA gebunden ist.
937
+ - Was war Yanofsky grosse Leistung 1963? A: He showed that mutations appear in the same order ("colinearity of mutations").
938
+ - 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.
939
+ - Wie wirkt Proflavin auf dsDNA? A: Fügt ein Nucleotidpaar hinzu, oder entfernt eines.
940
+ - 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
941
+ - Was produziert ODC? A: Polyamine.
942
+ - Aufgabe TAT-SF1? A: Rekrutiert Komponenten des Splicing Apparates (wenn Serin 2 im Heptapeptid-Schwanz phosphoryliert ist)
943
+ - 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.
944
+ - Nenne 2 RNA Chaperones. A: Hfq und Fin-O Protein.
945
+ - 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.
946
+ - Was macht das Enzyme Cytidine-Deaminase? A: Konvertiert C nach U.
947
+ - Was bewirken Cycline molekular betrachtet? A: Eine konformationelle Änderung in den Cdk-Kinasen (einschalten, ausschalten)
948
+ - SPT6 bindet an ...? A: H3.
949
+ - Nenne 2 Elongation-Factors! A: TFIIS und hSPT5.
950
+ - 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.
951
+ - Der Output von Drosha ist wie lange? A: Etwa 70 Nukleotide
952
+ - Proteine, die im Endoplasmatischen Retikulum sind, haben am C-Terminal ein Tetrapeptide. Wie lautet dessen Sequenz? A: KDEL (Merkschema: C-KDEL)
953
+ - Wo finde ich Dipthamid? A: Im eukaryotischen Elongationsfaktor eEF-2
954
+ - RISC akzeptiert was für einen Input? A: ssRNA
955
+ - Nenne einen Faktor der bei "hydrolytic editing" stimuliert! A: Gre factors.
956
+ - H-NS protein silenced gene expression an mindestens 2 Promotoren. Welchen? A: an proU und bgl operons
957
+ - Tup1 ist ein ..? A: Corepressor.
958
+ - Nenne 2 Fakten zu TRCF! A: hat eine ATPase Aktivität und kann stehengebliebene RNA Polymerase zur Dissoziation bringen.
959
+ - Nenne 1 Proteingruppe die RNA Pol II während der Elongation hilft. A: Nus Protein.
960
+ - MRP-RNP ist womit verwandt? A: Mit RNAse P, welches korrekte 5-Prime Enden bei tRNA herstellt.
961
+ - Wo befindet sich die RBS Stelle typischerweise? A: Etwa 3-9 Basenpaare vor dem Startcodon der 5-Strich mRNA.
962
+ - TFIIF bindet woran? A: An den Non-Template strand.
963
+ - Was macht Rtt103? A: Ladet eine RNAse auf den CTD Tail der Polymerase.
964
+ - H4K8, was fällt einem dazu ein? A: Bromodomain im Swi-SNF Komplex. Er bindet an H4K8.
965
+ - U2AF hat zwei Motive. Welche? A: RRM und RS Motiv.
966
+ - Was ermöglicht NXF1? A: Den Übertritt der mRNA ins Cytoplasma.
967
+ - 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.
968
+ - 5S gehört zu ... ? A: rRNA
969
+ - TAFs haben strukturelle Ähnlichkeit zu ...? A: Histonen.
970
+ - Was heisst GCN? A: General Control of Amino Acid Synthesis.
971
+ - Alternative Splicing produziert was? A: Verschiedene Isoformen.
972
+ - 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.
973
+ - Warum heisst der Mediator Mediator? A: Er vermittelt zwischen stromaufwärts gelegenen Enhancern (Aktivatoren) und der RNA Polymerase II.
974
+ - Das Exosome hat wie viele Exonucleasen? A: Mindestens 9.
975
+ - Was ist das int-1 Gen? A: Ein Maus-Gen das durch die Integration eines Retrovirus aktiviert wird.
976
+ - Was heisst MAP im MAP-Kinase Pathway? A: Mitogen Activated Protein.
977
+ - Was bewirkt "ChIP" effektiv? A: Ein Auftrennen zwischen Euchromatin und Heterochromatin.
978
+ - Wie kann TBP spezifisch die TATA Box erkennen? A: Durch zwei Phenylalanin-Reste.
979
+ - Was heisst PIC, und woraus besteht er? A: Präinitiationscomplex. Er besteht aus DAB-PolII-FEH
980
+ - Was bewirken Terminators? A: Sie triggeren das die Polymerase von der DNA dissoziiert.
981
+ - Was lässt sich zum Sigma-Release sagen? A: Er benötigt fast immer mehrere Anläufe.
982
+ - Was ist schwächer: A-U oder A-T? A: A-U Basenpaarungen. Die sind am schwächsten überhaupt.
983
+ - Wo findet man die active site bei der Polymerase? A: An der Basis der Pincers, innerhalb der active site cleft.
984
+ - Was haben starke Promotoren und womit interagieren sie? A: Ein UP Element, welches mit dem Carboxyteil der Alpha-Untereinheit der Polymerase interagiert.
985
+ - Was heisst CBP? A: CREB-Bindeprotein.
986
+ - Proteine mit Bromodomäne erwerben welche Bindungseigenschaft? A: Sie können an Acetyl-Lysin Seitengruppen binden.
987
+ - Welche Aufgabe hat hSPT5? A: Er rekrutiert die 5-Strich Capping Enzymes an den (phosphorylierten) CTD-Teil der Polymerase.
988
+ - Was heisst p-TEFb? A: positive transcription elongation factor b
989
+ - Woran genau bindet SP1? A: An GC-Boxen (GGGCGG)
990
+ - Nenne 3 Vertreter für HAT Komplexe! A: Yeast SAGA, PCAF, NuA3
991
+ - Nenne 3 Beispiele für HDAC Komplexe (Histon-deacetylase)! A: Der Sin3-Komplex, NuRD und SIR2.
992
+ - Welche Transkriptionsfaktoren haben eine SH2 Domäne? A: STATs (Signaltransduktoren und Aktivatoren der Transkription)
993
+ - In der Genexpression, was heisst STAT? A: Signaltransduktoren und Aktivatoren der Transkription
994
+ - Was ist SUMO1? A: Small ubiquitine-like modifier.
995
+ - Nenne einen Vertreter der Tyrosinkinasen. A: Protein-Tyrosinkinase (PTK)
996
+ - Nenne 4 verschiedene Gentypen, die die RNA Polymerase III transkribiert! A: tRNA, 5S rRNA, 7SL RNA, U6sn RNA.
997
+ - AraB, AraA, AraD kodieren für ... (jeweils)? A: (1) L-Ribulokinase (2) L-Arabinose-Isomerase (3) L-Ribulose-5-phosphat-4-Epimerase
998
+ - Woran bindet SP1? A: An GC-Boxen.
999
+ - Wie wirkt cAMP bei Eukaryoten? A: Indirekt, über Protein-Kinase A.
1000
+ - Wie geht die CRE Sequenz? A: 5-Strich TGACGTCA
1001
+ - Ab welchem Zeitpunkt kann man sagen, das die Polymerase dem Promoter entflohen ("escaped") ist? A: Nachdem sie 10 Nukleotide synthetisiert hat.
1002
+ - CREB gehört zu welcher Familie? A: ATF-1 (Activating Transcription Factor 1)
1003
+ - Woher stammt meistens das P für die Proteinkinasen? A: Meistens aus ATP.
1004
+ - TBP ist Bestandteil welchen Komplexes bei RNA-Polymerasen III Genen? A: TFIIIB.
1005
+ - 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.
1006
+ - Welches Enzym stellt das korrekte 3-Strich CCA Ende bei tRNA her? A: tRNA Nucleotidyltransferase.
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)