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,33 @@
1
+ # =========================================================================== #
2
+ # === PHYTOCHEMIE
3
+ #
4
+ # Phytochemie Tag. Phyto tag. Phyt tag.
5
+ # =========================================================================== #
6
+
7
+ - Welches <one>Gift</one> produziert die "castor-oil plant"? <one>Ricin</one>.
8
+ - Welche 2 Dinge kann RUBISCO? CO₂ übertragen und O übertragen.
9
+ - Warum speichert die Pflanze Stärke? Die Polymerisierung von Glucose in Stärke erfolgt da sie osmotisch weniger aktiv ist als Glucose, die akkumulieren würde.
10
+ - Nenne zwei photosynthetische Zellen bei C4-Pflanzen. A: Mesophylzellen und Bündelscheidezellen.
11
+ - Temperaturoptima C3 und C4 Pflanzen? C3 bei 15-20°C, C4 Pflanzen wie Mais bei 30-40°C.
12
+ - Nenne 3 Produkte der Lichtreaktion. A: (1) ATP, (2) NADPH, (3) O2.
13
+ - Nenne 3 wichtige Bedeutungen der Flavonoide für den Menschen. A: (1) Antioxidative Wirkung (2) Wirkung auf verschiedene Enzymsysteme (3) antikarzinogene Eigenschaften
14
+ - Welcher Zucker entsteht im Calvin-Zyklus? G3P (Glycerinaldehyd-3-Phosphat).
15
+ - Nenne 2 Vertreter des CAM Weg. A: Kakteen, Ananas.
16
+ - Flavonoide gehören zu den? Pflanzlichen Phenolen.
17
+ - Wie wirkt Ricin? Es inaktiviert die Ribosome.
18
+ - Bei C3-Pflanzen, was ist das erste Produkt der CO₂-Fixierung? 3-Phosphoglycerate.
19
+ - In Pflanzen, woran ist der C4-Dicarbonsäureweg gekoppelt? An einen besonderen anatomischen Aufbau des Blattes.
20
+ - Definiere Photophosphorylierung. A: Bindung einer Phosphatgruppe an ADP in der Lichtreaktion.
21
+ - Wie ist Cellulose verknüpft? 1,4-Verknüpfung von Beta-Glucosemonomeren.
22
+ - Zwei wichtige C4 Pflanzen nennen. A: Mais und Zuckerrohr.
23
+ - Warum der Name C4 Pflanze? Da sie eine andere Art der Kohlenstoff-Fixierung vorgeschaltet haben, den C4-Dicarbonsäureweg.
24
+ - RuBP (Ribulose-1,5-bisphosphat) hat n C? 5.
25
+ - Wann läuft der Calvin-Zyklus in Pflanzen ab? Bei Tageslicht.
26
+ - Temperaturoptima von C3 und C4 Pflanzen? C3 bei 15-20° C und C4 bei 30-40° C.
27
+ - Was sind Xerophyten? Pflanzen die gut bei Trockenheit leben können.
28
+ - Welche zwei Aktivitäten hat RUBISCO? Die CO₂ Übertragung und die O Übertragung.
29
+ - Erster Schritt des Calvin-Zyklus? Einbau des Kohlenstoffes.
30
+ - Was lässt sich allgemein zum ATP und NADPH-Verbrauch im Calvin-Zyklus festhalten? Er verbraucht mehr ATP als NADPH.
31
+ - In der Photosynthese werden Protonen und Elektronen von Wasser auf ... übertragen? NADP+.
32
+ - Nenne eine wichtige Funktion der Carotinoide. A: Lichtschutz. Sie absorbieren und verteilen überschüssige Lichtenergie.
33
+ - Beschreibe die Porphyrinstruktur des Chlorophylls. A: Hydrophobe Phytolgruppe, den Schwanz der das Moelkül verankert, und den lichtabsorbierenden Kopf, der Porphyrinring.
@@ -0,0 +1,127 @@
1
+ # =========================================================================== #
2
+ # === PLANT_BIOTECHNOLOGY
3
+ #
4
+ # Plant biotechnology, Plant Biotech tag. Plant Biotechnology tag.
5
+ # Pflanzenbiotechnologie tag.
6
+ #
7
+ # Auch "plant tissue culture".
8
+ # =========================================================================== #
9
+
10
+ - Wir erzeugen mit Röntgenstrahlen neue Merkmale in Pflanzen - aber nur wann ist das auch wirklich von Nutzen? Wenn <one>diese Merkmale auch erblich sind</one>.
11
+ - In Plant Biotechnology, we <one>may have to sterilize seeds</one>. This varies, however had, dependent on which 2 aspects? (1) surface structure of the seeds (2) year of harvest
12
+ - What is the characteristic feature of the <one>FlavrSavr tomatoes</one>? <one>Slow softening</one>.
13
+ - Welchen Effekt hat <one>Abscisinsäure</one> auf eine Pflanze? Abscisinsäure bewirkt, das die Pflanze ihre <one>Stomata schliesst</one>.
14
+ - <one>Scopolamin</one> wird von welcher Pflanze produziert? <one>Duboisia</one>. URL: https://de.wikipedia.org/wiki/Duboisia
15
+ - A. W. für <one>gm-Pflanzen dritter Generation</one>? <one>Plant factories</one>.
16
+ - One advantage of <one>semidwarf plant varieties</one>? They are <one>more resistant to damage caused by rain and wind</one>.
17
+ - Give an example for an enzyme or a group of enzyme that can be used in <one>lignin degradation</one>. A: <one>Laccases</one>.
18
+ - If you have to modify the natural T-DNA, and if you could <one>only add 3 new genes</one>, which ones may you choose? (1) antibiotic resistance gene (2) gene of interest (3) reporter gene
19
+ - In Plant Biotechnology, the <one>FlavrSavr tomato</one> was developed. What was its "characteristic trait" that was marketed the most? Its ability of <one>slow softening</one>.
20
+ - In plant biotechnology: name a solid advantage of <one>the floral dip method</one>, aside from its simplicity? It is <one>a very fast method</one>.
21
+ - Ripe <one>tomatoes</one> normally produce which enzyme that can digest pectin? <one>Polygalacturonase</one> (<royalblue>PG</royalblue>). URL: https://en.wikipedia.org/wiki/Polygalacturonase
22
+ - In der pflanzlichen Biotechnologie mögen wir <one>Histogenese</one> verwenden um ... ? Um <royalblue>vaskuläre Elemente</royalblue> zu erstellen, also "Xylem" und "Phloen".
23
+ - The <one>van Montague lab</one> reported the first transgenic plant, tobacco. In what year? <one>1984</one>.
24
+ - Im welchen Jahr wurden in den USA erstmals gentechnisch veränderte Pflanzen ausgesät? Im Jahre <tomato>1996</tomato>.
25
+ - Kasugamycin is an <tomato>aminoglycoside</tomato> that is also used in agriculture. Why? It is a <one>agricultural fungicide</one>.
26
+ - Bei der Pflanzenvermehrung, der "direkten Morphogenese" versus der "indirekten Morphogenese" - haben wir jeweils ein "Explantat". Bei einem der beiden sehen wir eine Kallusbildung. Wo genau? Bei der "indirekten Morphogenese" sehen wir einen Kallus.
27
+ - In "<u>plant biotechnology</u>", if we add more cytokinin than auxin into a plant cell culture, what may we wish to achieve with this? We may wish to "induce shoots".
28
+ - Im "<u>Ti-Plasmid</u>", zwischen der "LB-Region" und der "RB-Region" liegen ... welche Gene? Die "onc-Gene".
29
+ - Warum ist der "Chmielewski-Paradeiser" für die pflanzliche Biotechnologie interessant? Dieser Paradeiser hat die Eigenschaft viel an Zucker einzulagern.
30
+ - Phosphat-Zugabe für Pflanzen in welcher Form? "KH2PO4".
31
+ - What was the "first genetically modified plant"? "Tobacco".
32
+ - Warum ist es schwierig Gene zu finden mit einer erhöhten Resistenz gegenüber Krankheiten, in der Pflanzenbiotechnologie? Da diese merkmale oft von mehreren Genen (polygen) gesteuert/beeinflusst werden.
33
+ - Was sind "transplastomische Pflanzen"? Diese besitzen "Fremd-DNA" in ihrer "Plastiden-DNA".
34
+ - Wie bezeichnen wir von Pflanzenarten isolierte Zellen, die als Suspension in einer flüssigen Nährlösung kultiviert werden? Dies ist eine "Zellsuspensionskultur".
35
+ - Is "agar-agar" physiologically inert? No, not completely.
36
+ - Der Prozess der Übertragung der T-DNA in die Pflanze ähnelt ... ? Der "bakteriellen Konjugation".
37
+ - A. W. für "Caulogenese"? Sprossmorphogenese.
38
+ - Zeatin is what kind of plant protein? It is a "Cytokinin".
39
+ - Was ist ein "Explantat"? Ein Stück lebendes Gewebe, aus einer Pflanze entnommen.
40
+ - Many methods to transfer genes into plant cells require what? The "removal of the plant cell wall", in order to "form protoplasts".
41
+ - Nenne 1 konkreten Vorteil für ein Saatzuchtunternehmen, wenn dieses Genomik "einsetzt". A: Eine erheblich schnellere Sortenentwicklung, im Vergleich zur konventionellen Züchtung.
42
+ - In Biolistics, for plant DNA, which type of tissues do we use? Tissues that have a "good regeneration capacity", such as meristems or embryos.
43
+ - Was meinen wir mit dem Begriff "Explantat"? Dies ist ein Stück lebendes Pflanzengewebe, das entnommen wurde.
44
+ - Vakzinstrategie bei transgenen Pflanzen? Essbare Vakzine. Diese mögen dann vor allem für die dritte Welt wichtig sein.
45
+ - Warum wird "Gelrite" in der pflanzlichen Biotechnologie verwendet? Primär zur Verfestigung.
46
+ - Andere Bezeichnung für "isoliertes Pflanzenmaterial". A: Explantat.
47
+ - Nenne 1 Methode, mit einer chemischen Substanz, wie wir Protoplastenzellen fusionen können. A: Polyethylenglykol.
48
+ - Shikonin ist was für eine Verbindung? Eine "Naphthochinon-Verbindung".
49
+ - In plant biotechnology, which medium types require a "filter bridge"? Some "liquid medium" require a filter bridge.
50
+ - For Agrobacterium, which border is more important for transferring T-DNA - the right or left border? The right border is indispensable for T-DNA transfer.
51
+ - Was hat "Luther Burbank" in der Pflanzenbiotechnologie erreicht? Er züchtete "weiße Brombeeren".
52
+ - Nenne 1 Vorteil von Pflanzen gegenüber Tieren in der (pflanzlichen) Biotechnologie. A: Pflanzen verfügen, im Verlgiech zu Tieren, über ein besseres, regeneratives Potenzial.
53
+ - Name 1 huge advantage of using plants for protein production, compared to bacteria. A: Plants may be grown in the field at a much lower cost, compared to "transgenic bacteria".
54
+ - Give another term for "oleosins". A: Oiled body proteins. URL: https://en.wikipedia.org/wiki/Oleosin
55
+ - The "35S promoter" originated from which species? It originated from "cauliflower mosaic virus" (CMV).
56
+ - Give 2 reasons why we may wish to get rid of "marker genes" that were added into a transgenic plant. A: The markergene may be (a) toxic (b) allergenic
57
+ - Die Druckkammer einer "gene gun" ist zumeist womit gefüllt? (1) Helium (2) Stickstoff
58
+ - Bei den gene guns, was ist der Durchmesser der Wolframkügelchen? Etwa 1 Mikrometer (10 ** -6 Meter)
59
+ - Agrobacterium T-DNA hat LB und RB. Wie lang sind diese Sequenzen jeweils? Etwa 25bp.
60
+ - Mündungssgeschwindigkeit der Wolframkügelchen bei Genkanonen in der Pflanzenbiotechnologie? Etwa 430 m/s.
61
+ - Wie lang ist die DNA, die mit "gene guns" (biolistische Transformation) verschossen wird? Etwa 3-4 kb.
62
+ - Nenne 1 Substanz die wichtig ist für die "somatische Embryogenese" in Pflanzen. A: Polyamin.
63
+ - Welche Phytohormone sind für pflanzliche Zellkulturen eminent wichtig? (1) Auxine (2) Cytokinine
64
+ - Nenne 2 Möglichkeiten der Regeneration von Pflanzenzellen in der Agrarbiotechnologie. A: (1) somatische Embryogenese (2) Adventivsprossbildung
65
+ - Nenne 2 konstitutive Promotoren in Pflanzenzellen, die auch in der Agrarbiotechnologie Verwendung finden. A: (1) 35S-Promotor (CMV) (2) Nos-Promotor (A. tumefaciens)
66
+ - Why may we wish to use "filter bridges" in plant cell cultures? Filter bridges, as solid supports, support the aerated growth of explants on liquid media without the need of agitation.
67
+ - Who invented "filter bridges" in plant biotechnology? Heller. Heller and Gautheret, in 1949, found that tissues could be satisfactorily cultured on pieces of ashless filter paper moistened by contact with liquid medium.
68
+ - In "plant biotechnology", in an agar-agrar medium, we may also use "activated charcoal". Why? This "adsorbs toxic compounds".
69
+ - Name 5 different ways for "direct gene transfer" in plant biotechnology. A: (1) PEG-method (2) electroporation (3) microinjection (4) microprojectiles (5) laser beams
70
+ - In plant biotechnology, name a common goal for modification of "potatoes". A: We may want to grow potatoes that are resistant to fungi.
71
+ - "Powell-Abel et al." developed the first transgenic plants, TMV resistant tobacco plants. In what year? In 1986.
72
+ - In plant biotechnology, when we cut out small parts from the leaf in order to cultivate these cells, how do we call these small things? Leaf discs.
73
+ - In Plant Biotechnology, we require aseptic conditions. Name 5 ways how to achieve this for surface sterilisation of instruments. A: (1) filtration (2) chemical desinfection (3) UV radiation (4) humid heat (5) dry heat
74
+ - What was the "first native cytokinin" that was discovered? Zeatin.
75
+ - Which method can we use if we wish to establish buds of fruit trees? The "Chinosol method".
76
+ - The "surface desinfestation" of branches of perennial woody species requires some special care, due to which two major problems? (1) the degree of infestation and (2) the amount of phenolic compounds in the tissues
77
+ - Name 3 different carbohydrates that are often used in "plant tissue culture". A: (1) Glucose (2) Sorbitol (3) Maltose
78
+ - We may have to sterilize plant cells sometimes, the plant explants. What is the oldest method for sterilisation of explans? 70% ethanol.
79
+ - Why do plant breeders dislike diploidy? Because they want to find new recessive mutations, but the second allele can mask the mutation.
80
+ - Welche Firma entwickelte damals die Anti-Matsch Tomate "Flavr Savr"? Calgene.
81
+ - Give another term for "microprojectile bombardment". A: Biolistics.
82
+ - Rein praktisch betrachtet, wieso sollten wir Viren verstehen wollen in der "Plant Biotechnology"? Da wir hier Pflanzen erstellen können, die eine bessere Virus-Resistenz haben mögen.
83
+ - Die "Flavr Savr" Tomate wurde wann eingeführt? 1994.
84
+ - It is easier to cultivate explants from monocotyledonoues plants or from dicotyldeons? From dicotyledons.
85
+ - In order to reliably work with plant cells, what is the most important part to take into consideration? That we have to work under "aseptic conditions".
86
+ - Welchen Effekt hat die "Verwendung von Abscisinsäure" auf Pflanzen? Dies schliesst die pflanzlichen Stomata.
87
+ - Nenne 2 Agrobacterium species. A: (1) A. tumefaciens (2) A. rhizogenes
88
+ - Who formulated the "theory of totipotency of plant cells"? Gottlieb Haberlandt, in 1902.
89
+ - Give 3 different, brief examples how any plant/tree may initiate a wound callus. A: (1) mechanical injury (2) invasion by microbes (3) insect attack
90
+ - What is "Caulogenesis"? This is a type of organogenesis, by which only adventitious shoot bud initiation takes place in the callus tissue.
91
+ - Ich gebe "Chalone" zu Pflanzenzellen. Welchen Effekt erzielt dies? Die Pflanzenzellen (deren Teilungsaktivitäten) werden gehemmt.
92
+ - Bei den "Gene Guns" werden welche Microparticles eingesetzt? Tungsten-Microparticles.
93
+ - Why do we use "Pseudomonas syringae" in Agrar-Biotech? To "limit the extent of frost damage to plants".
94
+ - When did we see the "first genetically engineered plant" (tobacco)? In 1983.
95
+ - When was the Bt gene transferred into a plant genome for the first time? In 1987.
96
+ - Eine Gewebekultur von Pflanzen kann man auf welchen 2 unterschiedlichen Wegen aufrecht erhalten? (1) als feste Kalluskultur (2) als flüssige Suspensionskultur
97
+ - Können wir mit Pflanzen menschliche Hormone produzieren? Ja. Transgene Tabakpflanzen können menschliche Wachstumshormone produzieren.
98
+ - Wann wurde Bt als Pflanzenpestizid erstmals registriert? 1961.
99
+ - Nenne die 3 klassischen Methoden, ohne Gentechnik, die Produktausbeute in der pflanzlichen Agrarproduktion zu erhöhen. A: (1) Pflanzenbau (2) Pflanzenschutz (3) Züchtung
100
+ - Why do we employ the method "floral dipping"? Because it is a fast method.
101
+ - The European "Plants for the Future" forum was started by the "European Commission" in what year? In 2003.
102
+ - Name 2 forms of "spoilage in plants". A: (1) rotting (2) wilting
103
+ - Which ORIs, origin of replications, does the modified Ti-Plasmid vector have? (1) Ori-Agro (2) Ori-Ecoli
104
+ - Was ist die "Zöliakie" und wieso ist dies für die Biotechnologie wichtig? Unverträglichkeit von Gluten. Man kann bestimmte Pflanzen gentechnisch so verändern, das dies verhindert wird.
105
+ - In 1957, Skoog and Miller discovered something important in regards to the regulation of plant tissue organ formation. How did they discover that? By simply changing the ratio of "auxin" to "cytokinin".
106
+ - In early plant tissue cultures, list one important reason why they did make use of "in-vitro methods"? In order to eliminate pathogens.
107
+ - In Plant Biotechnology, we may make use of "PGRs". What are PGRs? Plant Growth Regulators.
108
+ - When was the first tissue culture of carrots established? In 1939.
109
+ - When did "P.A. White" etablish the first tissue culture of tomato? In 1939.
110
+ - When was it discovered that the Ti plasmid is the tumor-inducing principle of Agrobacterium tumefaciens? 1974.
111
+ - Indol-3-essigsäure (IAA) ist für Auxin wichtig. Welche Aminosäure ist mit IAA strukturell verwandt? Tryptophan.
112
+ - What do we mean with "plant tissue culture"? Plant tissue culture is a collection of techniques used to maintain or grow plant cells, tissues or organs under sterile conditions on a nutrient culture medium of known composition.
113
+ - Warum verwende ich "Phytase"? Um an das Phosphat in Pflanzen heranzugelangen (Phytat).
114
+ - Was ist die 3. Generation in der Pflanzenbiotechnologie? "Plant factories" die Pharmaceuticals produzieren.
115
+ - In der Biotechnologie, woraus entstehen die Kalluskulturen von Pflanzen? Aus dem "Explantat" einer Pflanze, das in einer Petrischale mit Phytohormonen behandelt wird.
116
+ - Warum schütteln wir eine pflanzliche Kallus-Kultur? Um sie mit CO2 zu versorgen.
117
+ - Wenn das Enzym "Dihydroflavinol-Reduktase" (DFR) ausgeknocked wird, ist was der Fall in der Pflanze? Weisse Blüten - denn DFR überführt farblose Pigment-Vorläufer in farbige Produkte.
118
+ - Wer hat den "golden rice" (mit)erfunden? Ingo Potrykus.
119
+ - Mit "transgenem Raps" will man welches Produkt erzeugen? PHB.
120
+ - What is the biggest hurdle to overcome in the production of foreign proteins in plants? The purification of the transgene-product from the mass of plant tissue.
121
+ - Welche Firma produzierte "StarLink Corn"? Aventis.
122
+ - Was ist die "Agroinfiltration"? Rekombinante Agrobakterien werden in Pflanzengewebe infiltriert, es erfolgt danach eine zeitlich begrenzte Expression im Gewebe, die Pflanze selbst bleibt jedoch unverändert.
123
+ - Can the Agrobacterium Ti-System be used in corn? No, corn is a monocot.
124
+ - Wie heisst "Agrobacterium tumefaciens" heute? Rhizobium radiobacter. URL: http://en.wikipedia.org/wiki/Agrobacterium_tumefaciens
125
+ - In plant biotechnology we also make use of zinc-finger nucleases (ZFNs). Each monomer usually contains how many zinc fingers? 3.
126
+ - What is the most important characteristics for plant breeding? Yield, Yield and Yield.
127
+ - In Plant Biotechnology, what is "Cisgenesis"? This is the genetic modification of a recipient plant with a natural gene from a crossable-sexually compatible-plant. Such a gene includes its introns and is flanked by its native promoter and terminator in the normalsense orientation. Cisgenic plants can harbour one or more cisgenes, but they do not contain any transgenes!
@@ -0,0 +1,64 @@
1
+ # =========================================================================== #
2
+ # === Pflanzenzüchtung
3
+ #
4
+ # Alles über Pflanzenzüchtung tag. (aka "plant breeding tag").
5
+ #
6
+ # Auch "Plant breeding - principles and methods".
7
+ # =========================================================================== #
8
+
9
+ - Für die Erteilung des Sortenschutzes gibt es die sogenannte <one>Registerprüfung</one>. Nenne 3 Kriterien hierzu. A: (1) Unterscheidbarkeit ("distinctness") (2) Homogenität ("uniformity") (3) Beständigkeit ("stability")
10
+ - Anderer Begriff für die <one>Elternsorte</one>? <one>Ursprungssorte</one>. []
11
+ - Unterschied zwischen <one>Art</one> und <one>Sorte</one>? (1) Arten sind biologische Einheiten, die zumeist nicht mit einander kreuzbar sind. (2) Sorten hingegen sind Formen innerhalb einer Art, von Gruppen von in sich ähnlichen Individuen.
12
+ - Wer waren die ersten bei der künstlichen Bestäubung von Dattelpalmen? Die "Assyrer".
13
+ - Nenne 3 Gründe, wieso der "Svalbard Global Seed Vault" (https://en.wikipedia.org/wiki/Svalbard_Global_Seed_Vault), auf den Spitzbergen, als Ort für den Pflanzensamen-Tresor gewählt wurde. A: (1) Permafrost (2) kann nicht überschwemmt werden (3) Erdbeben sind eher unwahrscheinlich
14
+ - Was meinen wir mit einer "Hybridpflanze"? Dies ist eine Pflanze, die durch die Kreuzung verschiedener Sorten miteinander entstanden ist.
15
+ - In plant breeding, how can we remove negative alleles practically? Via "self-fertilization" (inbreeding). This is highly efficient for removing negative alleles from a population.
16
+ - Name one advantage that "doubled haploidy" has compared to "conventional inbreeding". A: The "conventional inbreeding procedures" takes six generations to achieve complete homozygosity. The "doubled haploidy" method achieves it in just one generation.
17
+ - Mention two methods for making "doubled haploids". A: (1) colchicine (2) selfing
18
+ - In plant breeding, why do we make use of "double haploid plants"? Because that way we can create "homozygous plants" much more rapidly so.
19
+ - In TILLING, which substance is usually used to induce the mutations? EMS. Sometimes NaN3.
20
+ - Give another term for "cross pollination" and "self pollination". A: (1) cross pollation: allogamy (2) self pollation: autogamy
21
+ - Plant breeding activities can be grouped into which three principal phases? (1) Designing of a breeding goal (2) Generation of genetic variability (3) Utilization of genetic variability
22
+ - Name the 2 most common chemical substances used for TILLING. A: (1) EMS (2) NaN3
23
+ - Name 3 advantages of TILLING. A: (1) efficient for small genes (2) applicable to almost every organism (3) mutations are irreversible
24
+ - What can we achieve via "haploid inducer lines"? We can eliminate "unwanted" chromosomes.
25
+ - Nennen Sie das Ursprungsgebiet von "Mais". A: Mexiko.
26
+ - Nennen Sie das Ursprungsgebiet von "Weizen". A: Aus dem Gebiet des fruchtbaren Halbmonds.
27
+ - Nennen Sie das Ursprungsgebiet von "Sojabohne". A: Ostasien.
28
+ - Nennen Sie das Ursprungsgebiet von "Kartoffel". A: In den Anden; also Venezuela, Argentinien aber auch die Insel Chiloe.
29
+ - Nennen Sie das Ursprungsgebiet von "Gerste". A: Der Vordere Orient; fruchtbarer Halbmond.
30
+ - Which level of annual yield increase (in%) is likely to be needed to keep up with the projected increase in demand of e.g. wheat during the coming decades? Required yield increase per year: ~1.7%.
31
+ - What do you think was the contribution of Plant Breeding in the yield increase of for example WHEAT during the past 40 years in Central Europe? A "yield increase" of about ~30%, due to improved cultivars.
32
+ - Der "Internationale Verband zum Schutz von Pflanzenzüchtungen", UPOV, ist eine zwischenstaatliche Organisation mit Sitz in Genf. Zweck des Übereinkommens? Der "Schutz neuer Pflanzensorten".
33
+ - What is the genetic status of a doupled haploid? Homozygous.
34
+ - Name a pioneer in "wheat cytogenetics". A: Ernest Robert Sears.
35
+ - Give an example for a plant that is an "allopolyploid species". A: Rapeseed.
36
+ - Why is "mutation breeding" used? So that we can create new variation that is not found in nature.
37
+ - In 2008, the world average wheat yield was how much per ha? About 3 t per ha (3t/ha).
38
+ - When did the "Green Revolution" occur, roughly? Between the 1930s and the late 1960s.
39
+ - Bei welcher Züchtungsmethode bei Pflanzen wird "Heterosis" verwendet? Bei der "Hybridzüchtung".
40
+ - Was ist "synthetisches Saatgut"? Synthetisches Saatgut ist vegetatives Vermehrungsmaterial nackt oder in einer wasserhaltigen oder trockenen Umhüllung. Es besteht i.d.R. aus somatischen Embryonen und einer schützenden Umhüllung.
41
+ - Bei der Sortenwahl von Pflanzen, nenne vier Kriterien. A: (1) Ertragsleistung (2) Qualität (3) Ertragssicherheit (4) Arbeitserleichterung
42
+ - Wer gilt als "Entdecker der Insektenbestäubung"? Kölreuter.
43
+ - Was ist Herkogamie? Als Herkogamie wird in der Botanik die räumliche Trennung von männlichen und weiblichen Geschlechtsorganen innerhalb einer Blüte bezeichnet.
44
+ - Bei der Pflanzenzüchtung gibt es die sogenannte "Wertprüfung". Wie lange dauert diese? Zwischen zwei bis drei Jahre.
45
+ - Vorläufermethode der Antherenkultur? Die "Bulbosum-Methode".
46
+ - A. W. für "Populationszüchtung"? Panmiktische Fremdbefruchtung.
47
+ - Nenne 2 wichtige Ziele in der Pflanzenzüchtung, die auch erklären wieso wir Pflanzenzüchtung betreiben. A: (1) Ertragsverbesserung (2) Ertragssicherung
48
+ - A. W. für "Kastration" in der Pflanzenzüchtung? Emasculation.
49
+ - Was meinen wir mit "Transgression" in der Pflanzenzüchtung? Dies ist die neue, zusätzliche Variabilität.
50
+ - Was ist die "Transgressionszüchtung"? Dies ist die Steigerung eines Merkmals über die elterlichen Ausprägungen hinaus.
51
+ - Was steht am Beginn einer züchterischen Arbeit in der Pflanzenzüchtung? Die Formulierung eines Zuchtziels.
52
+ - Nenne 3 verschiedene natürliche Reproduktionssysteme in der Pflanzenzüchtung. A: (1) Selbstbefruchtung (2) Fremdbefruchtung (3) Asexuelle Vermehrung
53
+ - Wie können wir diploide Pflanzen aus haploiden Pflanzen erhalten? Mit Hilfe von "Colchicin".
54
+ - Was ist "Amphimixis"? Dies ist die geschlechtliche Vereinigung von Genomen zweier Individuen.
55
+ - Bei der Pflanzenzüchtung, was ist die "Registerprüfung"? Dies ist eine amtliche Prüfung einer Sorte auf Unterscheidbarkeit, Homogenität und Beständigkeit im Rahmen des Sortenzulassungsverfahren.
56
+ - Das Saatgutgesetz entstand in Österreich wann? 1997.
57
+ - Das "Centro Internacional de Mejoramiento de Maíz y Trigo" befindet sich wo? In Mexiko.
58
+ - In der Pflanzenzüchtung, was heisst "cop-value"? "coefficient of parentage".
59
+ - Gib ein Beispiel an für die "genetische Verwundbarkeit". A: Mais ("Texas Cytoplasma"). Diese Pflanze ist männlich steril, zugleich ist sie anfälliger für die Blattkrankheit "Southern Corn Leaf Blight".
60
+ - Genetische Erosion hat welche 2 möglichen Folgen? A: (1) Genetische Verarmung: Verminderung der genetischen Diversität im Anbau (2) Genetische Verwundbarkeit: erhöhtes Risiko für das großflächige Auftreten von Krankheiten
61
+ - Was meinen wir mit dem "primären Genpool" in der Pflanzenzüchtung? Dies ist die Kulturart selbst und leicht damit kreuzbare Arten.
62
+ - Was meinen wir mit "Landsorten"? Dies sind Pflanzensorten, die von Landwirten vermehrt werden.
63
+ - Was meinen wir mit "genetischen Ressourcen"? Genetische Ressourcen sind die Gesamtheit aller Genotypen einer Kulturart, die zur Züchtung dieser Art zur Verfügung stehen und somit für Pflanzenzüchtung und landwirtschaftlichen Anbau nutzbar sind.
64
+ - Nenne 4 Gründe wieso wir die Biodiversität in der agrarischen Produktion von Pflanzen erhalten sollten. A: (1) Artenvielfalt (2) Sortenvielfalt (3) verringertes Produktionsrisiko (4) größere Produktvielfalt
@@ -0,0 +1,50 @@
1
+ # =========================================================================== #
2
+ # === Plant development
3
+ #
4
+ # Everything about plant-development.
5
+ # =========================================================================== #
6
+
7
+ - Eine Pflanze hat welche 3 <one>Grundorgane</one>? (1) <one>Sprossachse</one> (2) <one>Wurzel</one> (3) <one>Blätter</one> []
8
+ - How long does it take <one>Arabidopsis</one>, from <two>germination</two> to <two>mature seed</two>? About <one>6 weeks</one>.
9
+ - Besitzen <one>Pflanzen</one> <two>Hox-Gene</two>? Nein.
10
+ - Das ruhende Zentrum ("quiescent center") in Arabidopsis ist Teil ... ? Der "Wurzelspitze".
11
+ - Nenne 2 verschiedene Möglichkeiten, wie wir die Kallusbildung bei Pflanzen im Labor induzieren können. A: (1) Zugabe von Kokosnussmilch (2) Zugabe von Auxin
12
+ - In Arabidopsis thaliana, after the "late heart stage", which stage comes next? The "mature embryo stage".
13
+ - Bildet eine Pflanze mehr oder weniger Blätter wenn sie weniger Licht erhält? Sie bildet mehr Blätter.
14
+ - In welchem Organismus finden wir "Monopteros"? In Arabidopsis thaliana. MONOPTEROS kodiert für einen Transkriptionsfaktor, der wichtig ist bei der Entstehung der "embryonalen Achse".
15
+ - What are "periclinal" and "anticlinal" cell divisions? (1) periclinal: parallel to the organ surface (2) anticlinal: at right angle to the surface
16
+ - At the 16-cell stage of plants, how do we call the "epidermal layer" of a plant? Dermatogen.
17
+ - Name 2 functions of the plant "suspensor". A: (1) Attach the embryo to maternal tissue (2) it is a source of nutrients
18
+ - Which plant hormone is important in order to establish the apical-basal axis? Auxin.
19
+ - PIN7 is what type of protein? PIN7 is an auxin-efflux protein.
20
+ - Auxin, in general, may have what role in regards to Aux/IAA proteins? It promotes the ubiquitination and degradation of their transcriptional regulator proteins.
21
+ - In the plant flower model ABCDE, which combinations are mutually exclusive? Class A and C genes act "mutually antagonistic".
22
+ - There are the "WOX transcription factors". What does WOX stand for? "WUSCHEL-related homeobox".
23
+ - Was tut das "Popeye protein"? Diser bHLH Transkriptionsfaktor spielt eine wichtige Rolle im Eisen-Haushalt einer Pflanze, indem andere Gene reguliert werden. URL: https://www.ncbi.nlm.nih.gov/pubmed/20675571
24
+ - Two major events are required for embryonic patterning in plant embryos. Which ones? (1) Activate zygotic genome (2) Coordinate gene expression programs
25
+ - In plant development, the "maternal-to-zygotic transition", give another term for this. A: This is the "transfer of developmental control to the zygotic genome".
26
+ - Give another term for "morphogenesis". A: Pattern formation.
27
+ - "Embryo morphogenesis" in plants has which two major steps/phases? (1) Morphogenesis (2) Maturation
28
+ - In plant development, the protein SSP may be important. What does SSP code for? SSP encodes a "receptor-like protein".
29
+ - In plant development, YDA may be important. What does YDA encode for? YDA encodes "MAP3K", mitogen-activated triple kinase.
30
+ - In Arabidopsis morphogenesis, the last step in it can be called the "mature" phase. What is the name of the three steps before this last step? (1) Late globular (2) Heart (3) Torpedo
31
+ - Auxin belongs to which family? Auxin belongs to the "ARF family of transcription factors".
32
+ - Fördern oder hemmen AUX/IAA Komplexe eher die Transkription? Sie hemmen eher die Transkription.
33
+ - The logic behind the spatial layout of gene expression that patterns a developing flower, is similar to ...? That of Hox gene action in patterning the body axis in animals.
34
+ - Some differentiated cells of the adult plant may retain totipotency - and so behave like ...? Animal embryonic stem cells.
35
+ - A. W. für "apical-basal axis"? Shoot-root polarity of the plant body.
36
+ - In plant development, what means "TAI"? Transcriptome age index.
37
+ - In plant genomics, what does the "TAI" tell us? It represents the "mean evolutionary age of a transcriptome".
38
+ - We may say a "high TAI value" from transcriptomes of early plant embryonic stages. What does this mean? It means that these are assumed to be "evolutionarily young".
39
+ - AUX/IAAs degradation is mediated by which complex? It is mediated by the "SCF1 complex".
40
+ - RPK1 and TOAD2 receptor-like kinases are redundantly required for ...? Radial patterning.
41
+ - Nenne einen "Modellorganismus für Bäume". A: Populus trichocarpa; hat ein relativ kleines Genom von 470 Mb Basenpaaren.
42
+ - Give two examples for "primary meristems" in plants. A: (1) shoot apical meristem (2) root apical meristem
43
+ - What does the "STM gene", the STM, stand for? Shoot Meristemless.
44
+ - Arabidopsis mag im Zuge der Entwicklung des Embryos einige interessante Gene oder Mutanten dieser Gene exprimieren, die abgekürzt werden. So gibt es "STM", "CLV" und "CUC". Was heissen die jeweils? (1) STM: Shoot meristemless (2) CLV: Clavata (3) CUC: Cup-shaped cotyledons
45
+ - Give another term for "sexually mature state" in a plant. A: To "transition towards flowering".
46
+ - The ABC model of flower development was first formulated in what year? 1988.
47
+ - STM is a ... identity gene. A: It is a "meristem identity gene".
48
+ - Name a protein WUSCHEL interacts with. A: CLAVATA.
49
+ - How do we call the "male part of a flower"? Stamen.
50
+ - What is "Florigen" assumed to do? This molecule should be responsible for controlling and triggering flowering in plants.
@@ -0,0 +1,136 @@
1
+ # =========================================================================== #
2
+ # === POPULATIONSGENETIK Tag
3
+ #
4
+ # Pop tag. Popgen tag. Evolutionsgenetik tag. Evogen tag.
5
+ # Auch RFLP und Populationsuntersuchungen. Evolutionsgenetik.
6
+ # Sowie "conservation genetics".
7
+ # =========================================================================== #
8
+
9
+ - Was ist eine <one>genetische Bürde</one> in der Populationsgenetik? Gib ein Beispiel hierfür. A: Das Vorhandensein mancher Allele, wie "Sichelzellanämie" beim Menschen, ist eine genetische Bürde für eine Population.
10
+ - Anderes Wort für "short tandem repeat loci"? <one>Microsatellites</one>.
11
+ - A <one>genetic bottleneck</one> leads to ...? A <one>loss of diversity</one>. []
12
+ - Name a general way how there may be a reduction of variation between/in populations. A: By <one>migration</one>.
13
+ - A population may go through a <one>population bottleneck</one>. What direct consequences may arise? There may be <one>a drastic reduction of population size</one>.
14
+ - Name a famous concept that originated from <one>population genetics</one>. A: The <one>concept of the gene pool</one>.
15
+ - Name the two most commonly studied types of polymorphisms in population genetics. A: (1) SNPs (2) microsatellites
16
+ - A "haplotype network analysis" for humans usually analyses what first? The <one>mtDNA</one>. URL: https://en.wikipedia.org/wiki/Mitochondrial_DNA
17
+ - What is the "HapMap"? This is a genome-wide haplotype map. URL: https://en.wikipedia.org/wiki/International_HapMap_Project
18
+ - Name an important goal of population genetics. A: To understand the transmission of alleles from one generation to the next.
19
+ - What is "negative assortative mating"? When unlike individuals mate - opposites attract.
20
+ - Why may "genetic drift" be bad? It may "lead to loss of genetic variation".
21
+ - What were the first used DNA-markers? "RFLPs": "restriction fragment length polymorphisms". URL: https://www.ncbi.nlm.nih.gov/probe/docs/techrflp/
22
+ - SNPs can occur in which 3 general places in a genome? (1) "exons" (2) "introns" (3) "regulatory regions"
23
+ - Ein Mensch der an "Favismus" leidet isst Ackerbohnen. Was passiert? Eine "Hämolyse" kann ausgelöst werden, welche in seltenen Fällen sogar zum Tod führen kann.
24
+ - When was "AFLP" established? In "1995". URL: https://de.wikipedia.org/wiki/AFLP
25
+ - Define "absolute fitness". A: This is "the total number of offspring" an individual has.
26
+ - When may we see a fitness value of 0? If a member of a population dies, without having had an offspring.
27
+ - Warum sind "populationsgenetische Untersuchungen am Menschen" so schwierig? Aufgrund der "langen Generationsdauer".
28
+ - By definition - in a declining population, the "average number of offspring" must be ... (a constraint)? "Below 1".
29
+ - Give another word for the "ability to survive and reproduce". A: "Fitness". URL: https://de.wikipedia.org/wiki/Fitness_%28Biologie%29
30
+ - In der Populationsgenetik, was heisst ein "fixiertes Allel"? Wenn alle Mitglieder einer Population "homozygot für das jeweilige Allel" sind. Das heisst konsequenterweise auch, das diese Population kein alternatives Allel mehr besitzt.
31
+ - How do we call "SNPs located outside of coding sequences"? "Silent SNPs".
32
+ - Die Hardy-Weinberg Regel gilt nur für welche Populationen genau? Für "Populationen unendlicher Größe".
33
+ - Why may it be of important practical value to understand the Hardy-Weinberg equation? Because we may wish to know the "frequences of disease-causing alleles in a population".
34
+ - When do genotypes re-form? Genotypes re-form from alleles in each generation.
35
+ - For a large population, how to (realistically) analyze its gene pool? We take a "representative sample" of the population.
36
+ - What does the abbreviation "STRP" stand for, in population genetics? "Short tandem repeats". URL: https://en.wikipedia.org/wiki/Microsatellite
37
+ - What is the "allele frequency"? How often a particular allele is found in a population.
38
+ - Is a population larger than the "effective population"? Yes.
39
+ - Wozu kann die "effektive Populationsgröße" verwendet werden? Man kann sie verwenden um die "kleinste überlebensfähige Population" (MVP = "minimum viable population") zu berechnen.
40
+ - In population genetics, what does the abbrevation "MVP" stand for? "Minimum viable population".
41
+ - Vergleiche die "Substitutionsrate von Genen". Bei welchen Genen mögen wir wenig Substitutionen finden? Bei Genen die eine wichtige Funktion haben.
42
+ - How do we call the introduction of new genetic variation into an (inbred) population? "Genetic rescue".
43
+ - The amount of "drift" in any given population, depends heavily on which single characteristic? "Population size".
44
+ - In population genetics: if we "eliminate many alleles", we also eliminate a large proportion of ...? The "genetic diversity".
45
+ - Welche zwei Komponenten umfasst die "phänotypische Variation"? "Genetische Variation" + "umweltbedingte Variation".
46
+ - What is the "life expectancy of a genotype"? The life expectancy of a genotype is "a single generation".
47
+ - Is there a locus that is "always hemizygous"? Yes - male XY. They are either Xa Y or XA Y.
48
+ - Welche Allele möchte eine Population loswerden? "Lethale Allele"; sprich - alle Allele die als genetische Last wirken können.
49
+ - Wie nennen wir die Unterschiede zwischen individuellen Genomen einer Art? "Polymorphismen".
50
+ - How to indicate consanguinity between two people in a genetic pedigree chart? Draw a "double horizontal line".
51
+ - Wie hat man erstmals "repetitive Sequenzen" entdecken können? Indem man die "Reassoziationskinetik von Genomen" verglichen und analysiert hat. Hierbei wird die DNA geschert, erhitzt und somit denaturiert, und danach unter Standardbedingungen wieder reassoziieren lassen. Man erkannte, das repetitive DNA schneller reassoziiert als nicht-repetitive DNA.
52
+ - In Evolutiongenetics, name the 6 types of "substitutions" possible. A: (1) "single substitution" (2) "multiple substitution" (3) "coincidental substitution" (4) "parallel substitution" (5) "convergent substitution" (6) "back substitution"
53
+ - Gibt es Nachteile in einer Population zu leben? Falls ja nenne drei Nachteile. A: (1) Krankheitsübertragung (2) Futterkonkurrenz (3) Individuen sind auffälliger in einer Gruppe
54
+ - Small populations lose "genetic variation" over time through ... ? (1) "inbreeding" (2) "genetic drift"
55
+ - Name two ways how "new alleles" enter a population, starting with the letter "m". A: (1) "Mutation" (2) "Migration"
56
+ - In population genetics, what is meant with "genetic rescue"? This is the introduction of new genetic variation into an (inbred) population, in order to ensure its long-term survival.
57
+ - Most "natural populations" can be subdivided into ...? demes.
58
+ - Humans have n microsatellites in their genome? Over a million. URL: https://en.wikipedia.org/wiki/Microsatellite
59
+ - Welche Technik nennen wir "RAPD"? "Randomly amplified polymorphic DNA".
60
+ - A. W. für "Mikrosatellit"? "SSR" (simple sequence repeat)
61
+ - Was ist die Grundlage für die Entstehung von Multigenfamilien? "Genduplikation".
62
+ - When is the condition of "random mating" fulfilled? When all individuals in the given population are "equally likely" to be choosen as a mate.
63
+ - Give a specific example for "positive assortative mating". A: This is for example when tall individuals preferentially mate with other tall individuals.
64
+ - Name an important goal of population genetics. A: Understand the transmission of alleles from one generation to the next.
65
+ - What is "assortative mating"? This is when "individuals choose mates based on resemblance to themselves".
66
+ - Give 3 example for random mating. A: (1) Assortative mating (2) isolation by distance (3) inbreeding
67
+ - Name 3 types of bias in mating choice violating the assumption of "random mating". A: (1) assortative mating (2) isolation by distance (3) inbreeding
68
+ - In population genetics, what do we mean with the term "Inbreeding"? This is the tendency for mates to be more closely related than two individuals drawn at random from the population.
69
+ - What does the "inbreeding coefficient" tell us? The inbreeding coefficient (Fi) of an individual is the probability that both alleles of a randomly chosen locus are identical by descent.
70
+ - Nenne einen Unterschied zwischen "VNTRs" und "STRs". A: STRs sind viel kürzer (VNTRs sind somit viel länger).
71
+ - A. W. für "random mating occurs"? "Panmixis".
72
+ - What exactly is the key assumption underlying the Hardy-Weinberg principle? The assumption of "random mating".
73
+ - In der Populationsgenetik, was ist eine sogenannte "ideale Population"? Eine Population ohne 'genetische Evolution', sprich - eine Population deren Genpool sich nicht verändert.
74
+ - How do we call SNPs with a "frequency below 5%"? "Rare SNPs".
75
+ - Wofür steht die Abkürzung "AFLP"? "Amplified fragment length polymorphism".
76
+ - Why are microsatellites better for population genetic analysis than SNPs? Because there are more number of alleles at a microsatellite.
77
+ - Gilt beim Panda die Hardy-Weinberg Regel? Nein - er hat "eine zu geringe Individuenanzahl".
78
+ - How can we mathematically connect phenotype to genotype? We "use a function" that connects the "genotype" and the "environment", such as: P = f(G, E)
79
+ - Wie können Populationen schrumpfen? (1) "Sterberate" (2) "Emigration"
80
+ - Should we rather use linked or non-linked loci in population genetics? We should rather use "non-linked loci".
81
+ - How can we "globally measure the distribution of SNPs"? Via "DNA microarrays".
82
+ - Are there "more rare SNPs" or "more common SNPs" in the human genome? There are "more rare SNPs", which is logical if we remember the "definition of a rare SNP".
83
+ - Another term for "genotype"? "Allelic composition".
84
+ - SNPs occur within genes. They can be classified into one of which three groups? (1) "synonymous SNPs" (2) "nonsynonymous SNPs" (3) "nonsense SNPs"
85
+ - What does it mean when we have a "polymorphic locus"? This is "a locus that has more than one allele".
86
+ - Wie ist der "Genpool" definiert? Dies sind "alle Allele der Mitglieder einer Population".
87
+ - What is a "haplotype network"? This network "shows the relationships among different haplotypes".
88
+ - "Natural selection" always acts on ... ? The "phenotype".
89
+ - Nenne die Hauptbedingung dafür, das ein "dominant-letales Allel" in einer Population fortbestehen kann. A: Die betroffene Person muss Kinder haben.
90
+ - Why is the name "gene pool" actually a misnomer? Because we should call this the "allele pool".
91
+ - How does the gene pool of a species change, as time passes by? The gene pool, due to mutations, becomes progressively "more heterogeneous".
92
+ - Name two motivations for "conservation genetics" today. A: (1) to "reduce the current rates of extinction" (2) to "preserve biodiversity"
93
+ - What is the difference between an "effective population" and "just" a population? An "effective population" is one that can reproduce - thus, they are capable of "genetic exchange".
94
+ - Die Krankheit "Favismus" ist, genetisch gesehen, auf welchem Chromosom zu finden? Auf dem "X-Chromosom".
95
+ - In einem "Dendrogramm", wie nennen wir die terminalen Äste? OTUs: "operational taxonomic units".
96
+ - Give an example for a "morphometric trait". A: "Body weight".
97
+ - Definiere den Begriff "Populationsgenetik". A: Dies ist die Untersuchung der genetischen Variationen in Populationen - und wie sich diese im Laufe der Zeit verändern.
98
+ - Wie nennen wir den "Erblichkeitsgrad" mit einem Fachwort? "Heritabilität".
99
+ - Wo finden wir allgemein eine "geringere, interspezifische Diversität"? Bei Ökosystemen mit einer "schwierigen Lebensumgebung".
100
+ - Give another term for "deleterious mutations". A: "Mutational load".
101
+ - Give an example in population genetics about a gene-culture coevolution. A: The early european humans keeping lactase active throughout their lifetime.
102
+ - In population genetics, we can apply the so-called "F-statistics". In particular, what does F IS tell us? F IS is a measure of departure from the Hardy-Weinberg (HW) proportions, within local subpopulations, due to "nonrandom mating".
103
+ - Give an example for a "meristic trait". A: The number of offspring that an individual has.
104
+ - What exactly is "linkage disequilibrium"? Non-random association of alleles at two or more loci (marker).
105
+ - Name 2 different "marker types" that could be used in population analysis. A: (1) dominant markers (2) co-dominant markers
106
+ - A. W. für "Panmixie", auf Deutsch? Zufallspaarung.
107
+ - Name a way to deal with "complex pedigrees" in population genetics. A: By making use of the "tabular method".
108
+ - Which 3 steps do we require in an "AFLP" (Amplified fragment length polymorphism) experiment? (1) Restriction enzyme digestion (2) Ligation of adaptors (3) Selective amplification of restriction fragments
109
+ - The "microsatellite polymorphism" is mainly caused how? By "replication slippage".
110
+ - Give another name for a "polymorphic locus". A: multiallelic locus.
111
+ - What is an "Ecotype"? An Ecotype is a subpopulation within a breed that is genetically adapted to a very specific habitat.
112
+ - What do we mean with "allelic diversity"? Allelic diversity is the "average number of alleles per locus".
113
+ - A. W. für "population size" (auch englisch)? census size.
114
+ - What is meant with an "at-risk breed"? This is a breed with demographic characteristics suggesting that it will fail to exist in the future. A "conservation programme" may be able to rescue such a breed.
115
+ - Give an example for an "indirect genetic relationship". A: Two individuals with a common ancestor
116
+ - Es gibt eine Krankheit die "Favismus" genannt wird. Woher kommt dieser Name? Von "faba", Bohne.
117
+ - What do we mean with the term "Inbreeding depression"? Inbreeding depression is the reduced survival and fertility of offspring of related individuals.
118
+ - How is a "wild-type allele" defined? More than 1% in a natural population under study.
119
+ - Wie nennen wir eine Population, die das Hardy-Weinberg Gesetz erfüllt? Eine Mendel-Population.
120
+ - Bei den "Sequenzevolutions-Modellen" gibt es das berühmte "Jukes-Cantor" Modell. Welchen Vorteil hat es? Es berücksichtigt "Mehrfachsubstitutionen".
121
+ - A. W. für "minisatellites"? VNTRs (variable number of tandem repeats).
122
+ - A. W. für "qualitative traits"? categorical traits.
123
+ - What do we mean with "genetic diversity"? This is a part of biodiversity as a measure of genetic variability present in a population as a consequence of its evolution.
124
+ - Give 5 reasons for conserving biodiversity. A: (1) Economic value of bio-resources (2) Ecosystem services (3) Aesthetics (4) Cultural value (5) Ethical reasons
125
+ - What is the goal of "conservation genetics"? To deal with the genetic factors that affect the risk of extinction of a population/species.
126
+ - How long are microsatellite loci? 2-6 base pairs
127
+ - Ab wann sagen wir das ein genetischer Locus "polymorph" ist? Wenn das seltenste Allel dieses Locus mit einer Häufigkeit von zumindest 0.01% in einer Population auftritt.
128
+ - Was bezeichnen wir mit "Polymorphismus"? Dies ist ein Gen mit vielen verschiedenen Allelen, von welchen keines in einer Population dominiert.
129
+ - Nenne eine Hypothese zur Entstehung von Introns. A: Die "Intron-early" Hypothese.
130
+ - Was ist die "Sequenzdivergenz"? Dies ist ein Maß für die Differenzierung zwischen homologen Sequenzen.
131
+ - Compare the genetic variety between crop plants with wild plants. A: Less genetic variation in crop plants.
132
+ - Name four forces that upset the Hardy-Weinberg equilibrium. A: (1) Migration (2) Mutation (3) Natural Selection (4) Random genetic drift
133
+ - Was ist "Inzucht Depression"? Dies ist ein Maß für den Verlust von Fitness, der durch Inzucht verursacht wird.
134
+ - How many alles per locus do SNPs have? Never more than 4.
135
+ - Was sind die beiden Hauptvorhersagen des Hardy-Weinberg Gesetzes? (1) die Allelhäufigkeit in einer Population verändern sich nicht von einer Generation zur anderen (2) Man kann Genotyphäufigkeiten nach einer Generation zufälliger Paarung aus der Allelhäufigkeit vorhersagen
136
+ - Welches ist die häufigste Enzym-Krankheit des Menschen? Favismus.
@@ -0,0 +1,186 @@
1
+ # =========================================================================== #
2
+ # === Posttranslationale Modifikation von Proteinen Tag
3
+ #
4
+ # Farnesylierungen, Geranylierungen und Myristoylierungen.
5
+ #
6
+ # Ptm tag. posttrans tag.
7
+ # =========================================================================== #
8
+
9
+ - Kann die Massenspektrometrie Methylierungsstellen in Proteinen nachweisen? Ja.
10
+ - <one>Carbamidomethylation</one> (CAM) is a deliberate post-translational modification introduced to which amino acid? To cysteine residues, by reacting it with iodoacetamide.
11
+ - Nenne ein Protein das <one>geranylgeranyliert</one> wird. A: Das kleine G-Protein <one>Rho</one>. []
12
+ - How many of the human proteins are glycosylated? About <one>50%</one> of them. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5358406/
13
+ - <one>Ubiquitinierung</one> findet an welcher Aminosäure statt? An <one>Lysinen</one>. []
14
+ - Gib ein Beispiel für eine <one>Lipidierung</one>. A: Der <one>GPI-Anker</one>.
15
+ - Nenne eine <one>PTM</one>, welches die Carboxylgruppe eines "terminalen Cysteins" methyliert. A: Die <one>Prenylierung</one>. URL: https://de.wikipedia.org/wiki/Prenylierung
16
+ - Nenne drei nicht-enzymatische, posttranslationale Modifikationen von Proteinen. A: (1) <one>Inteine</one> (2) <one>Maillard-Reaktion</one>
17
+ - Die <one>Hedgehog-Proteine</one> sind autokatalytisch aktiv und weisen eine Ähnlicheit zu ... auf. A: Zu den <one>Inteinen</one>.
18
+ - <one>Protein geranylgeranyltransferases</one> consist of n subunits? They consist of "two subunits".
19
+ - A <one>mannose sugar</one> can be added as part of a post-translation modification, onto which amino acid? Onto a <one>tryptophan residue</one>.
20
+ - Nicht alle der 20 Aminosäuren werden posttranslational modifiziert. Welche fünf Aminosäuren werden nicht modifiziert? <one>VALIF</one> (aka <three>V-A-L-I-F</three>), ähnlich wie <two>VALID</two>. (1) <one>V</one> - Valin (2) "A" - Alanin (3) "L" - Leucin (4) <one>I</one> - Isoleucin (5) <one>F</one> - Phenylalanin
21
+ - Inkludiert <one>UniProt</one> auch Informationen zu <two>post-translationalen Veränderungen</two> an Proteinen? Ja. URL: https://www.uniprot.org/ []
22
+ - Existieren Histon_Demethylasen? Ja, seit 2004 ist dies dokumentiert.
23
+ - Sind <one>Kinasen</one> das selbe wie <two>Proteinkinasen</two>? Nicht unbedingt. Enzyme, die die ATP-abhängige Phosphorylierung katalysieren werden "Kinasen" genannt. Ist das Substrat ein Protein so nennt man diese Kinasen "Proteinkinasen" ("PK").
24
+ - Name three possible post-translation modifications of <one>serine</one> and <one>threonine</one>. A: (1) Phosphorylation (2) O-linked glycosylation (3) N-acetylation (N-terminus)
25
+ - Wieviele C-Atome haben jeweils <one>Farnesyl</one> und <one>Geranyl</one>? (1) "Farnesyl": <one>C15</one> (2) "Geranyl": <one>C20</one>
26
+ - Ist die Glykosylierung von Proteinen wichtig für die molekulare Erkennungs- und Sortierungsvorgänge von Proteinen? Ja.
27
+ - Für die <one>Geranylgeranylierung</one>: weche Aminosäure ist am wichtigsten? <one>Cystein</one>, da der Prenylrest auf die -SH Gruppe von Cystein übertragen wird.
28
+ - Bei welchem <one>zellulären Prozess</one> spielt eine gezielte Myristoylierung von Proteinen eine Rolle? Bei dem Signalweg der "Apoptose"; insbesondere über "Myristoylierung von Aktin".
29
+ - The <one>N-acetyl Lysine group</one> is specifically recognized by discrete protein domains called ... ? <one>Bromodomains</one>.
30
+ - Nenne einen Rezeptor, der <one>sulfatiert</one> wird. A: Der <one>Chemokine Rezeptor CCR5</one>.
31
+ - Alle <one>Sulfatasen</one> benötigen die Ausbildung eines <lightseagreen>Fgly</lightseagreen> im aktiven Zentrum. Wofür steht <lightseagreen>Fgly</lightseagreen>? <one>C-alpha-Formylglycin</one>.
32
+ - Welcher <one>Zucker</one> wird direkt bei N- oder O-glycosidischer Verknüpfung verwendet? <one>N-Acetylglucosamin</one>.
33
+ - <one>SAM</one> ("S-Adenosylmethionin") tritt im Stoffwechsel als Methyldonor auf. Dabei wird es zu welchen zwei Produkten hydrolysiert? (1) <one>Adenosin</one> (2) <one>Homocystein</one>
34
+ - Wer ist <one>der Donor für Methylgruppen</one>, die im Zuge von Methylierungen in der Zelle eingesetzt werden? <royalblue>SAM</royalblue> (<one>S-Adenosyl methionine</one>). URL: https://en.wikipedia.org/wiki/S-Adenosyl_methionine
35
+ - Die <one>Sulfatierung</one> findet an welchen Aminosäuren statt? An <one>Tyrosinen</one>.
36
+ - Ausser <one>Arginin</one> und <one>Lysin</one>: nenne drei weitere Aminosäuren die N-Methyliert werden können. A: (1) "Histidin" (2) "Asparagin" (3) <one>Glutamin</one>
37
+ - <one>Acetylierung</one> spielt in Bakterien eine wichtige Rolle. Gib ein Beispiel hierzu. A: Die Umwandlung von Glutaminsäure zu N-Acetylglutaminsäre, als wichtigen Zwischenschritt für die "Biosynthese von Ornithin" in Bakterien.
38
+ - <one>Poly-Ubiquitin</one> führt zum Abbau von Proteinen. Wieviele Ubiquitine müssen minimal angeheftet werden? <one>Vier</one>. "Ub4" ist die minimale Länge des Ub-Tags, die zum Transport ins Proteasom und dem anschließenden Abbau des Proteins führt.
39
+ - Proteins with <one>SH2 domains</one> gain which ability? They can bind to <one>phosphorylated Tyrosines</one>.
40
+ - <one>Acetylation of Lysines</one> in the p53-transcription factor can prolong its half-life. Why is that so? Because this acetylation <one>prevents ubiquitinylation at these residues</one>.
41
+ - Nenne eine PTM an <one>Prolin</one>. A: Die <one>C-Hydroxylierung</one> von Prolin in Kollagen.
42
+ - Name four aminoacids that can be <one>glycosylated</one>. A: (1) "Asparagine" ("N") (2) "Serine" ("S") (3) "Threonine" ("T") (4) <one>Tryptophan</one> (<royalblue>W</royalblue>)
43
+ - Name a fairly new technology that allows us to study <one>post-translational protein modifications</one>. A: <royalblue>MudPIT</royalblue>: <one>multidimensional protein identification technology</one>. This is a combinatorial method, combining "chromatography" in conjunction with "mass spectrometry".
44
+ - Gibt es die <one>S-Nitrosylierung</one> als PTM? Ja.
45
+ - In welchem Jahr wurde <one>S-Adenosylmethionin</one> entdeckt? Im Jahre <one>1952</one>.
46
+ - <one>Farnesylation</one> makes use of which motif? <one>CaaX</one>.
47
+ - In regards to <one>hydrophobicity</one>: does "methylation" on an aminoacid, as part of a post-translational operation, have any change to it? Yes - methylation, aka "the addition of a -CH3 methyl group", in general <one>increases the hydrophobic character of that amino acid</one>.
48
+ - Welchen Cofaktor verwenden die <one>Sirtuine</one>? <one>NAD</one>. URL: https://en.wikipedia.org/wiki/Sirtuin
49
+ - Typically, <one>Ras family proteins</one> may have a "CaaX motif" at the C terminus. Which modification is associated with this motif, usually? <one>Farnesylation</one> - especially when X is a small amino acid, such as "Alanin" or "Serin".
50
+ - In welchem Protein mögen wir <one>farnesyliertes Cystein</one> finden? Im <one>Signalüberträgerprotein Ras</one>.
51
+ - Give a slightly better word for the term <one>phosphorylation</one> in living cells. A: <one>ATP-dependent phosphorylation</one>.
52
+ - <one>SAM</one>, der Methylgruppen-Donor in der Zelle, besteht aus welchen zwei Komponenten? (1) <one>Adenosin</one> (2) <one>Methionin</one>
53
+ - Bei den Phosphorylierungs-Reaktionen: ist die "Hydroxyl-Gruppe" wichtig? Ja - sie wird als <one>Nukleophil</one> benötigt.
54
+ - <one>Histidin</one> kann phosphoryliert werden; die Phosphat-Gruppe wird danach oft auf welche Aminosäure übertragen? Auf <one>Aspartat</one> (<royalblue>D</royalblue>).
55
+ - <one>SH2 Domänen</one> erkennen was? <one>Phosphotyrosin</one> (<royalblue>pY</royalblue>).
56
+ - Ist das <one>Abspalten einer Signalsequenz</one> eine "posttranslationale Modifikation" von Proteinen? Ja.
57
+ - How many times can <one>Lysine</one> be methylated, at max? Three times.
58
+ - <one>Lipidverankerungen</one> dienen häufig dazu, Proteine in bestimmten Membranen zu verankern - typischerweise über welche Aminosäuren? <one>Cystein</one>.
59
+ - Wo an einem Protein, das ins <one>Mitochondrium</one> importiert werden soll, findet man die "Signalsequenz"? <one>Aminoterminal</one> (= N-Terminal).
60
+ - Give a prominent example of a protein or a group of proteins with "ubiquitin-binding domains". A: <one>Protein chaperones</one>.
61
+ - A. W. für "Adenylylation"? <one>AMP Transfer</one>.
62
+ - Nenne ein Protein das <one>farnesyliert</one> wird. A: Das "G-Protein Ras".
63
+ - Kann <one>Histidin</one> phosphoryliert werden? Ja.
64
+ - Name a technique that can be used to "perform high throughput analysis of PTMs". A: <one>Mass spectrometry</one>.
65
+ - Nenne ein Motif das wir in "Ras" (Ras-Isoformen) finden mögen. A: Das "CaaX motif". URL: https://www.sciencedirect.com/science/article/pii/S0092867400806078
66
+ - Die Hedgehog-Modifkation ähnelt ... ? Dem "Intein-Mechanismus".
67
+ - In Säugetieren gibt es zwei Familien von Ser/Thr-Proteinphosphatasen. Nenne diese beiden Familien. A: (1) "PPP-Familie" (2) "PPM-Familie"
68
+ - "Palmitoylierung" umfasst n C-Atome? "16".
69
+ - Two types of "protein ubiquitylation" can be distinguished. Which ones are these? (1) "monoubiquitylation" (2) "polyubiquitylation"
70
+ - Was ist das "Kinom"? Dies ist die "Anzahl / Summe aller Kinasen" in einem bestimmten Genom.
71
+ - Die zeitliche Kontrolle von Proteasen erfolgt oft durch ... ? die "Expression als Zymogene".
72
+ - Welche Aminosäure wird <one>C-Glykosyliert</one>? <one>Tryptophan</one>.
73
+ - 2x ... = 1x Farnesyl. A: 2x "Prenyl".
74
+ - Arginine-methylation usually occurs at "GAR motifs". What does this mean? This refers to "glycine and arginine-rich regions".
75
+ - Which enzyme methylates "lysine"? The "lysine methyltransferases".
76
+ - Wer oder was erkennt "Trimethyl-Lysin", in der Zelle? "Chromodomänen".
77
+ - Ist die Methylierung von Arginin rückgängig zu machen, von der Zelle? Ja, über eine "Arginindemethylase". Die erste Argininddemethylase wurde im Jahr 2007 beschrieben.
78
+ - The transfer of methyl groups to certain histones is catalyzed by enzymes known as "histone methyltransferases", but where do they obtain the methyl-group? From "S-adenosyl methionine".
79
+ - Arginine can be methylated how many times, in a cell? Arginine can be methylated (up to) twice.
80
+ - Which protein methylates Arginine? PRMTs: aka the "protein arginine methyltransferases".
81
+ - Gibt es "Poly-SUMOylierungen"? Nein; zumindest wurden diese noch nicht beobachtet.
82
+ - "PAPS" wird durch Zerlegung von n ATP-Molekülen hergestellt? 2.
83
+ - Können wir im Urin die Ausscheidung von "sulfo-Tyrosin" nachweisen? Ja.
84
+ - Ist die "Polyubiquitylierung" reversibel? Ja, über "Deubiquitylasen".
85
+ - "GPI-linked proteins" contain a "signal sequence", which directs them towards ... ? The "endoplasmic reticulum" (ER).
86
+ - Was heisst "GPI"? "Glycosylphosphatidylinositol" ("Glycosyl|Phosphatidyl|Inositol").
87
+ - The <one>GPI-anchor</one> is synthesized where within a cell? In the "endoplasmic reticulum".
88
+ - Is the "GPI anchor" attached at the C-terminus or the N-terminus? It is attached to the "C-terminus".
89
+ - Name "a general group of enzymes" that can cleave off the "GPI anchor". A: The "phospholipases" - such as "Phospholipase C".
90
+ - Name three post-translational "lipid modifications". A: (1) "prenylation" (2) "palmitoylation" (3) "GPI anchor attachment" ("glycosyl phosphatidylinositol")
91
+ - In prokaryotischen Systemen können "Histidin-Kinasen" autophosphorylieren (sie fungieren hier als "sensor kinases"). Die Phosphatgruppe geht dann über zu dem "response regulator" und zwar ... an welche Aminosäure dort? An "Aspartat".
92
+ - "Myristoylation" is usually catalyzed by which enzyme? By the "N-myristoyltransferase". URL: https://en.wikipedia.org/wiki/N-myristoyltransferase_1
93
+ - Wieviele "Sulfatasen" sind im menschlichen Genom bekannt? "13".
94
+ - Welche Enzyme ermöglichen "Glykosylierungen"? Die hochspezifischen "Glykosyltransferasen", Enzyme. URL: https://de.wikipedia.org/wiki/Glycosyltransferasen
95
+ - When we speak of "polyubiquitylation", how many ubiquitins do we mean, normally? Four or more ubiquitins.
96
+ - Was meinen wir mit den "Aus-Schaltern" in der Zellbiologie? Dies sind die "Phosphoprotein-Phosphatasen" ("PPP").
97
+ - Nenne eine "irreversible Modifikation" an Proteinen. A: "Proteolyse".
98
+ - Die "Myristoylierung" erfolgt an welcher Aminosäure? "Glycin".
99
+ - "Myristic acid" is added where exactly onto a protein? To the "N-terminal amino group" of a protein.
100
+ - "S-Adenosylmethionin" hat wieviele C-Atome? "15".
101
+ - "ADP ribosylation" may depend on which cofactor? It is "NAD-dependent", thus "it depends on NAD as a cofactor".
102
+ - Does "proteome diversification via covalent modification" occur in prokaryotes? Yes.
103
+ - Die "Amidierung" ist eine PTM. An welchem Terminus eines Proteins findet sie statt? Am "C-Terminus".
104
+ - Die Zelle kann Proteine methylieren. Woher stammt die "Methylgruppe"? Von "S-Adenosylmethionine" ("SAM").
105
+ - A. W. für "Glykosylierung"? "Verzuckerung".
106
+ - Die "N-Myristoylierung", bei die Myristinsäure an den N-terminalen Glycinrest von Proteinen angehängt wird, kann sowohl cotranslational aber auch posttranslational passieren. Welche davon kommt häufiger zum Einsatz? Das "cotranslationale Anheften der Myristinsäure".
107
+ - What kind of kinases are the "Cyclin-dependent kinases"? They are "serine-threonine kinases".
108
+ - Name an aminoacid that can be modified via "sulfation". A: "Tyrosine".
109
+ - Name an aminoacid that can be modified via "N-methylation". A: "Lysine".
110
+ - Sirtuins, which play a role in post-translation modification, came from yeast (Sir2 gene). What does this name indicate? Sir2 stands for ... ? "Silent mating-type information regulation 2".
111
+ - Die "Pyrrolysin-Biosynthese" benötigt, beziehungsweise geht aus von ...? "Zwei Lysinen".
112
+ - We can group and categorize PTMs by something "new". Explain that. A: We can group the PTM by the "new function enabled via the particular covalent addition".
113
+ - Die "SH2-Domäne" kann ... erkennen. A: "Phosphotyrosin".
114
+ - Die "Ubiquitin ligase" (E3) heftet Ubiquitin an sein Substrat. Welches Enzym ist praktisch der Gegenspieler zu E3? Die "Isopeptidase".
115
+ - Which "terminus" of a histone is more likely to be phosphorylated? The "N-Terminus" of the histone.
116
+ - Bei der "Phosphorylierung von Aminosäuren" benötigen wir ATP aber auch ... was genau und warum? "Mg 2+"; dieses koordiniert 2 Sauerstoffe des ATP, um den Angriff eines "elektronenreichen Nukleophils" zu ermöglichen.
117
+ - Name an "aminoacid residue" that is often "geranylgeranylated". A: "Cysteine residues".
118
+ - Säugetiere haben wieviele Familien von "Ser/Thr-Proteinphosphatasen"? 2.
119
+ - Warum interessieren sich auch Lebensmittelbetriebe für Testsysteme auf "Hydroxyprolin"? Da man damit "Betrug nachweisen kann", i. e. wenn der Hydroxyprolin-Gehalt in Fleisch zu niedrig ist.
120
+ - Die Zuckermoleküle von "Dolicholphosphat" werden auf welche Aminosäure übertragen? "Asparagin".
121
+ - Does "biotinylation" require energy? Yes - in the form of "ATP".
122
+ - Welche Aminosäure ist die am häufigsten phosphorylierte? "Serin" ist die am häufigsten phosphorylierte Aminosäure. (Man kann sich dies merken, da Serin auch die am häufigsten vorkommende Aminosäure im menschlichen Genom ist.)
123
+ - 2x Prenylgruppe in Verbindung ergibt ...? Eine "Farnesylgruppe".
124
+ - Nenne eine PTM die mit dem Buchstaben "L" beginnt. A: "Lipidierung".
125
+ - Phosphotyrosin wurde erst 1979 entdeckt. Wieso so spät? In einem Zellextrakt hat man einen viel stärkeren "Phosphothreonine-Peak", der den Phosphotyrosine-Anteil überdecken kann.
126
+ - Gibt es "Sulfo-Serin"? Ja.
127
+ - Trimethyl-Lysin 9 in H3 recruits which partner protein ... by binding to its chromodomain? A: It recruits the protein "HP1".
128
+ - Bei der "Myristoylierung" wird was genau an das Protein angeheftet? Ein "C14-Acylrest".
129
+ - In der Proteinchemie, was meinen wir mit dem Kürzel "pY"? "Phosphotyrosin".
130
+ - How many of the 20 common proteinogenic amino acid side chains are modified post-translationally? 15.
131
+ - Das kleine G-Proteinen "Arf" kann myristoyliert werden. Welche neue Fähigkeit erlang es dadurch? Es kann dadurch reversibel an das "Endoplasmatische Retikulum" binden.
132
+ - Die "Myristoylierung" erfolgt an welchem Ende eines Proteins? "N-terminal".
133
+ - Bei der Sulfatierung von Tyrosinen, wer ist der "Sulfat-Donor"? "PAPS" (3'-Phosphoadenosine-5'-phosphosulfate).
134
+ - About n% of the genomes of higher eukaryotes can be dedicated to enzymes that carry out posttranslational modifications of the proteomes. A: "5%".
135
+ - The "Ras GTPase superfamily" have members that can be prenylated on ... side chains? "Cys thiolate".
136
+ - Bei der "Phosphorylierung", was genau wird angeheftet? Eine "PO3 (2-) Phosphatgruppe".
137
+ - Name an aminoacid that can be modified via "C-hydroxylation". A: "Prolin", thus forming "4-Hydroxyproline".
138
+ - Gib ein allgemeines Beispiel für eine "reversible PTM". A: Die "Proteinphosphorylierung".
139
+ - Name three different post-translational modifications that occur at the aminoacid "lysine". A: (1) "N-Methylation" (2) "N-Acetylation" (3) "C-Hydroxylation"
140
+ - The "methyl group" from "S-adenosylmethionine" (SAM) is most often transferred to the side chains of which two aminoacids? (1) "Lysin" ("K") (2) "Arginin" ("R")
141
+ - Wie verändern sich "Stickstoffatome", je mehr Methylgruppen sie tragen? "Stickstoff wird allgemein reaktiver", je mehr Methylgruppen an diesem Stickstoff-Atom befestigt sind.
142
+ - Name an aminoacid that can be modified via "O-glycosylation". A: "Serine".
143
+ - Wenn "Arginin" an den N-Terminus posttranslational angefügt wird, führt dies zu ...? Zum "gezielten Abbau".
144
+ - Die "Proteintransnitrosylierung" erfolgt an welcher Aminosäure? "Cystein".
145
+ - Nenne ein Enzym das durch eine "Liponsäure" modifiziert werden kann. A: Die "Pyruvat-Dehydrogenase".
146
+ - Können "Acetylierungen" an Proteinen rückgängig gemacht werden? Ja.
147
+ - The enzyme "N-myristoyltransferase" is necessary to add myristoyl-groups to a protein, but it requires the action of another enzyme before it can do its work. Which enzyme is that? The "methionine aminopeptidase".
148
+ - Give two examples of "N-myristoylated proteins". A: (1) "HIV Gag protein" (2) "Protein kinase A"
149
+ - Nenne zwei Enzyme der "terminalen Glykosylierung". A: (1) Glykosidase (2) Glykosyltransferase
150
+ - Give an example for an aminoacid that can be "O-Glycosylated". A: "Serine" (or "Threonine").
151
+ - "Tyrosin" kann sulfatiert werden. Welches Motiv ist dafür wahrscheinlich notwendig? Mehrere "negative Ladungen" in der Nachbarschaft eines Tyrosins, also etwa "bis zu 5 Glu/Asp-Reste".
152
+ - Die "C-Glykosylierung" ist sehr selten. An welcher Aminosäure mag sie auftreten? "Tryptophan".
153
+ - Nenne zwei "post-translationale Modifikationen", die mit dem Buchstaben "A" beginnen. A: (1) "Acetylierung" (2) "ADP-Ribosylierung"
154
+ - Was sind "Sirtuine"? "Deacylases". URL: https://en.wikipedia.org/wiki/Sirtuin
155
+ - Name the most-well-studied example of "S-palmitoylation of cysteines" in the C-terminal region of proteins. A: The "Ras GTPase".
156
+ - Bei der "Phosphorylierung von Proteinen", zum Beispiel an Serin, wer agiert hier als Nukleophil das unbedingt benötigt wird? Die "Hydroxyl-Gruppe", also "-OH", von Serin.
157
+ - Name two organisms that have "phosphoHis" as part of their "phosphoproteomes". A: (1) "Bacteria" (2) "Fungi"
158
+ - Nenne ein Beispiel für ein "sekretiertes Protein", das an "Tyrosin-Resten" sulfatiert wird. A: "Faktor VIII".
159
+ - Kommt es im Zuge von "Proteinsplicing" zu einer "Umesterung"? Ja - und zwar zwischen "N-Extein" und "C-Extein".
160
+ - 5 Aminosäuren haben keine PTMs. Welche? "V,A,L,I,V" (mnemoic: "valid"... "valif")
161
+ - "Sulfurylation" depends on ... which cofactor? "PAPS".
162
+ - Wie hat man in den 1950er/1960er Jahren posttranslationale Modifikationen an Proteinen nachgewiesen? Mit Hilfe von "Radioaktivität"; man hat einfach "heisses ATP" zwecks Markierung verwendet.
163
+ - Why may "biotinylation" be important for a cell? It may allow the cell, respetively the enzyme, to "carry -CO2 groups"; in particular this is "important for CO2 fixation".
164
+ - Die derzeit bekannten "Sulfatasen" ähneln welch anderem Enzym? Der "alkaline phosphatase".
165
+ - Can tryptophan be "mannosylated"? Yes - at the C2 atom of its indole ring, although this modification is quite rare.
166
+ - "Phosphatasen" können Phosphatgruppen abspalten und damit den Kinasen entgegenwirken. Was aber benötigen Phosphatasen noch, damit sie ihre Reaktion durchführen können? Eine "H2O Gruppe" - also "Wasser".
167
+ - Name at the least three different glycosylation types. A: (1) "C-glycosylation" (2) "N-glycosylation" (3) "O-glycosylation"
168
+ - "Sulfotransferasen" erzeugen sulfatierte ...-Reste in Proteinen? "Sulfatierte Tyrosin-Reste".
169
+ - Gib ein Beispiel wo wir "Asn N-Methylierung" beobachten könnten. A: In "Phycobilisomen".
170
+ - Wie nennen wir die "Modifikation mit Isoprenabkömmlingen" bei Proteinen? "Prenylierung".
171
+ - Was ist die Hauptfunktion des "GPI-Ankers"? Die feste Verankerung von Glycoproteinen an der Außenseite der Plasmamembran.
172
+ - Name an enzyme that is important for "palmitoylation". A: The "palmitoyl-S-protein transferase".
173
+ - Nenne drei verschiedene "PTM-Datenbanken". A: (1) "UniProt" (2) "HPRD" (3) "Phospho.ELM"
174
+ - Benötigt "Proteinspleißen" Energie? Nein.
175
+ - "Histone acetyltransferasen" (HATs) können Acetylgruppen an ihr Substrat anheften - aber woher stammt diese Acetylgruppe? Von "Acetyl CoA".
176
+ - How many different covalent modifications of aminoacids are known? More than 200.
177
+ - Die "eukaroytischen S/T/Y-Kinasen" besitzen eine "ATP-Bindetasche", die welchem bakteriellen Protein ähnelt? Dem "Hsp90-Protein".
178
+ - Name the five most common types of PTMs (covalent additions) to proteins. A: (1) "phosphorylation" (2) "acylation" (3) "alkylation" (4) "glycosylation" (5) "oxidation"
179
+ - Nur welche zwei Gruppen von Proteinen können "Sulfotyrosin" als eine posttranslationale Modifikation erhalten? (1) "Membranproteine" (2) "Proteine, die sekretiert werden"
180
+ - "Lipoylation" goes onto which amino acid normally? Onto a "Lysine".
181
+ - Enzymes can gain catalytic function by being tethered to certain groups. Give three examples of such groups. A: (1) "biotinyl groups" (2) "lipoyl groups" (3) "phosphopantetheinyl groups"
182
+ - What is "the most common posttranslational modification of proteins" in eukaryotes, aside from folding? "N-linked glycosylation".
183
+ - Lysosomale Proteine werden modifiziert, um mit Rezeptoren in der Membran des Golgi-Apparates zu interagieren, und schließlich zu den Lysosomen zu gelangen. Welche Modifikation vor allem? A: "Saccharide".
184
+ - Die "Analyse von Sulfatierungspositionen" erfolgt mit Hilfe welch zweier Techniken? (1) "Proteolyse" (2) "LC-MS"
185
+ - Was meinen wir mit "TPSTasen"? Dies sind "Tyrosin Protein Sulfotransferasen".
186
+ - Sometimes "phosphorylation sites" are masked transiently how ...? By the "reversible covalent modification" with the sugar "N-acetyl glucosamine".