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,92 @@
1
+ # =========================================================================== #
2
+ # === Endospores and Spores
3
+ #
4
+ # This is a subtopic of microbiology, but in theory we can store any
5
+ # kind of information related to sustaining life.
6
+ # =========================================================================== #
7
+
8
+ - Name one reason why endospores are so <one>heat-resistent</one>. A: They are <two>very deprived of water</two> (aka <one>low water content</one>). []
9
+ - Name <one>the four different sigma factors used in endospore development in Bacillus subtilis</one>. A: (E,F,G,K) (1) "sigmafactor-E" (2) "sigmafactor-F" (3) "sigmafactor-G" (4) <one>sigmafactor-K</one>
10
+ - If we wish to <orange>find</orange> a <one>sporulation protein</one>, for applying a dye onto it, in order to "perform fluoresence microscopy" - where could we look for such a protein? We could look at <one>a protein in the spore coat</one>.
11
+ - Name <one>three different ways</one> how <two>endospore formation</two> is triggered in "Bacillus subtilis". A: (1) <one>starvation</one> (2) <one>desiccation</one> (3) <one>growth-inhibitory temperatures</one>
12
+ - Is <one>sporulation</one> initiated automatically upon <two>nutrient limitation</two>? No. []
13
+ - <one>Endosporenbildung</one>: sehen wir dies eher bei gram-positiven oder bei gram-negativen Bakterien? Bei gram-positiven Bakterien.
14
+ - <one>Compare the water content</one> of <two>an endospore</two> to the <two>vegetative cell</two>. A: The endospore has only about <one>10-25% of the water content</one> compared to a vegetative cell.
15
+ - Eine <one>Endospore</one> verwandelt sich in eine vegetative Zelle. Welche 3 Schritte sind hierzu notwendig? (1) <one>Aktivierung</one> (2) "Keimung" (3) "Auswachsen"
16
+ - Die <one>Kinasen</one>, die bei der Endosporenbildung zum Einsatz kommen, werden reguliert durch ... welche drei Punkte? (1) <one>Phosphatasen</one> (2) den "ATP-Gehalt der Zelle" (3) eine "aktive Chromosomen-Replikation"
17
+ - Nenne einen <one>aeroben Sporenbildner</one>. A: <deepskyblue>Bacillus thuringiensis</deepskyblue>.
18
+ - <one>Endospores</one> are extremely resistant to ... which 3 aspects? (1) "heat" (2) "harsh chemicals" (3) <one>radiation</one>
19
+ - Welcher Organismus bildet <one>Chlamydosporen</one> aus? <one>Candida albicans</one>.
20
+ - Name the 4 sigma factors that control spore formation in <tomato>Bacillus subtilis</tomato>. A: Sigmafactors E/K and F/G.
21
+ - In which stage does "<u>septation</u>" occur of an Endospore? In <deepskyblue>stage II</deepskyblue> - thus very early.
22
+ - Which 3 steps are required to <orange>reactivate a dormant endospore</orange>? (1) Activation (2) Germination (3) Outgrowth
23
+ - Bevor es zur Endosporenbildung kommt muss was innerhalb der bakteriellen Zelle geschehen? Das "bakterielle Chromosom" muss repliziert worden sein.
24
+ - Nenne <violet>zwei allgemeine Beispiele</violet> für Bakterien die "Endosporen" verwenden. A: (1) "Clostridium" (2) "Bacillus"
25
+ - Nenne zwei Sigmafaktoren in der "Vorspore von Bacillus subtilis". A: (1) <tomato>Sigma-F</tomato> (2) <tomato>Sigma-G</tomato> URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC239352/
26
+ - Der Name "<u>Dipicolinsäure</u>" deutet auf welche charakteristische, chemische Besonderheit hin? Auf "2x COOH Gruppen"; bei Ladung sind diese Gruppen COO- die dann mit Ca 2+ komplexieren können.
27
+ - Was lässt sich zum <violet>pH Wert</violet> von Endosporen festhalten? Das "Core der Endospore" hat einen pH-Wert der "um eine Einheit niedriger" ist als der pH der vegetativen Zelle im Cytoplasma.
28
+ - In <violet>Endospore formation</violet>, in which stage will the chromosomes of the mother cell disintegrate? In "stage IV" ("<u>stage 4</u>").
29
+ - Wie sieht die "Dipicocolinsäure", die wir in "Endosporen" finden können, aus? Es ist ein "Benzenring" mit einem N-Atom, sowie 2x COO- Gruppen an den Seiten (<tomato>im geladenen Zustand</tomato>; ansonsten natürlich <cadetblue>COOH</cadetblue>).
30
+ - Bilden alle Endosporenbildenden Bakterien ein "Exosporium" aus? Nein. URL: https://en.wikipedia.org/wiki/Exosporium
31
+ - The "SASPs" in an endospore not only protect the DNA, but also have which other useful function? They may serve as a <tomato>carbon source</tomato> and an <tomato>energy source</tomato> during germination (= <dodgerblue>outgrowth</dodgerblue>).
32
+ - "<u>Endospore formation</u>" is usually preceded by which other "cellular mechanism"? "<u>Cellular cannibalism</u>". URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4451673/
33
+ - Die "Endospore" enthält viel an welcher Substanz? "<u>Calciumdipicolinat</u>".
34
+ - Wir isolieren ein unbekanntes Bakterium, das in Form einer <orange>Endospore</orange> vorliegt. Welche Vorraussage können wir bezüglich des Genoms dieses Bakteriums treffen? Es hat einen <tomato>niedrigen G+C Gehalt</tomato> - und ist wohl ein "gram-positives Bakterium".
35
+ - Damit sich eine Endospore ausbilden kann, muss (abgesehen von ungünstigen Umweltbedingungen) welche Bedingung erfüllt sein? Es müssen viele Bakterien vorhanden sein; praktisch eine "bakterielle Überbevölkerung".
36
+ - Die <orange>Sporenhülle einer Endospore</orange> ist reich an welcher der 20 regulären Aminosäuren? "<u>Cystein</u>".
37
+ - Können <tomato>Endosporen</tomato> rasch reaktiviert werden? Ja, sogar bereits "<u>innerhalb einiger Minuten</u>".
38
+ - Bei der Sporulation in gram-positiven Bakterien ist oft die Dipicolinsäure wichtig. Wieviele <tomato>N-Atome</tomato> hat diese Substanz? Ein <tomato>N-Atom</tomato>. URL: https://en.wikipedia.org/wiki/Dipicolinic_acid
39
+ - What is the most important acid in an endospore? The "<u>dipicolinic acid</u>". URL: https://en.wikipedia.org/wiki/Dipicolinic_acid
40
+ - How do we call the "genetic wake-up programm" of an Endospore. A: "<u>Germination</u>".
41
+ - Welche Ionen sind wichtig für die "Endosporenbildung"? <cadetblue>Ca2+-Ionen</cadetblue>.
42
+ - Die reifen Endosporen werden wie freigesetzt? Durch "<u>Autolyse der Mutterzelle</u>".
43
+ - Welche Bakteriengruppe neigt zur "<u>Endosporenbildung</u>"? "<u>Grampositive Bakterien</u>" (<tomato>gram+</tomato>).
44
+ - Eine Endospore besteht aus welchen 3 Teilen? (<tomato>3xC</tomato>) (1) "Core" (2) "Cortex" (3) "Coat"
45
+ - In "endospore formation", <tomato>SpoOA</tomato> first activates which sigmafactor in the cell that will become the (future) endospore? "<u>Sigma-F</u>".
46
+ - Eine "<u>Endospore</u>" hat einen hohen Gehalt an welchem Atom? "<u>Calcium</u>" (<cadetblue>Ca 2+-Ionen</cadetblue>).
47
+ - What is characteristic for the "outgrowth" step of endospore-activation? Size increase and swelling due to <cadetblue>water uptake</cadetblue>.
48
+ - 3 Möglichkeiten wo die Endospore <tomato>lokalisiert</tomato> ist? Terminal, subterminal, zentral.
49
+ - What is an "<u>endospore</u>"? This is <crimson>a spore formed inside a mother cell</crimson>, in certain bacteria.
50
+ - Do actively growing cells "<u>sporulate</u>"? <crimson>No</crimson>; only when the <tomato>conditions</tomato> are unfavourable, such as during "nutrient starvation".
51
+ - Are endospores vulnerable to <violet>lysozyme</violet>? No, they are resistant to lysozyme.
52
+ - Wie viele N-Atome hat die "<u>Dipicolinsäure</u>"? 1 N Atom.
53
+ - How is "Endospore formation" triggered? Usually by "<u>a lack of nutrients</u>".
54
+ - How can we "<u>discover endospores</u>" via "phase-contrast microscopy"? "<u>Endospores will appear significantly brighter</u>".
55
+ - In Endospore formation, when is "dipicolinic acid" synthesized? In "stage VI" (<tomato>stage 6</tomato>).
56
+ - The protein ywdL has been identified in Bacillus cereus as important for exosporium formation. Deletion of the ywdl gene leads to a fragile and easily damaged exosporium. Will such a modified strain respond to calcium dipicolinate? No. This would <crimson>not</crimson> induce germination.
57
+ - Name a "characteristic substance" that can be found in Endospores. A: "<u>Dipicolinic acid</u>". URL: https://en.wikipedia.org/wiki/Dipicolinic_acid
58
+ - <orange>Gram-positive bacteria</orange> may form endospores, as a survival strategy. Can we something simple, in general, about the genome of such bacteria? They tend to have a <lightgreen>low GC content</lightgreen>.
59
+ - Name a bacterium with a <tomato>subterminal endospore</tomato>. A: "<u>Bacillus subtilis</u>".
60
+ - Bei einer "Endospore", was heisst <violet>SASP</violet>? "<u>Small acid-solube spore proteins</u>".
61
+ - How do we call "the process of endospore formation"? "<u>Sporulation</u>".
62
+ - Name two representatives of the <violet>Bacillus species</violet> that form endospores. A: (1) <tomato>Bacillus cereus</tomato> (2) <tomato>Bacillus anthracis</tomato>
63
+ - Ab welcher Phase bei der "Endosporen-Bildung" kommt es zur "beginnenden Dehydrierung"? Ab "<u>Phase IV</u>".
64
+ - Give a general example for <tomato>Exosporium proteins</tomato>. A: The <deepskyblue>Cot protein</deepskyblue>.
65
+ - Das <crimson>Core</crimson> einer reifen <tomato>Endospore</tomato> ist in was für einem Zustand? In einem "dehydratisierten Zustand".
66
+ - Die zwei bestuntersuchtesten Bakterien bezüglich Endosporen sind ...? "Bacillus" und "Clostridium".
67
+ - Can <orange>Endospores</orange> be found in water? Yes, of course. They may survive there for long periods of time.
68
+ - <orange>Sporulation in Bacillus</orange> requires how many "spore-specific genes"? About <lightgreen>200</lightgreen>.
69
+ - Name three distinct morphological <violet>spore types</violet>. A: (1) "terminal spores" (2) "subterminal spores" (3) "central spores"
70
+ - Der "Cortex einer Endospore" bildet sich in welcher Phase (Stage) aus? <tomato>Stage VII</tomato>.
71
+ - Eine "<u>Endospore</u>" konvertiert in eine vegetative Zelle. Welche 3 Stufen umfasst dies (auf deutsch)? (1) "Aktivierung" (2) "Keimung" (3) "Auswachsen"
72
+ - In which stage does the "<u>prespore</u>" form, during sporulation of an endospore? In <tomato>stage II</tomato>.
73
+ - Welche Bakterien bilden Endosporen? Nur "<u>gram-positive Bakterien</u>". (Mnemonic: <orange>E. coli</orange> ist gram-negativ und bildet <crimson>keine</crimson> Endosporen.)
74
+ - What is the major trigger for the formation of an Endospore? "<u>Nutrient starvation</u>".
75
+ - <tomato>Heat record</tomato> for bacterial endospores? Up to "150°C".
76
+ - In <orange>endospore formation</orange> in Bacillus subtilis, at which stage does the "asymmetric cell division" begin? At "stage II".
77
+ - "Endospore development" requires "n different sigma factors", in "<u>Bacillus subtilis</u>"? <tomato>5</tomato>.
78
+ - Die Keimfähigkeit der Endsporen von Bakterien ist pH-abhängig? Ja - im "sauren Milieu" vermögen sie nicht zu keimen.
79
+ - Äusserster Teil der Endospore? Dies ist das "<u>Exosporium</u>". URL: https://en.wikipedia.org/wiki/Exosporium
80
+ - Name <palevioletred>an important component</palevioletred> of the classical "endospore-staining protocol". A: "<u>Malachite green</u>".
81
+ - Name proteins that we can find in an endospore. A: The "<u>small acid-soluble proteins</u>" ("SASPs"). URL: https://en.wikipedia.org/wiki/Endospore#Structure
82
+ - Wie kann die "<u>Dipicocolinsäure</u>" stabilisiert werden? Durch <lightskyblue>Ca 2+ Ionen</lightskyblue>.
83
+ - "Endospore formation" occurs in which gram bacteria? In "gram-positive bacteria". (<tomato>Bacillus</tomato> is gram-positive too.)
84
+ - Wieviele <tomato>Ascosporen</tomato> produziert <royalblue>Neurospora</royalblue>? 8.
85
+ - Sporenfärbung nach ...? Sporenfärbung nach "<u>Rakette</u>". URL: http://www.aeisner.de/methoden/farb74.html
86
+ - Some bacteria can enter sporulation, but they may also make which two prior decisions? (1) The <orange>decision to wait</orange> (aka delay sporulation) (2) The <orange>decision to escape into competence</orange> (and take up DNA)
87
+ - Warum triggered die Zugabe von "<u>Mangan</u>" die Endosporenbildung? Mangan ist <orange>ein essenzieller Kofaktor vieler Enzyme</orange>. Zudem kann es zu Konformationsänderungen in der Sekundärstruktur der RNA kommen. Die Zelle wird dadurch einem Stress ausgesetzt. Dieser Stress führt zur Einleitung der Endosporenbildung. Dies ist der Grund, wieso "Sporulation Agar" Mangan aufweisen. (Mangan ist auch in natürlichen Böden enthalten.) URL: https://www.researchgate.net/post/what_are_the_methods_used_to_understand_the_interaction_of_spore_with_medium
88
+ - Name the five bacterial <crimson>endospore layers</crimson>. A: (1) exosporium (2) spore coat (3) core wall (4) cortex (5) DNA
89
+ - Which bacteria group can produce endospores? Only a few "<u>gram-positive bacteria</u>".
90
+ - Why is the endospore not a "<u>true spore</u>"? Because it is "<u>not an offspring</u>".
91
+ - Wieso verwendet Candida albicans eine "Chlamydospore"? Diese dient der "Überdauerung des Organismus".
92
+ - Name 3 different conditions that may "trigger Endospore-Formation" in bacteria. A: (1) heat (2) dryness (3) nutrient limitation
@@ -0,0 +1,327 @@
1
+ # =========================================================================== #
2
+ # === ENZYMES
3
+ #
4
+ # All about the enzymes. Enzyme tag, Enzymes tag. ee tag. Enzyme tag.
5
+ # Enz tag. Enzym tag.
6
+ #
7
+ # This also includes methods for creating new enzymes.
8
+ # =========================================================================== #
9
+
10
+ - Die "Pyruvat-Decarboxylase" gehört zu ... welcher Familie? Zu den <one>Lyasen</one>.
11
+ - Aminotransferasen enthalten welchen Cofaktor? <one>Pyridoxalphosphat</one>.
12
+ - Was meinen wir mit den <one>Dehydrogenasen</one>? Dies sind <two>Enzyme</two>, die <one>Wasserstoffatome aus dem Substrat entfernen</one> beziehungsweise abspalten.
13
+ - Input/Output of the enzyme <one>adenylyl cyclase</one>? (1) Input: <one>ATP</one> (2) Output: <one>cAMP</one> URL: https://en.wikipedia.org/wiki/Adenylyl_cyclase []
14
+ - Welche Enzyme sind für das AB0-Blutgruppensystem des Menschen hauptverantwortlich? Die <one>Glykosyltransferasen</one>.
15
+ - In Bezug auf Enzyme: was meinen wir mit <one>recyclable shuttles</one>? Zum Beispiel "Co-Enzyme", die während der Reaktion verändert werden und im Anschluss regeneriert werden müssen.
16
+ - Can there be <one>several transition states during an enzymatic reaction</one>? Yes. []
17
+ - Name a functional difference between the <one>Hexokinase</one> and the "Glucokinase". A: The Hexokinases transfer phosphoryl groups onto hexoses; the Glukokinase on the other hand transfers phosphoryl groups only onto D-Glucose.
18
+ - Nenne je ein Enzym für <one>Oxidoreduktasen</one>, Transferasen, Hydrolasen, Lyasen, Isomerasen, Ligasen. A: (1) Lactat-Dehydrogenase (2) Alanin-Transaminase (3) Pyrophosphatase (4) Pyruvat-Decarboxylase (5) Alanin-Racemase (6) <one>Glutamin-Synthetase</one>
19
+ - Welche Reaktion katalysiert die <one>Triosephosphatisomerase</one>? A: Die Konvertierung von "Dihydroxyacetonphosphat" zu "Glycerinaldehyd-3-Phosphat" (GAP).
20
+ - How do we call <one>the states in an enzyme reaction</one>? (1) <one>ground state</one> (2) <one>transition state</one>
21
+ - Nenne ein Enzym das NO quasi als <one>Abfallprodukt</one> produziert. A: Die <one>NO-Synthase</one>.
22
+ - Was machen die <one>Aminopeptidasen</one>? Aminopeptidasen verdauen Proteine vom aminoterminalen Ende her.
23
+ - The enzyme <one>luciferase</one> consists of how many subunits typically? It is a <one>heterodimer</one>, composed of α and β subunits that are encoded by luxA and luxB, respectively.
24
+ - Nenne ein Enzym, das "Acetyl-CoA" erzeugt. A: Die <one>Pyruvat-Dehydrogenase</one>.
25
+ - Nenne <one>eine Lyase</one>, die mit dem Buchstaben "A" beginnt! A: <one>Aldolase</one>.
26
+ - What is an <one>esterase</one>? An esterase is a hydrolase enzyme that splits esters into an acid and an alcohol in a chemical reaction with water called hydrolysis. URL: https://en.wikipedia.org/wiki/Esterase
27
+ - Eine vollständige Liste aller Enzyme finden wir wo? In <one>BRENDA</one> (<two>Comprehensive Enzyme Information System</two>). URL: https://www.brenda-enzymes.org/ []
28
+ - Nenne 3 katalytische wirkende Coenzyme des <one>Pyruvat-Dehydrogenase</one> Komplexes. A: FAD, Liponsäure, <one>TPP</one>.
29
+ - Was macht das Enzym <one>Polygalacturonase</one> (PG)? Baut das Pectin pflanzlicher Zellwände ab.
30
+ - Nenne ein Enzym das <one>Dextran</one> herstellt. A: Die <one>Dextran-Saccharase</one>.
31
+ - What is a <one>theozyme</one>? A theozyme is a theoretical enzyme - typically one that was computationally engineered.
32
+ - Nenne ein Enzym, in dem die seltene Aminosäure <one>Selenocystein</one> gefunden werden kann. A: Die <one>Glutathione Peroxidase</one>.
33
+ - Name the two substrates that the enzyme <one>pyranose oxidase</one> requires. A: (1) <one>D-glucose</one> (2) <one>O2</one>
34
+ - Why do <one>monooxygenases</one>, such as the P450 isoenzyme family, need the heme groupe? Because the molecular O2 attaches to the heme group; the <one>Fe atom</one> there.
35
+ - The <one>P450 monooxygenases</one> contain which factor? A <one>heme group</one>.
36
+ - On their given substrate, <one>natural enzymes stabilize</one> ... ? The <one>transition state</one>.
37
+ - In enzyme kinetics: which <one>k-value</one> comes between <two>ES</two> and <two>E+P</two>? <one>kcat</one>
38
+ - Give another word for the <one>man-made design and evolution of enzyme</one>. A: <one>Enzyme engineering</one>.
39
+ - Which formula may describe the <one>catalytic efficiency of an enzyme</one>? <one>kcat</one> / <one>Km</one>
40
+ - In <one>enzyme kinetics<one>: what is <two>Vmax</two>? This is a measure of how well an enzyme binds to a given substrate.
41
+ - Name three k-values that are important for enzyme kinetics. A: (1) k1 (2) k2 (3) kcat
42
+ - Nenne zwei Enzyme die <one>Ammoniak</one> einbauen. A: (1) Glutamat-Dehydrogenase (2) <one>Glutamin-Synthetase</one>
43
+ - Welche Enzyme können eine Verseifung (=Hydrolyse eines Esters) durchführen? Die <one>Esterasen</one>.
44
+ - Welche Enzyme ermöglichen einen <one>Seitenwechsel</one>? <one>Flippasen</one>. URL: https://en.wikipedia.org/wiki/Flippase
45
+ - Give one general example for a "phosphorylase". A: The <one>Glycosyltransferases</one>.
46
+ - Welche Aminosäure ist im aktiven Zentrum der <one>Topoisomerasen</one> zu finden? <one>Tyrosin</one>.
47
+ - Nenne zwei Vertreter der <one>Serinproteasen</one>. A: (1) Trypsin (2) <one>Chymotrypsin</one>
48
+ - Enzymtyp <one>Thrombin</one>? Thrombin ist eine <one>Protease</one>.
49
+ - Enzymes that catalyze the addition of "deoxynucleotides" are called ... ? "DNA polymerases".
50
+ - Welche Enzyme bilden "ungesättigte Fettsäuren"? Die <one>terminalen Desaturasen</one>.
51
+ - Wie viele Untereinheiten hat das Enzym <one>Glutamin-Synthetase</one> aus E. coli? <one>12</one>.
52
+ - Die <one>Pyruvat-Decarboxylase</one> gehört zu welcher Enzymklasse? Sie gehört zu den <one>Lyasen</one>.
53
+ - Die <one>Pyruvat-Carboxylase</one> synthetisiert welche Substanz? <one>Oxalacetat</one>.
54
+ - Was machen <one>Transferasen</one>? <one>Transfer funktioneller Gruppen</one>.
55
+ - Anderer Begriff für die <one>Substratbindungsstelle eines Enzyms</one>? A: <one>Aktives Zentrum</one>.
56
+ - Andere Bezeichnung für einen <one>ES-Komplex</one> (Enzym-Substrat Komplex)? <one>Michaelis-Komplex</one>. URL: http://www.spektrum.de/lexikon/biochemie/michaelis-menten-kinetik/3971
57
+ - Ist <one>Km</one> (die Michaelis-Menten Konstante) ein Maß für die Affinität eines Enzyms für sein Substrat? Ja.
58
+ - Nenne das wichtigste <one>Zink-enthaltende Enzym</one> im menschlichen Körper. A: Die <one>Carboanhydrase</one>.
59
+ - Welches Enzym modifiziert <one>PPT</one>? Die <one>PPT-Acetyltransferase</one>.
60
+ - Welches Enzym hydratisiert <one>Kohlendioxid</one>? Die <one>Carboanhydrase</one>.
61
+ - Was genau machen <one>Desaturasen</one>? Sie übertragen Elektronen von einem Molekül auf ein anderes. Das Substrat wird dabei "entsättigt", sprich - <one>eine Mehrfachbindung wird eingebaut</one>.
62
+ - Give another term for <one>old, yellow enzyme</one>. A: <one>Flavoprotein-NADH-Oxidase</one>.
63
+ - <one>Plasmin</one> ist ein Enzym. Zu welcher Enzymgruppe genau gehört es? Zu der <one>Gruppe der Peptidasen</one>. URL: https://de.wikipedia.org/wiki/Plasmin
64
+ - Wie heißen die Enzyme, die <one>Fettsäuren</one> spalten können? <one>Lipasen</one>.
65
+ - Die <one>Aconitase</one> erzeugt (letzten Endes) Isocitrat. Was eliminiert sie bei ihrer katalytischen Reaktion? Wasser.
66
+ - <one>6-Mercaptopurine</one> wird von welchem Enzym metabolisiert? Thiopurine Methyltransferase.
67
+ - <one>Kinasen</one> benötigen welches Metall-Ion? Sie benötigen ein <one>Magnesium-Ion</one>.
68
+ - The <one>Cytochrome P450</one> (CYPs) family of enzymes contains which cofactor? <one>Heme</one>.
69
+ - Das "Anti-Skorbut Enzym" ist ... ? Die <one>Gulonolacton-Oxidase</one>.
70
+ - Was ist eine <one>Amidase</tomat>? Eine Amidase ist ein Enzym das die Hydrolyiserung von Amiden katalysiert.
71
+ - Können <one>enzymatisch katalysierte Reaktionen</one> reversibel sein? Ja.
72
+ - Was macht die Glykogenphosphorylase? Sie setzt Zuckereinheiten aus dem Energiespeicher <one>Glykogen</one> frei.
73
+ - Ein-Substrat-Reaktionen sind meistens ... ? Isomerisierungen.
74
+ - Können wir die Michaelis-Menten Gleichung auch praktisch einsetzen? Ja, zum Beispiel zur <orange>Konzentrationsbestimmung eines Enzyms</orange>.
75
+ - Die Geschwindigkeit der Gesamtreaktion zwischen E+S hängt von welchen zwei Konzentrationen ab? (1) <orange>Konzentration des Substrat</orange> (2) <orange>Konzentration des Katalysator</orange> (also des Enzyms)
76
+ - Die <orange>Kinasen</orange> zählen zu welcher Enzymklasse? "Transferasen".
77
+ - Which metal does the enzyme <orange>carbonic anhydrase</orange> require in its active site? "Zinc".
78
+ - Which enzyme may typically be meant with the abbreviation "<u>MMP</u>"? A <one>Matrix metalloproteinase</one>.
79
+ - The new EC class proposed, EC 7, is for the ... ? "Translocases".
80
+ - In regards to enzymes, what organization is displayed by the abbreviation "EFI"? This is the "Enzyme Function Initiative".
81
+ - Das Enzym "Carboanhydrase" benötigt als Cofaktor welches Metall-Ion? Ein "Zink-Ion". URL: https://de.wikipedia.org/wiki/%CE%91-Carboanhydrasen
82
+ - Früher wurden die Enzyme auch als ... bezeichnet. A: "Fermente".
83
+ - Welche Enzymklasse führt eine "<ud>Eliminierungsreaktion</ud>" durch? "Lyasen".
84
+ - Prosthetische Gruppe bei der "<ud>Pyruvat Carboxylase</ud>"? "Biotin".
85
+ - Most phosphonate natural products share a common first biosynthetic step - the rearrangement of phosphoenol pyruvate (PEP) to phosphonopyruvate (PnPy), catalyzed by ... which enzyme? The "PEP-mutase".
86
+ - Nenne zwei Beispiele für "Ligasen", die die "Knüpfung von Bindungen" katalysieren. A: (1) "DNA-Ligase" (2) "DNA-Polymerase"
87
+ - What does the name "phosphotransferase" indicate? That this enzyme catalyzes the transfer of a phosphoryl group from ATP to "Glucose".
88
+ - "Restriktionsenzyme" zählen allgemein zu welcher Enzymklasse? Sie zählen zu den "Hydrolasen".
89
+ - Why are "active site residues" of an enzyme family usually conserved? Because they are responsible for the "catalytic function".
90
+ - Was machen "Isomerasen", kurz formuliert? Intramolekulare Gruppenübertragungen - also "Transfer von Gruppen innerhalb von Molekülen".
91
+ - Es gibt Enzyme, die "Kinasen" genannt werden. Gib eine etwas längere Bezeichnung an für "Kinasen". A: "Proteinkinasen".
92
+ - Allgemein, wie werden "Hexokinasen" gehemmt? Sie werden durch ihr Endprodukt gehemmt.
93
+ - Welches Enzym konvertiert "Glycerin" -> "Glycerin-3-phosphat"? Die "Glycerin-Kinase".
94
+ - Hexokinase-Isozymes are typically "allosterically inhibited" by ...? By their product, "glucose-6-phosphate".
95
+ - Die "Glucokinase" führt welche Reaktion durch? Glucose -> Glucose-6-phosphat.
96
+ - "Oxidoreduktasen" haben welche prosthetische Gruppe? FAD oder FMN.
97
+ - SAM wird als Cofaktor welcher Enzymklasse benötigt? EC 2: Transferasen.
98
+ - Was sind "Oxygenasen"? Enzyme die den Einbau von Sauerstoff, aus O2, in organische Verbindungen katalysieren.
99
+ - Nenne eine sehr bekannte Aspartatprotease ("aspartic protease"), die im Jahr 1825 entdeckt wude. A: "Pepsin". URL: https://en.wikipedia.org/wiki/Pepsin
100
+ - Was ist der Cofaktor bei der "Lactat-Dehydrogenase"? "NAD+".
101
+ - Enzymes stabilize which state? The "transition state". URL: http://education.seattlepi.com/enzymes-lower-transition-state-4735.html
102
+ - Was ist praktisch das Gegenteil einer "Substratsättigung"? Die "Substratuntersättigung".
103
+ - Wie geht die "ultimative Enzym-Formel"? "E+S <--> [ES] <--> [EP] <--> E+P".
104
+ - Welches Enzym, also dessen Trivialname, ist "EC 1.1.1.1"? Dies ist die "Alkohol-Dehydrogenase", eine "Oxidoreduktase".
105
+ - Die EC Nummer, also "Enzyme Commission" oder "Enyme class", hat wieviele relevante Stellen? "4".
106
+ - Was ist das "schnellste Enzym" überhaupt? Die Carboanhydrase". Sie setzt 10 Moleküle Substrat pro Sekunde um.
107
+ - Gegeben ist das Enzym "Aconitase". Nach der IUPC ist das nicht der systematische Name. Wie geht der systematische Name von Aconitase? "Aconitat-Hydratase".
108
+ - Was meinen wir mit "breathing core" bei dem "Pyruvat-Dehydrogenase Komplex"? Das der Kern dieses Enzyms relativ flexibel ist und seine Größe um bis zu 20% verändern kann.
109
+ - Welches Enzym, konvertiert 3-Phosphoglycerat zu 2-Phosphoglycerat? Die "Phosphoglycerate-Mutase". URL: https://en.wikipedia.org/wiki/Phosphoglycerate_mutase
110
+ - Enzymtyp der "Enteropeptidasen"? Sie sind "Proteasen". URL: https://de.wikipedia.org/wiki/Enteropeptidase
111
+ - Die "Aconitase" enthält welche zwei Metalle? Dieses "Eisen-Schwefel Protein" enthält: (1) "Eisen" (2) "Schwefel
112
+ - Die "Carbamoylphosphat-Synthetase" kommt, zumindest beim Menschen, in wievielen Varianten vor? In zwei Varianten.
113
+ - Nenne ein Enzym das Glucose zu Fructose isomerisieren kann. A: "Xylose-Isomerase".
114
+ - Die "Carbamoylphosphat-Synthetasen" sind Enyzme aus welcher Enyzm-Gruppe? "Ligasen".
115
+ - Wie können wir, einfach formuliert, "Reaktionsmechanismen von Enzymen" untersuchen? Mit Hilfe sogenannter "Inhibitorstudien". URL: https://www.ncbi.nlm.nih.gov/pubmed/11325042
116
+ - Was meinen wir mit "Nebenaktivitäten" eines Enzyms? Dies ist bei manchen Enzymen der Fall, wenn diese auch andere Substrate als das eigentliche "Hauptsubstrat" umsetzen.
117
+ - Welche Krankheit manifestiert sich bei zu wenig "Vitamin B1"? Die "Beri-Beri Krankheit".
118
+ - Benötigt die "Lactate-Dehydrogenase" ein Coenzzym? Ja, und zwar "NADH".
119
+ - Nenne ein Enzym das "Cholesterin" verkleinern kann. A: Die "Cholesterin-Oxidase".
120
+ - Which enzyme breaks down Glycogen into Glucose? The enzyme "glycogen phosphorylase".
121
+ - Die "Cytochrom-Oxidase" mag welches Metall? "Kupfer".
122
+ - Was machen "Mechanoenzyme"? Sie konvertieren Energie aus der "ATP-Hydrolyse" - also chemischer Energie - in mechanische Energie um, im Zuge einer Kontraktion (also mechanische Arbeit).
123
+ - Enzyme, die mittels Phosphat eine Bindung spalten, nennt man ... ? "Phosphorylasen".
124
+ - Dehydrogenasen gehören zu welcher Gruppe? Sie gehören zu den "Oxidoreduktasen".
125
+ - What is the fastest known enzyme today (2018)? "Carbonic anhydrase". URL: https://en.wikipedia.org/wiki/Carbonic_anhydrase
126
+ - Was ist die einfachste Regulationsform bei Enzymen? Die "Produkthemmung".
127
+ - Die "Aldolase" konvertiert Fructose-1,6 bisphosphat in? Glycerinaldehyd-3P und Dihydroxyaceton.
128
+ - Vor allem welche Enzymgruppe verwendet "Riboflavin"? Die Oxidoreduktasen, über FMN/FAD.
129
+ - Biotin ist ein Kofaktor der ... ? Acetyl-CoA-Carboxylase.
130
+ - Besitzen Menschen die "Acetyl-CoA-Synthetase"? Ja.
131
+ - Das Cosubstrat der GADPDH ist ...? NAD+.
132
+ - The enzyme "adenylate kinase" does perform which reaction? 2 ADP -> AMP + ATP. (BUT CHECK THiS ON WIKIPEDIA).
133
+ - Nenne 1 Enzym, das Ammoniak direkt in Glutamat einbauen kann. A: Die "Glutamin-Synthetase". URL: https://de.wikipedia.org/wiki/Glutamat-Ammonium-Ligase
134
+ - Das Enzym "Fumarase" erzeugt ...? Malat. URL: https://en.wikipedia.org/wiki/Fumarase
135
+ - Was für Enzymgruppen erkennen PEST-Sequenzen? Vor allem "proteolytische Enzyme".
136
+ - Wieso können wir NADH und NADPH benutzen, um die Enzymakvitität zu bestimmen, zumindest mancher Enzyme? NADH/NADPH wirken auch als Coenzyme und im Gegensatz zu den oxidierten formen, also NAD+ und NADP+, erreichen sie bei 340 nm ein Absorptionsmaximum.
137
+ - Nenne 1 prominente Enzymgruppe, die auf die "Säure-Base-Katalyse" setzt. A: Proteolytische Enzyme.
138
+ - Temperaturoptima mesophiler Enzyme? Bei etwa 37°C.
139
+ - Input / Output der "Tryptophanase"? (1) I: Tryptophan (2) O: Indole
140
+ - What is the enzyme "Aspartokinase" doing? It catalyzes the phosphorylation of the amino acid "aspartate".
141
+ - Flavin-Koenyzme (FAD, FMN) sind vor allem in welcher Enzymgruppe wichtig? Nenne auch ein Beispiel hierzu. A: Oxidoruktasen, wie die "NADH-Dehydrogenase".
142
+ - Welches Enzym nimmt GTP+ADP und erzeugt so ATP (und GDP)? Die "Nucleosiddiphosphat-Kinase".
143
+ - FAD als prosthetische Gruppe findet man vor allem bei welcher Enzymklasse? Bei den "Dehydrogenasen".
144
+ - TPP (Thiaminpyrophosphat) finde ich als prosthetische Gruppe in welchem Enzym? In der "Transketolase".
145
+ - Sind Enzyme nett zu ihren Substraten? Nein. Sie "schränken deren Translations- und Rotationsbewegungen ein". (Dies ist wichtig für den Übergangszustand.)
146
+ - In der praktischen Enzymologie, wieso mögen wir eine "pH-Kurve" erstellen mögen? Dadurch können wir zum Beispiel den "optimalen pH-Wert" ermitteln.
147
+ - Statine inhibieren welches Enzym? Die "HMG-CoA-Reduktase", die in der menschlichen Cholesterinsynthese wichtig ist.
148
+ - Die Alkohol-Dehydrogenase hat welches Metall im katalytischen Zentrum? Zink.
149
+ - Input und Output des Enzyms "Adenosin-Desaminase"? (1) Input: Adenosin (2) Output: Inosin
150
+ - Was macht die <one>Aconitase</one>? A: Dieses Enzym aus dem Citratzyklus, konvertiert "Citrat" -> "Isocitrat". URL: https://en.wikipedia.org/wiki/Aconitase
151
+ - Metalloproteases often have what "metal ion" in their active centers? Zinc.
152
+ - Hydrolasen sind eine eigene Enzymklasse, aber eigentlich gehören sie zur Klasse ... ? Der "Hydrolysen". URL: https://de.wikipedia.org/wiki/Hydrolase
153
+ - Nenne 1 funktionellen Unterschied zwischen Enzymen und Ribozymen. A: Enzyme weisen eine wesentlich "höhere Aktivität" als Ribozyme auf.
154
+ - Nenne 2 mit dem PDH-Komplex assoziierte Proteine. A: (1) PDH-Kinase (2) PDH-Phosphatase
155
+ - Nenne die 2 Nebenprodukte des Pyruvat-Dehydrogenase Komplexes. A: (1) CO2 (2) NADH
156
+ - Das Coenzym FAD ist mit welcher Untereinheit des "Pyruvat-Dehydrogenase-Komplexes" assoziiert? Mit "E3".
157
+ - Nenne 2 Cysteinproteasen die mit "C" beginnen. A: (1) Caspasen (2) Cathepsin
158
+ - Energie für die "Phosphoenolpyruvate-Carboxykinase" von ... ? GTP.
159
+ - Was machen die "Peptidyl-Prolyl-cis/trans-Isomerasen"? Sie beschleunigen die Umwandlung zwischen der cis- und der trans-Form der "Prolylpeptidbindung", also cis-Prolin und trans-Prolin.
160
+ - Cyclophiline gehören zur Enzymklasse der ... (genau)? Isomerasen; genauer der "Peptidyl-Prolyl-cis/trans-Isomerasen".
161
+ - Was macht das Enzym "alkalische Phosphatase"? Es entfernt Phosphat-Gruppen (= "Dephosphorylierung"). Dieses Enzym arbeitet am besten bei einem alkalischen pH-Wert. URL: https://de.wikipedia.org/wiki/Alkalische_Phosphatase
162
+ - Welches Enzym konvertiert Phosphoenolpyruvat in Pyruvat? Die "Pyruvat-Kinase".
163
+ - How do we call the enzymes that "hydrolyze glycosidic bonds"? Glycosidases.
164
+ - Die Tyrosinhydroxylase, die L-DOPA aus Tyrosin herstellen kann, verwendet was genau als Cofaktor? "Tetrahydrobiopterin",
165
+ - Nenne 2 Aminosäuren, an denen das Enzym "Elastase" schneiden kann. A: (1) Alanin (2) Serin
166
+ - Was ist eine "Lyase"? Eine Lyase ist ein Enzym, das eine Molekülspaltung katalysieren kann.
167
+ - What are "Phosphorylases"? These are enzymes that catalyze the addition of a phosphate group from an inorganic phosphate to an acceptor.
168
+ - Wo spielt das Enzym "Phosphorylase" eine Rolle? Beim "Abbau von Glykogen".
169
+ - Die Epimerasen gehören zu welcher Enzymklasse? Sie gehören zu den "Isomerasen".
170
+ - Gib ein Beispiel für eine Epimerase. A: Das Enzym "UDP-Glucose-4-Epimerase", welches "UDP-Galactose" in "UDP Glucose" konvertiert.
171
+ - Chymotrypsin gehört zu welcher der 6 Enzymklassen? Es gehört zu den "Hydrolasen".
172
+ - Die "Pyruvat-Decarboxylase" gehört zu welcher Enzymklasse? Zu den "Lyasen".
173
+ - Größte Subklasse der "Oxidoreduktasen" nimmt welche Gruppe ein? Die "Dehydrogenasen".
174
+ - Dehydrogenasen sind ... ? Oxidoreduktasen.
175
+ - Was machen "Lyasen"? Gruppeneliminierungen unter Bildung von Doppelbindungen oder Addition einer Gruppe an eine Doppelbindung.
176
+ - Which enzymes can interconvert enantiomers? Racemases.
177
+ - Kinasen gehören zu welcher Enzymklasse? Kinasen gehören zur Klasse der "Transferasen".
178
+ - Welche Reaktion katalysiert die "Alkohol-Dehydrogenase"? Von Ethanol zu Acetaldehyd.
179
+ - In der Zelle, welches Enzym kann Disulfid-Brücken umlagern? Die "Disulfidisomerase".
180
+ - A. W. für "Aminotransferasen"? Transaminasen.
181
+ - Wieviele Stellen enthält die Klassifikationsnummer der Enzyme? 4.
182
+ - Die Ornithin-Decarboxylase in Säugetieren hat eine Halbwertszeit von ~11 Minuten. Dieses Enzym is an der Synthese von ... beteiligt? Polyamin.
183
+ - Was machen "Oxidoreduktasen"? Transfer von H-Atomen, O-Atomen oder Elektronen zwischen Metaboliten.
184
+ - Was machen "Hydrolasen"? Katalyse hydrolytischer Reaktionen.
185
+ - Was machen "Ligasen"? Knüpfung kovalenter Bindungen unter gleichzeitiger Spaltung von Nucleosidtriphosphaten.
186
+ - Give the archetypical general example for a "Transferase". A: The Kinases.
187
+ - Zu welcher Enzymklasse gehört das Enzym "Galaktose 6-Oxidase" ("GalOx")? Es gehört zu den "Oxidoreduktasen".
188
+ - Merkslogan für die 6 Enzymklassen? OTH-LIL ("Otto-Lyli").
189
+ - Charakteristisch für den "aeroben Abbau von Glukose" ist die Aktivität welchen Enzyms? "Pyruvat-Dehydrogenase".
190
+ - Nenne ein wichtiges "Einbahn-Enzym". A: Die "Pyruvat-Dehydrogenase".
191
+ - Was macht das Enzym "Fumarase" (Angabe des Endprodukts ist ausreichend)? Katalysiert Fumarat + Wasser-> L-Malat (stellt also L-Malat her).
192
+ - Eine "Carboxylase" ist ein Enzym, das mit Hilfe von ... und ATP Carbonat überträgt. A: Biotin.
193
+ - Was machen die "Dehydrogenasen" in der Biochemie? Sie katalysieren die Entfernung von 2 Wasserstoffatomen (2 Protonen + 2 Elektronen).
194
+ - Dehydrogenasen gehören eigentlich zu den ... ? Oxidoreduktasen.
195
+ - n% aller bekannten Enzyme benötigt Metallkationen zum Erreichen ihrer vollen, katalytischen Aktivität? Etwa 25%.
196
+ - The Dehydrogenases are a subclass of ...? Oxidoreductases.
197
+ - TPP in der Transketolase benötigt welche Cofaktor? Mg2+.
198
+ - Was können wir pauschal über Enzyme sagen, deren Aktivität reguliert wird? Ihre Struktur ist komplizierter als die Struktur anderer Enzyme.
199
+ - Name an enzyme that requires NADPH and that is also important for DNA. A: The "ribonucleotide reductase".
200
+ - The enzyme "pyruvate carboxylase" takes Pyruvat as input and yields what substance? Oxalacetate.
201
+ - Nenne 1 Enzym, das überschüssiges Pyruvat aus dem Körper entfernt. A: Die "Lactat-Dehydrogenase".
202
+ - In welchem Enzym mögen wir "Pyrrolysin" finden? In der "Methyltransferase" (in Archaea).
203
+ - Wieviele Konformationen hat das Enzym "Hexokinase"? 2 - eine mit gebundener Glucose, eine ohne gebundene Glucose.
204
+ - "DNA Glycosylases" are classified under which EC number? EC 3.2.2
205
+ - Das Enzym "Muraminidase" hat n Alpha-Helices? 27.
206
+ - Was für ein Enzym katalysiert die Bildung von Phenylpyruvat? Ein bifunktionelles Enzym (Chorismat-Mutase & Prephenat Dehydratase).
207
+ - What is the "net reaction" for the "ATP synthase"? ADP + Pi + 4H <- -> ATP + H2O + 4H+ (matrix)
208
+ - Die "Glutamin-Synthase" hat n Untereinheiten? 12 identische Untereinheiten.
209
+ - Die "Ribonuclease" hat n Disulfidbrücken? 4.
210
+ - Gesamter Output der "Pyruvat-Dehydrogenase"? Acetyl-CoA und CO2.
211
+ - What do "fatty acid desaturase" create? It creates a carbon/carbon double bond.
212
+ - Enzymtyp Katalase? Die Katalase ist eine "Oxidoreduktase".
213
+ - What is an "Endopeptidase"? A proteolytic peptidase that breaks peptide bonds of "nonterminal amino acids".
214
+ - Nenne 1 Enzym der "biotin-dependent carboxylases". A: Acetyl-CoA Carboxylase.
215
+ - A. W. für die "Transketolase"? Glycoaldehyd-Transferase.
216
+ - Input, Output bei der "Pyruvat-Dehydrogenase"? A: Input ist Pyruvat, Output ist Acetyl-CoA.
217
+ - What is the "apoenzyme"? The purely protein component of an enzyme.
218
+ - Wovon sind die Transferasen immer abhängig? Von Coenzymen.
219
+ - Wieviele Isomere hat die "Lactat-Dehydrogenase" im Menschen? 5.
220
+ - Was macht Chymosin? Hydrolysiert Alpha-Kasein der Milch.
221
+ - Was macht die "Glucose-Oxidase"? Konvertiert Glucose und Sauerstoff zu Gluconolacton und Wasserstoffperoxid.
222
+ - Spaltungsreaktionen sind in der Biochemie überwiegend homo- oder heterolytisch? Heterolytisch.
223
+ - Die "Nitratreduktase" von Ecoli akzeptiert Elektronen von ... ? Cytochrom B.
224
+ - Welches Enzym kann Citronensäure abbauen? Aconitase.
225
+ - Nenne 1 Enzym, das Acetaldehyd in Ethanol umwandelt. A: Alkohol-Dehydrogenase.
226
+ - Welches Enzym ist schneller - die Hexokinase IV oder die Hexokinase I? Hexokinase I. Sie ist wichtig für die Regulation der Blutzuckerkonzentration. Das erklärt auch ihre eigenwillige Aktivitätskurve.
227
+ - Welche Rolle in der Zelle erfüllt die AMPK ("AMP-aktivierte Proteinkinase")? Die Aufgabe der AMPK ist es, Zellen vor ATP-Mangel, also einem Energiemangel, zu schützen. Sie ist ein AMP Sensor.
228
+ - What are "Isoenzymes"? These are enzymes that catalyze the same reaction but are subject to different regulatory controls.
229
+ - Wie viele Restriktionsendonucleasen sind bekannt? A: Über 3000. URL: https://en.wikipedia.org/wiki/Restriction_enzyme
230
+ - Was machen "Aminotransferasen"? Aminotransferasen sind Enzyme, welche die Übertragung von Alpha-Aminogruppen von einem Donor- auf ein Akzeptormolekül katalysieren (= "Transaminierung").
231
+ - Ligningspaltende Enzyme sind vor allem in welchen 3 Enzymgruppen zu finden? Häm-Enzyme, Ligninperoxide, Mn-abhängige Peroxidase.
232
+ - Nenne die 5 Koenzyme des Pyruvat-Dehydrogenase Komplexes. A: (1) TPP (2) Lipoat (3) NAD (4) FAD (5) CoA
233
+ - A. W. für "Enzym"? Biokatalysator.
234
+ - Welches Enzym konvertiert Pyruvat zu Lactat? Die "Lactat-Dehydrogenase".
235
+ - How do we call the rate at which an enzyme converts its substrate into product? Velocity (v).
236
+ - Was ist wenn ein Substrat extrem fest an sein Enzym bindet? Dann gibt es so gut wie keine katalytische Aktivität.
237
+ - Was genau macht die "Pyruvate Dehydrogenase"? Transfers an acetyl group from pyruvate to coenzyme A via TPP and dihydroxyliponamid.
238
+ - What is the enzyme "RNase H" doing? It cleaves RNA of a hybrid DNA/RNA strand.
239
+ - A. W. für "Enzyminduktion"! A: Gezielte Synthese von Enzymen.
240
+ - Definiere "Kinases". A: An enzyme that transfers a phosphoryl group from ATP to another substance.
241
+ - A. W. für "Hexokinase"? Glucokinase. Die Glucokinase wird nicht durch Glucose gehemmt.
242
+ - Nenne das Substrat der Peroxidase. A: Wasserstoffperoxid.
243
+ - Welches Enzym konvertiert Ribose zu Desoxyribose? Ribonukleotidreduktase.
244
+ - Glutamat-Dehydrogenase. Input-Output? Input ist Alpha-Ketoglutarat, Output ist Glutamat.
245
+ - Die "Pyruvat-Decarboxylase" erzeugt welches Molekül? Acetaldehyd. URL: https://en.wikipedia.org/wiki/Acetaldehyde
246
+ - Nenne 1 temporären CO2-Carrier der ein Bestandteil einer Carboxylase ist. A: Die Biotinylgruppe bei der "Biotin-Carboxylase".
247
+ - Welches Enzym wurde als erstes kristallisiert? Urease.
248
+ - A. W. für "qualifizierte Enzyme"? Cofaktor.
249
+ - Das Enzym "Lactase" macht was? Spaltet Lactose in Glucose und Galactose.
250
+ - Wann wurde die Xylose-Isomerase entdeckt? 1957.
251
+ - Was sind "Oxidoreduktasen"? Das sind Enzyme, die Redoxreaktionen katalysieren.
252
+ - Coenzyme erhöhen was? Die "Vielfalt der Redoxreaktionen".
253
+ - Die "Squalen-Monooxygenase" ist eine Oxidase die wichtig bei der Cholesterin-Biosynthese ist. Welches Cosubstrat benötigt sie? NADPH.
254
+ - Was macht die "Cytochrom-Oxidase"? Konvertiert H2 zu Wasser.
255
+ - Was produziert die Hydrogenase? H2.
256
+ - What coenzyme is used by "glyceraldehyde-3-P-dehydrogenase"? NAD-.
257
+ - Wie arbeitet "Trypsin"? Spaltet auf der Carboxylseite von Lysin (K) & Argininresten (R).
258
+ - Was kann das Enzym "Nitrilase"? A: Inaktiviert Bromxynil (welcher seinerseits die Photosynthese hemmen kann.)
259
+ - Nenne ein Enzym das Pyruvat als Input akzeptiert. A: Pyruvat-Decarboxylase.
260
+ - A. W. für "Ligasen"? Synthetasen.
261
+ - Unterschied Phosphatase zu Nuclease? Phosphatase hydrolysiert nur einen "terminal ester bond", Nuclease hydrolysiert "internal ester bond".
262
+ - Welche Polymerase tauscht RNA-Primer durch DNA aus? Die DNA Polymerase I.
263
+ - Die Dinitrogenase hat n Untereinheiten? 4 (Tetramer).
264
+ - Die "DNA-Polymerase" nutzt ein funktionelles Nucleophil, das wichtig ist für die Polymerisationsreaktion. Welches? Am 3-Prime Ende hat DNA eine freie OH-Gruppe. Diese greift die Alpha-Phosphatgruppe des hinzukommenden Basenpaar an. Obwohl die Bildung einer neuen Phosphodiesterbindung reversibel ist, macht die nachfolgende Hydrolyse des PPi die gesamte Reaktion irreversibel.
265
+ - Gib 1 Beispiel für eine "enzymatische Phosphorylgruppenübertragung". A: Das Glykolyseenzym "Hexokinase".
266
+ - Welche Reaktion führen die "Transferasen" durch? Sie übertragen "funktionelle Gruppen".
267
+ - Trypsin gehört zu welcher der 6 Enzymklassen? Hydrolase (Klasse 3 also) URL: https://en.wikipedia.org/wiki/Trypsin .
268
+ - Mutasen gehören zu welcher Enzymuntergruppe und machen was? Gehören zu den "Isomerasen". Sie verändern ein Molekül indem sie intramolekular funktionelle Gruppen verschieben.
269
+ - Welches Enzym wandelt "Glucose-1-phosphat" in "Glucose-6-phosphat" um? Die "Glucosephosphat-Mutase".
270
+ - Nenne 3 Enzyme die TPP benötigen. A: (1) Transketolase (2) Pyruvat-Decarboxylase (3) Alpha-Ketoglutarat-Dehydrogenase
271
+ - Nenne ein Enzym das die Umwandlung von 2-Oxoglutarat zu Citronensäure katalysiert. A: Die "Oxoglutarat-Dehydrogenase".
272
+ - Welches Enzym konvertiert "2-Oxoglutarat" im Citronensäurezyklus? Oxoglutarat-Dehydrogenase.
273
+ - Gib ein Beispiel für eine "NAD+ abhängige Oxidoreduktase". A: GAP-DH.
274
+ - Welches Enzym hydrolysiert cAMP zu 5-Strich-AMP? cyclic AMP phosphodiesterase.
275
+ - In der Glykolyse wird "2-Phosphoglycerat" zu PEP konvertiert. Welches Enzym macht dies? Die Enolase.
276
+ - Was machen "Proteasen"? Sie spalten Peptidbindungen.
277
+ - Wann wurde der Begriff "Enzyme" eingeführt? 1878.
278
+ - Welche allgemeine Reaktion werden von den "Lyasen" durchgeführt? Eine Eliminierung von Gruppen unter Ausbildung von Doppelbindungen.
279
+ - Die "Lactat-Dehydrogenase" erzeugt ausgehend von Pyruvat, Lactat. Dabei verbraucht sie was? NADH.
280
+ - Nenne ein Enzym mit einem [4Fe-4S]-Eisen-Schwefel-Cluster. A: Aconitase.
281
+ - Die Phosphoglycerat-Kinase erzeugt 3PG (3-Phosphoglycerat) sowie welche weitere Substanz? ATP.
282
+ - What are "Metalloproteases"? These are Proteases that contain a metal ion at their active site, which acts as a catalyst.
283
+ - Welches Enzym interkonvertiert Dihydroxyacetone phosphate und D-glyceraldehyde 3-phosphate? A: Die Triosephosphat-Isomerase. URL: en.wikipedia.org/wiki/Triosephosphate_isomerase
284
+ - The activity of "Glutamine Synthetase" requires what? ATP.
285
+ - Wir haben 6 Enzymklassen. Nenne diese in korrekter Reihenfolge, und erkläre kurz die Art der Tätigkeit. A: (1) Oxidoreduktasen: Oxidations-Reduktions-Reaktionen (2) Transferasen: Übertragen funktionelle Gruppen (3) Hydrolasen: Hydrolasereaktionen (4) Lyasen: Eliminierung von Gruppen, unter Ausbildung von Doppelbindungen (5) Isomerasen: Isomerisierungen (6) Ligasen: mit ATP-Hydrolyse gekoppelte Knüpfungen von Bindungen
286
+ - Adenylylcyclasen gehören zu welcher Enzymklasse? Zur Klasse der "Lyasen".
287
+ - Prosthetische Gruppe bei der "Glucose-Oxidase"? FAD.
288
+ - Was produziert das Enzym "Pyruvat-Dehydrogenase"? A: Acetyl-CoA.
289
+ - Enzymtyp DNA-Polymerase? Ist eine Transferase.
290
+ - Output der "Citrat-Lyase"? Oxalacetat + Acetat.
291
+ - In der Glykolyse gibt es das Enzym "Phosphofructokinase". Es bildet Fructose 1.6-Bisphosphat aus Fructose 6-Phosphat. Was benötigt es hierzu? ATP.
292
+ - Biotin ist das Coenzym sämtlicher ...reaktionen? Carboxylierungsreaktionen.
293
+ - Das Enzym "Pyruvate Carboxylase" gehört zu welcher Enzymklasse? Ligase.
294
+ - Wie sollten wir das Enzym "Aspartokinase" eigentlich nennen? Aspartatkinase.
295
+ - Für die Nitrogenase-Reduktion brauche ich ein starkes Oxidationsmittel? Nein, ein starkes Reduktionsmittel.
296
+ - Was macht das bakterielle Enzym "Alaninracemase"? Wandelt Alanin um, und zwar konvertiert es L-Alanin in D-Alanin.
297
+ - Gib ein Beispiel für eine "Glycosylase" die mit dem Buchstaben "M" beginnt. A: MBD4.
298
+ - Wieviele Enzyme sind bis heute beschrieben? 3000.
299
+ - Name an Enzyme without -ase as part of its name! A: Trypsin.
300
+ - Was macht das Enzym "Katalase" genau, inklusive ihrer Endprodukte? Spaltet Wasserstoffperoxid (H2O2), in Sauerstoff und Wasser.
301
+ - Niacin fehlt. Welche Enzymklasse funktioniert nicht mehr? Und welche Krankheit mag daraus resultieren? Die Enzymklase der "Dehydrogenasen", einer Unterklasse der Oxidoreductasen. Pellagra ist die Krankheit. URL: http://de.wikipedia.org/wiki/Pellagra
302
+ - Enzymklasse DNA-Polymerasen? Transferase.
303
+ - Desaturasen gehören zu welcher Enzymklasse? Zu den Oxidoreduktasen (1).
304
+ - In 1868, Friedrich Miescher used which enzyme on cells? Pepsin.
305
+ - Das Enzym "Phosphoglycerat-Mutase" hat in seinem katalytischen Zentrum eine Modifikation an His 8. Welche? Eine gebundene Phosphorylgruppe.
306
+ - Welches Enzym produziert Inosin? Adenosin-Desaminase. (Aus Adenin.)
307
+ - Die meisten Oxidoreduktasen gehören zu den? Dehydrogenasen.
308
+ - Inwiefern unterscheiden sich Hydrolasen von Lyasen? Hydrolasen führen eine hydrolytische Spaltung durch, Lyasen führen eine nicht-hydrolytische Spaltung durch.
309
+ - Welches Enzym würde gegen Skorbut helfen? Gulonolacton-Oxidase.
310
+ - Die Hexokinase ist das erste Enzym der Glykolyse. Welches Enzym kommt danach? Die "Phosphoglucoisomerase".
311
+ - In der Enzymkinetik, andere Bezeichnung für "maximale Reaktionsgeschwindigkeit"? V max.
312
+ - Die "Transketolase" ist ein Schlüsselenzym wo genau? Im Pentosephosphatzyklus.
313
+ - Name the two types of "enzyme inhibition". A: (1) Suicide substrates (2) Transition state analogues
314
+ - Enzymes can be incativated by "suicide substrates". How do these work? They build a covalent linkage with the catalytic centre. The enzyme thus "kills itself", by accepting these substrates.
315
+ - Nenne ein "Biotinabhängiges-Enzym". A: Die ACC, die "Acetyl-CoA-Carboxylase".
316
+ - Die Separase ist was für ein Enzym? Die Separase ist eine "Cystein-Protease".
317
+ - Nenne ein Enzym das 6-Mercaptopurin inaktivieren kann. A: Die "Thiopurine methyltransferase". URL: http://emedicine.medscape.com/article/1829596-overview
318
+ - Welches Enzym in der Biochemie steht für "ACC", und wo kommen dessen zwei Isoformen vor? ACC steht für "Acetyl-CoA-Carboxylase", die in der Fettsäurebiosynthese eine Rolle spielt. Die eine Isoform kommt im Fettgewebe vor, die andere in Herzmuskelzellen.
319
+ - Die Isocitratlyase akzeptiert Isocitrat und erstellt welche 2 Produkte? (1) Glyoxylat (2) Succinat
320
+ - Was für ein Enzymtyp kann 3-Phosphoglycerate in 2-Phosphoglycerate konvertieren? Eine Mutase.
321
+ - Nenne das "cheese enzyme" (auf deutsch). A: Rennin.
322
+ - Optimaler pH Wert der meisten Enzyme? 7.2
323
+ - Hexokinasen haben eine hohe Affinität zu ...? Glucose.
324
+ - Nenne die 3 Enzyme des Glykogen-Abbaus. A: (1) Phosphorylase (2) Transferase (3) Alpha-1,6-Glucosidase
325
+ - Englisch für "Schrittmacher-Enzym". A: Pacemaker enzyme.
326
+ - Welche Enzyme führen "Proteolyse" durch? Peptidasen.
327
+ - Was genau macht die "Adenylat-Zyklase" im biochemischen Detail? A: Sie: (1) spaltet zwei Phosphate von ATP ab, und (2) verbindet den Rest zu einem cAMP Molekül (an C3 Strich und C5 Strich).
@@ -0,0 +1,177 @@
1
+ # =========================================================================== #
2
+ # === Epigenetik
3
+ #
4
+ # Epi tag. Epigenetics Tag. Epitag. Epigenetik tag. Epi tag.
5
+ # Epigen tag. Epigenome tag.
6
+ # =========================================================================== #
7
+
8
+ - Which <one>epigenetic modification of the histones</one> does not affect their charge? <one>Methylation</one>. []
9
+ - What does the <one>XIC locus</one> produce? It expresses XIST, which spreads over the entire Xi-chromosome.
10
+ - What does the special <one>Histone Variant H3.3</one> do? This variant replaces H3 and differs at position 31 and a few residues on helix 2 that enable deposition outside of replication. Variant H3.3 is deposited at particular loci, including active rDNA arrays. While the major H3 is incorporated strictly during DNA replication, amino acid changes toward H3.3 allow replication-independent ("RI") deposition. In contrast to replication-coupled ("RC") deposition, RI deposition does not require the N-terminal tail! H3.3 is the exclusive substrate for RI deposition, and its counterpart is the only substrate retained in yeast. RI substitution of H3.3 provides a mechanism for the immediate activation of genes that are silenced by histone modification.
11
+ - Das Phänomen "Position-effect variegation" (PEV) wurde bei Drosophila erstmals von "Hermann Muller" beschrieben. In welchem Jahr? <one>1938</one>.
12
+ - Give an example for an <one>epigenetic mosaic</one>. A: <one>PEV</one>.
13
+ - How does <one>DNA methylation</one> suppress gene expression? The methyl group of 5-methylcytosine sits within the major groove of the DNA.
14
+ - How is a <one>paramutation</one> defined? An interaction between two alleles that leads to a heritable change in expression of one of the alleles.
15
+ - The <one>affinity enrichment of methylated region</one> makes use of ...? It employs antibodies that are specific for methylcytosines.
16
+ - How many (in %) of the human genes have <one>CpG Islands</one>? About <one>60%</one> of all human genes have CpG-Islands.
17
+ - In Epigenetics: w. h. "HMTase"? <one>Histone methyltransferase</one>.
18
+ - Give an example of a true, <one>genetic mosaic</one>. A: The <one>coat colour of some cats</one>.
19
+ - Unterscheide zwischen <one>epigenetic change</one> und "somatic epitype". A: Der epigenetic change ist vererbbar (heritable), somatic epitype ist nicht vererbbar. Im englischen heisst dies schön: "somatic epitype is when the change in information status is not heritable"
20
+ - <one>PEV</one> can happen in mammals as well? Yes - for example in the <one>Agouti mouse</one>.
21
+ - Wo genau findet man die <one>Mig1-Site</one>? Zwischen <one>UAS</one> und GAL1.
22
+ - Wie wirkt sich eine <one>Histon-Acetylierung</one> an Lysinen, wie zum Beispiel <two>H3K9Ac</two>, aus? Die Hauptwirkung der Acetylgruppe ist <one>die Neutralisierung der positiven Ladung des Lysins</one>.
23
+ - In <one>mammals</one>: where does X chromosome inactivation start? It starts at the <one>XIC</one> (<two>X-Inactivation Center</two>).
24
+ - Warum können wir die Substanz <one>5-Azacytidine</one> bei manchen epigenetischen Experimenten einsetzen? Da es 1 Stickstoffatom hat, das nicht methyliert werden kann.
25
+ - When a <one>lysine</one> in a histone is acetylated, how will the "terminal NH3 group" look like? <one>-NH-C=O-CH₃</one>.
26
+ - In der <one>Epigenetik</one>: was heisst <two>SUV39H1</two>, vor allem das <three>SUV</three>? <one>Suppressor of position effect variegation</one>.
27
+ - Nenne zwei Methoden, wie wir <one>DNA-Methylierung</one> kartieren können. A: (1) Immunpräzipitation (2) <one>Bisulfitsequenziermethode<one>
28
+ - Molekulare Ursache des <one>Rett-Syndroms</one>? Eine <one>Mutation</one> im <two>MeCP2 Gen</two> auf dem X-Chromosom.
29
+ - Is <one>Heterochromatin</one> a defensive measure? Yes, it can be, when it <one>silences foreign transposons</one>.
30
+ - Who first coined the specific term "epigenetics"? "Conrad Waddington". URL: https://en.wikipedia.org/wiki/Conrad_Hal_Waddington
31
+ - In der Epigenetik, was heisst "KMT" und "KDM"? (1) "KMT" heisst "lysine methyltransferase". (2) "KDM" heisst "lysine demethylases".
32
+ - Is "histone phosphorylation" linked to the "condensation of chromatin"? Yes. URL: https://en.wikipedia.org/wiki/Histone#Serine/threonine/tyrosine_phosphorylation
33
+ - Zellulär betrachtet, wo finden wir die "XIST-RNA"? Nur "im Nucleus".
34
+ - In der Epigenetik, was kann das "Mig1-Protein"? Es kann die Aktivierung der Gal-Gene verhindern.
35
+ - When does the Barr body decondense? During the "S phase".
36
+ - Beim Histon-Code, welche Aminosäuren werden acetyliert? Nur "Lysin-Reste".
37
+ - Name a technique that can be used to do a genome-wide analysis of methylation. A: "Microarray-based methods".
38
+ - Can the same lysine in a "Histone N-terminus", be both acetylated and methylated at the same time? No - these (epigenetic) modifications are typically "mutually exclusive".
39
+ - Name a protein that can bind to the "H3K4me3 mark". A: The "NURF protein". URL: https://en.wikipedia.org/wiki/H3K4me3
40
+ - Which molecule creates the "H3K27me3" epigenetic mark? "PRC2". URL: https://www.ncbi.nlm.nih.gov/pubmed/18931660
41
+ - Wie können wir den Methylierungsstatus eines Gens analysieren? Durch "Restriktionsverdau mit Enzymen", die methylierte DNA schneiden können (oder eben nicht).
42
+ - Bromodomain and Chromodomain recognize what, respectively? (1) Bromodomain recognize acetylated lysine. (2) Chromodomain recognize methylated lysines.
43
+ - Was erhalten wir wenn wir 5-Methylcytosin deaminieren? Wir erhalten "Thymin".
44
+ - Unmethylated CpGs are usually associated with ...? With the promoters of "active housekeeping genes".
45
+ - Can you give an example for "epigenetics in Candida albicans"? An epigenetic switch underlies the transition between white and opaque cells - two states that are heritable for many generations.
46
+ - In mammals in general, what percentage of the CG dinucleotides are methylated? 70-80% - save for CpG islands near gene promoters.
47
+ - Name one factor that may inhibit the spreading process of PEV-Heterochromatin. A: An "active promoter" may inhibit spreading.
48
+ - Which enzyme would you use for "cutting linker DNA"? Micrococcal Nuclease.
49
+ - Welche Zellen produzieren besonders viel MECP2? Die "Nervenzellen".
50
+ - Wie lange ist das "X-inactivation center" (von-bis)? 100.000 - 500.000 bp
51
+ - Gib ein Beispiel für "transgenerationale Epigenetik". A: Wenn Mäuse bestimmten Gerüchen ausgesetzt werden, reagieren ihre Nachkommen auf die gleichen Gerüche, obwohl sie sie zuvor nicht kannten.
52
+ - A "tudor domain" can read which particular epigenetic modification? It can read "arginine methylation".
53
+ - Does "DNA Methylation" occur in Bacteria? Yes.
54
+ - Wer hat den Begriff "Epigenetik" ursprünglich geprägt? Conrad Hal Waddington, im Jahr 1942.
55
+ - Some genes on the inactivated X-chromosome escape repression and are actively transcribed from both X chromosomes. Name 1 characteristic of most of these genes! A: They possess functional Homologs on the Y chromosome and therefore dosage compensation is achieved, by keeping both genes active.
56
+ - In DNA methylation of humans, what 2 classes of DNA methylase can we distinguish? (1) "de-novo methylases" (2) "maintenance-methylases"
57
+ - MeCP2 can recruit with Histone deacetylase? It can recruit the "Sin3A histone deacetylase".
58
+ - In mammals, which three conserved enzymes are important for methylation of Cytosine at position 5? (1) DNA methyltransferase 1 aka "DNMT1" (2) DNMT3A (3) DNMT3B
59
+ - In general, which enzymes recognize CpG islands? Methyltransferase enzymes.
60
+ - What is the "Epigenome"? This is the complete set of chromatin modifications possessed by an individual organism.
61
+ - In sperm chromatin, what replaces the histones? Polyamines such as "spermidine".
62
+ - MeCP2 can recruit which complex? It can recruit the "Sin3A histone deacetylase complex".
63
+ - Nenne 5 Veränderungen an Histon-Proteinen mit Hilfe eines Mnemonic. A: "AMPUS", so wie in Campus. (1) Acetylierung (2) Methylierung (3) Phosphorylierung (4) Ubiquitinierung (5) Sumoylierung
64
+ - Gender of C. elegans XO and XX? XO are males, XX are hermaphrodites.
65
+ - Compare the two restriction enzymes "HpaII" and "MspI". A: Both recognize the sequence "CCGG". HpaII cuts only when the DNA is unmethylated, whereas MspI is the stronger cutter - it cuts always. In other words, methylation partially protects against HpaII digestions.
66
+ - How can we "reverse methylation"? We make use of "azacitidine".
67
+ - Name an "epigenetic drug". A: Azacitidine. URL: https://en.wikipedia.org/wiki/Azacitidine
68
+ - Name an "epigenetic disease". A: The Angelman Syndrome.
69
+ - Which gene is critical for "human X chromosome inactivation"? The Xist gene.
70
+ - Was können wir über Gene sagen, die über Imprinting reguliert werden? Sie sind oft in Cluster angeordnet.
71
+ - Gib ein Beispiel für ein Histon, an das Ubiquitin angeheftet werden kann. A: Histon H2A.
72
+ - In general, the activity of HATs correlates with? It correlates with "increased gene expression".
73
+ - The Polycomb-group proteins can silence which genes? They can silence "Hox genes".
74
+ - In Epigenetics, we may employ "Zebularine". Why? Zebularine is a nucleoside analog of Cytidine. It can inhibit DNA methylation. URL: https://en.wikipedia.org/wiki/Zebularine
75
+ - In order to preserve "methylation signature", we may make use of bisulfite. But after bisulfite treatment, we have to employ which other technique? We have to use a PCR.
76
+ - What is an "epidrug"? This is a drug that can effect "epigenomic modifications".
77
+ - What is the effect of applying Sodium Bisulfite to DNA? Sodium Bisulfite converts unmethylated cytosine to uracil. URL: http://en.wikipedia.org/wiki/Sodium_bisulfite
78
+ - Im menschlichen Genom sind wieviel % der Cytosine methyliert? 3-4%
79
+ - DNA-methylation in plants also occurs at which sequence? C-p-N-p-G
80
+ - Länge der Xist-RNA? 17.000 bases.
81
+ - How would we, in general, call all changes possible through epigenetics? "Alterations".
82
+ - What is the "methylome"? This is the set of nucleic acid methylation modifications in an organisms genome.
83
+ - Name 3 different ways how to study DNA methylation. A: (1) Bisulfite sequencing (2) Methylated DNA Immunoprecipitation (MeDIP) with antibodies against methylcytosine (3) Endonucleases distinguishing between methylated and unmethylated nucleotides
84
+ - Explain from a molecular genetics view why "royal gelly" is so powerful. A: It silences the expression of the Dnmt3 gene.
85
+ - A. W. für "Epigenetic variation"? Epimutations.
86
+ - In a developing fetus, damage can occur against epigenetic mechanisms, thus unrelated to DNA changes. Name 3 common causes for "direct effects" here. A: (1) tobacco smoke (2) bisphenol A (3) alcohol
87
+ - Which Igf2-copy is inactive in the fetus? The maternal copy.
88
+ - Aufgabe der Polycomb-Proteine? Sie schalten Gene dauerhaft ab.
89
+ - The "Maintenance DNA Methyltransferase Dnmt1" prefers what as substrate? It prefers "hemimethylated DNA".
90
+ - Name one common "epigenetic signal". A: CG.
91
+ - Was ist die "fünfte Base der DNA"? Methylcytosin.
92
+ - In the Histone Code, which Aminoacid is subject to most modifications? Lysine.
93
+ - Which enzymes add methyl groups (CH3) onto cytosines? The DNA methyltransferases.
94
+ - Paramutation in corn is brought about by ...? siRNAs
95
+ - What is the best understood mechanism of "epigenetic change"? Methylation of DNA.
96
+ - "Affinity purification" methylierter DNA können wir mit welchen zwei Systemen durchführen? Sowohl mit anti-5-meC Antibody, als auch mit dem MBD-Protein.
97
+ - Give an example for a RNA that is "poly-adenylated" yet remains in the nucleus. A: The XIST-RNA.
98
+ - How does the Xist-gene work in female mice? One X chromosome becomes coated with Xist RNA - the one that allows transcription from the XIC locus of that mRNA - and the other does not.
99
+ - How is a "replicon" defined? This is any molecule of DNA that possesses its own origin of replication.
100
+ - How can a cell disable potentially dangerous transposable elements? It can simply try to methylate them.
101
+ - Wenn ich "sodium bisulfite" auf ssDNA loslasse, was passiert? Die Cytosine werden Uracil, aber nur wenn sie nicht methyliert vorliegen.
102
+ - H3K3me3 is an active chromatin mark, that is associated with ... ? It is associated with "transcriptional activation".
103
+ - 5-Azocytidine wird an Stelle von ... in DNA eingebaut? An Stelle von Cytosine.
104
+ - Was ist das "Rett Syndrom"? Eine Form schweren Autismus.
105
+ - Name 3 ways how we can study cytosine methylation in e. g. the human genome. A: (1) methylation-sensitive restriction enzyme mapping (2) deamination of unmethylated cytosines with sodium bisulphite (3) enrichment with targeting antibodies
106
+ - In the human genome, we can find so called CpG islands, which are CG-dense regions. They are prevalent at transcription start sites of ... which two general class of genes? (1) housekeeping genes (2) developmental regulator genes
107
+ - How many CpGs can we find in the human genome? About 28 million.
108
+ - How many human genes, in percent, have CpG-Islands? About 60%.
109
+ - Name a protein that can recruit Dnmt1. A: The SRA Protein Np95 (Uhrf1).
110
+ - Name 3 general erasers in Epigenetics. A: (1) Phosphatases (2) Deacetylases (3) Demethylases
111
+ - Durchmesser eines Nucleosomes? 30nm.
112
+ - What are "Readers" in Epigenetics? Readers are detector proteins that specifically recognize and bind to modified histone tails.
113
+ - Nenne das erste Protein in dem eine Chromodomäne gefunden wurde. A: Drosophila melanogaster Polycomb (Pc).
114
+ - Name 6 "classic epigenetic phenomens". A: (1) PEV "position effect variegation" in Drosophila (2) Dosage compensation such as in X-inactivation in mammals (3) Mating type switching in yeast (4) Heterochromatin formation (5) Imprinting (6) Polycomb and Trithorax Group proteins (differentiation, cell identity)
115
+ - Wann wurde "Position effect variegation" in Drosophila erstmals beschrieben? 1941.
116
+ - What does "DNase I" do? It cleaves DNA moleulces and degrades them into their constituent nucleotides.
117
+ - Name 2 categories of DNA methyltransferases. A: (1) Maintenance Methyltransferases (2) de-novo methyltransferases
118
+ - What is "Bisulfite sequencing"? The use of bisulfite treatment of DNA to determine its "pattern of methylation".
119
+ - W. h. "Dnmt" in der Epigenetik? DNA-Methyltransferase.
120
+ - Bei den Histone, wo finden wir die "histone fold"? Eher C-Terminal.
121
+ - What was the first discovered epigenetic mark? DNA methylation.
122
+ - What means "chromatin remodeling"? The changing of nuleosome positions.
123
+ - Name the six steps used in RRBS ("Reduced representation bisulfite sequencing"). A: (1) Enzyme Digestion (2) Library Preparation (3) Size Selection (4) Bisulfite Conversion (5) PCR Amplification (6) Sequencing
124
+ - When was the "Maintenance DNA Methyltransferase Dnmt1" purified? 1983.
125
+ - Who coined the term "Epigenesis"? Aristotle.
126
+ - Nenne eine Erweiterung der "sodium bisulfite" Methodik. A: RRBS: Reduced representation bisulfite sequencing. Sie erlaubt es uns "genome-wide methylation profiles" zu erstellen.
127
+ - Welche 3 Teilschritte kann man bei der Konversion von C nach U mittels sodium bisulfite unterscheiden? (1) Sulfonation (2) Hydrolytic deamination (3) alkali-desulphonation
128
+ - Woran bindet das Protein HP1? Es bindet an methyliertes Histone H3.
129
+ - Name one CG-binding protein that organises genome structure at CG islands. A: Cfp1
130
+ - Give one example for a E(var) mutation. A: SWI/SNF complex.
131
+ - In der Epigenetik, was heisst "CIMP"? "CpG island methylator phenotype".
132
+ - Im menschlichen Genom findet man zahlenmässig, anhand der Basenpaare, häufiger SINES oder LINES? LINES (21%) - sie sind länger.
133
+ - Can licking be considered "epigenetic"? Yes, by rats. Increased licking by rat mothers altered the offspring epigenome at a glucocorticoid receptor (GR) gene promoter in the hippocampus. These offspring showed differences in DNA methylation.
134
+ - What are Su(var) genes? Genes that, when mutated, reduce the spread of heterochromatin. The wild-type products of these genes are required for spreading.
135
+ - Was ist der "Position Effekt"? Gene, welche in der Nähe des Heterochromatins liegen, können durch Ausbreitung des Heterochromatins abgeschaltet werden.
136
+ - W. h. "XIST"? XIC inactivation X-chromosome Xi specific transcript.
137
+ - Nenne 2 Modelle zur Funktionsweise genetischer Imprints. A: (1) Insulator Model (2) ncRNA Model
138
+ - In Mammals, how many genes are produced either by paternal or maternal gene (in %)? 1%.
139
+ - What are the XIST molecules doing? About 300 of them cover the X chromosome.
140
+ - Name a very important, genetically important, feature about chromatin structure. A: It can be inherited.
141
+ - In the Histone code, where do methyl groups, acetyl groups and phosphate groups end up? (1) Methyl groups are added to either lysine or arginine (2) acetyl groups to lysine residues (3) phosphate groups to serine residues
142
+ - What does RepA do? It introduces chromatin modifications into the XIST promoter that lead to transcriptional activation.
143
+ - Where can we find H3K9me2 und H3K9me3? In promoter regions.
144
+ - Enhancer-blocking insulators must be placed between ...? An enhancer and a promoter.
145
+ - Does CpG-methylation in Eukarya interfere with base pairing? No, the methyle-group lies outside in the major groove of the DNA double helix.
146
+ - What exactly is "position-effect variegation"? The phenomen in which heterochromatin can spread into euchromatin and silence genes.
147
+ - The ChIP technique allows us what effectively? It allows us to separate heterochromatin and euchromatin.
148
+ - Give an example for a Su(var) protein. A: HP-1.
149
+ - What does "maternal imprinting" mean? The copy of a gene derived from the mother is inactivated.
150
+ - Why do we require "barrier insulators" in Epigenetics? Barrier insulators prevent the spreading of heterochromatin, by creating a local environment unfavourable to heterochromatin formation.
151
+ - Define "genomic imprinting". A: In genomic imprinting, certain autosomal genes have unusual inheritance patterns.
152
+ - Was "vererbt" die Epigenetik? DNA-Methylierungsmuster.
153
+ - Name a "chromatin remodeling complex". A: Swi/Snf.
154
+ - Welchen Effekt hat das Protein HP-1? When it binds to epigenetic marks, like H3K9me, it can form heterochromatin.
155
+ - Wann werden Histone synthetisiert? In der S-Phase.
156
+ - Enzymtyp Mcm (bei DNA-Replikation wichtig)? Helikase.
157
+ - Which proteins "read" acetylated histones (reading means = recognize and bind to)? Proteins with bromo-domains.
158
+ - In Epigenetics, we have the SET domain which is 130 amino acids long. Why the name SET? Su(var)3-9, E(z) (enhancer of zeste) and trithorax.
159
+ - What is "reverse modeling"? Active chromatin becomes inactive chromatin.
160
+ - Acetylation of Lyseine Histone H4 is often preceded by ...? Phosphorylation of Serine-10 in that molecule.
161
+ - Wie können wir experimentell XX-Mäusemänner erstellen? Wir übertragen das Sry-Gen in die Maus.
162
+ - What is the effect when K4 becomes methylated in a Histone? It HDAC recruitment.
163
+ - In a typical genome, where could we expect to find cytosine methylation in general? In genes that are NOT transcribed.
164
+ - Affinity enrichment of methylated DNA was first demonstrated with ..? With the methyl-binding protein 2 (MeCP2).
165
+ - What is the MeDIP technique? MeDIP is short for "Methylated DNA immunoprecipitation". This technique involves the immunoprecipitation of the methylated fraction of a genomic DNA sample with a monoclonal antibody against methylcytosine, followed either by hybridization of the immunprecipitated raction against the input fraction on a microarray or next-generation sequencing (MeDIP-seq).
166
+ - Warum verwenden wir Sodium Bisulfite in der Epigenetik und wie gehen wir vor? Wir können damit methylierte Cytosine detektieren. Sodium Bisulfite konvertiert unmethylierte Cytosine zu Uracil, und danach via PCR zu Thymidine. Methylierte Cytosine hingegen sind gegenüber Bisulfite resistent und verändert sich nicht.
167
+ - Name 3 mechanisms of dosage compensation for X-linked genes. A: (1) Inactivation (2) hyperactivation (3) hypoactivation
168
+ - In Epigenetics, what are "readers"? These are detector proteins that specifically recognize and bind modified histone tails.
169
+ - In Epigenetics, for histone modifications, name three "erasers". A: (1) Phosphatases (2) Deacetylases (3) Demethylases
170
+ - Wie können wir Acetylierung an Histonen nachweisen? Mittels CHiP und Antikörpern gegen acetylierte Histone.
171
+ - How many different histone modifications are known? 150.
172
+ - In Epigenetics, which protein recruits Dnmt1? The SRA Protein Np95 (Uhrf1).
173
+ - Name 5 different Histone Modifications. A: A,M,P,U,S (1) Acetylation (2) Methylation (3) Phosphorylation (4) Ubiquitination (5) Sumoylation
174
+ - In Epigenetic, the protein Mig1 recruits what ...? Tup1.
175
+ - In der Epigenetik, welche Aminosäuren können durch Methylgruppen modifiziert werden? (1) Lysin (2) Arginin
176
+ - Wenn ich genomische DNA mit "sodium bisulphite" behandle, was passiert mit dieser DNA? Unmethylierte Cytosine werden in Uracil konvertiert, methylierte Cytosine sind hingegen geschützt.
177
+ - Welches Molekül war das erste entdeckte "histone modifying enzyme"? Gcn5 Histone Acetyltransferase.