studium 0.16.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (887) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3211 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +10 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/return_n_questions_solved_in_total +7 -0
  38. data/bin/rti_conflict +7 -0
  39. data/bin/search_for_n_ects +7 -0
  40. data/bin/show_lectures_on_the_commandline +7 -0
  41. data/bin/show_passed_exams_having_this_grade +7 -0
  42. data/bin/show_themes +7 -0
  43. data/bin/solved +9 -0
  44. data/bin/solved_ects +7 -0
  45. data/bin/studienkennzahl +7 -0
  46. data/bin/studium +7 -0
  47. data/bin/studium_skeleton +7 -0
  48. data/bin/ufind +7 -0
  49. data/bin/upcoming_exams +7 -0
  50. data/bin/week_parser +7 -0
  51. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +82 -0
  52. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  53. data/doc/README.gen +3164 -0
  54. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  55. data/doc/deprecated_components/deprecated_components.md +46 -0
  56. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  57. data/doc/elegant_colours/elegant_colours.md +21 -0
  58. data/doc/statistics/yearly_statistics.md +8 -0
  59. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  60. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  61. data/img/STUDIES.png +0 -0
  62. data/lib/studium/autoinclude.rb +7 -0
  63. data/lib/studium/base/base.rb +3229 -0
  64. data/lib/studium/base/colours.rb +246 -0
  65. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  66. data/lib/studium/base/prototype/prototype.rb +230 -0
  67. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  68. data/lib/studium/c/README.md +2 -0
  69. data/lib/studium/c/a.out +0 -0
  70. data/lib/studium/c/obtain_random_entry.c +11 -0
  71. data/lib/studium/check_and_sanitize/README.md +15 -0
  72. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  73. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  74. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  75. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  76. data/lib/studium/check_and_sanitize/check_important_exams.rb +132 -0
  77. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  78. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  79. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  80. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +427 -0
  81. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  82. data/lib/studium/colours/colours.rb +587 -0
  83. data/lib/studium/colours/sfancy.rb +49 -0
  84. data/lib/studium/colours/sfile.rb +39 -0
  85. data/lib/studium/colours/simp.rb +40 -0
  86. data/lib/studium/colours/use_colours.rb +39 -0
  87. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  88. data/lib/studium/commandline/commandline.rb +1839 -0
  89. data/lib/studium/constants/colours.rb +16 -0
  90. data/lib/studium/constants/constants.rb +533 -0
  91. data/lib/studium/constants/curricula_related_constants.rb +504 -0
  92. data/lib/studium/constants/exam_topics.rb +156 -0
  93. data/lib/studium/constants/file_lecture_information.rb +55 -0
  94. data/lib/studium/constants/image_constants.rb +272 -0
  95. data/lib/studium/constants/regexes.rb +58 -0
  96. data/lib/studium/constants/roebe_specific_constants.rb +216 -0
  97. data/lib/studium/constants/standalone_constants.rb +372 -0
  98. data/lib/studium/constants/web_constants.rb +28 -0
  99. data/lib/studium/css/project.css +267 -0
  100. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  101. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  102. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  103. data/lib/studium/curricula/curriculum.rb +213 -0
  104. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  107. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  108. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  109. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  110. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  111. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  112. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  113. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  114. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  115. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  116. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  117. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  118. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  119. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  120. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  121. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  122. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  123. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  124. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  125. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +100 -0
  126. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  127. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  128. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  129. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  130. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  131. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  132. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  133. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  134. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  135. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  136. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  137. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  138. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  139. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  140. data/lib/studium/ects/ects_scanner.rb +141 -0
  141. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  142. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  143. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  144. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  145. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  146. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  147. data/lib/studium/ects/search_for_n_ects/OLD_search_for_n_ects.rb +0 -0
  148. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  149. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +232 -0
  150. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  151. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  152. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  153. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  154. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  155. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  156. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  157. data/lib/studium/ects/still_missing.rb +129 -0
  158. data/lib/studium/ects/sum_of_ects.rb +144 -0
  159. data/lib/studium/encoding/encoding.rb +109 -0
  160. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  161. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  162. data/lib/studium/exam_topics/advanced_biochemistry +927 -0
  163. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  164. data/lib/studium/exam_topics/advanced_cellbiology +219 -0
  165. data/lib/studium/exam_topics/advanced_chemistry +527 -0
  166. data/lib/studium/exam_topics/advanced_immunology +152 -0
  167. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  168. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +109 -0
  169. data/lib/studium/exam_topics/advanced_virology +245 -0
  170. data/lib/studium/exam_topics/ageing +153 -0
  171. data/lib/studium/exam_topics/agrar_ecology +67 -0
  172. data/lib/studium/exam_topics/agrarmarkt +73 -0
  173. data/lib/studium/exam_topics/agrarphysik +35 -0
  174. data/lib/studium/exam_topics/alcohols +31 -0
  175. data/lib/studium/exam_topics/algorithms +77 -0
  176. data/lib/studium/exam_topics/allergie +76 -0
  177. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  178. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1008 -0
  179. data/lib/studium/exam_topics/aminoacids +464 -0
  180. data/lib/studium/exam_topics/analytische_chemie_1 +133 -0
  181. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  182. data/lib/studium/exam_topics/anatomie +295 -0
  183. data/lib/studium/exam_topics/anorganische_chemie +350 -0
  184. data/lib/studium/exam_topics/anthropologie +138 -0
  185. data/lib/studium/exam_topics/antibodies_and_antigens +791 -0
  186. data/lib/studium/exam_topics/apoptosis +35 -0
  187. data/lib/studium/exam_topics/archaea +112 -0
  188. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  189. data/lib/studium/exam_topics/architecture +8 -0
  190. data/lib/studium/exam_topics/artificial_intelligence +89 -0
  191. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  192. data/lib/studium/exam_topics/audio +11 -0
  193. data/lib/studium/exam_topics/bacteriophages +266 -0
  194. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  195. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  196. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  197. data/lib/studium/exam_topics/basic_virology +1007 -0
  198. data/lib/studium/exam_topics/bauwesen +6 -0
  199. data/lib/studium/exam_topics/betriebssysteme +128 -0
  200. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  201. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +391 -0
  202. data/lib/studium/exam_topics/biochips +79 -0
  203. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  204. data/lib/studium/exam_topics/biofilms +54 -0
  205. data/lib/studium/exam_topics/bioinformatics +511 -0
  206. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  207. data/lib/studium/exam_topics/biologie +149 -0
  208. data/lib/studium/exam_topics/biomarkers +137 -0
  209. data/lib/studium/exam_topics/biomaterials +90 -0
  210. data/lib/studium/exam_topics/biomembranes +6 -0
  211. data/lib/studium/exam_topics/bionik +65 -0
  212. data/lib/studium/exam_topics/biophysik +34 -0
  213. data/lib/studium/exam_topics/biopolymers +10 -0
  214. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  215. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  216. data/lib/studium/exam_topics/birds +5 -0
  217. data/lib/studium/exam_topics/bodenkunde +384 -0
  218. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  219. data/lib/studium/exam_topics/cancerbiology +484 -0
  220. data/lib/studium/exam_topics/cell_cultures +229 -0
  221. data/lib/studium/exam_topics/cellbiology +1011 -0
  222. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  223. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  224. data/lib/studium/exam_topics/cellulose +6 -0
  225. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  226. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  227. data/lib/studium/exam_topics/chemisches_labor +60 -0
  228. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  229. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  230. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  231. data/lib/studium/exam_topics/clinical_microbiology +516 -0
  232. data/lib/studium/exam_topics/computer_science +308 -0
  233. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +13 -0
  234. data/lib/studium/exam_topics/crispr +51 -0
  235. data/lib/studium/exam_topics/cyanobacteria +44 -0
  236. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +579 -0
  237. data/lib/studium/exam_topics/databases_and_sql +126 -0
  238. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +70 -0
  239. data/lib/studium/exam_topics/dna_replication +67 -0
  240. data/lib/studium/exam_topics/ecogenetics +26 -0
  241. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  242. data/lib/studium/exam_topics/ecology +330 -0
  243. data/lib/studium/exam_topics/economy +218 -0
  244. data/lib/studium/exam_topics/electron_microscopy +7 -0
  245. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  246. data/lib/studium/exam_topics/elektrophorese +132 -0
  247. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  248. data/lib/studium/exam_topics/elisa +55 -0
  249. data/lib/studium/exam_topics/embryologie_und_entwicklung +650 -0
  250. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  251. data/lib/studium/exam_topics/enzymes_and_cofactors +393 -0
  252. data/lib/studium/exam_topics/epigenetik +187 -0
  253. data/lib/studium/exam_topics/erste_hilfe +174 -0
  254. data/lib/studium/exam_topics/ethik +143 -0
  255. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +367 -0
  256. data/lib/studium/exam_topics/excel +7 -0
  257. data/lib/studium/exam_topics/fish +19 -0
  258. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  259. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  260. data/lib/studium/exam_topics/forensik +11 -0
  261. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  262. data/lib/studium/exam_topics/fortgeschrittene_genetik +643 -0
  263. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +218 -0
  264. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  265. data/lib/studium/exam_topics/fungi +119 -0
  266. data/lib/studium/exam_topics/genetische_krankheiten +198 -0
  267. data/lib/studium/exam_topics/genexpression +1008 -0
  268. data/lib/studium/exam_topics/genomics_and_metagenomics +280 -0
  269. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +954 -0
  270. data/lib/studium/exam_topics/geochemistry +67 -0
  271. data/lib/studium/exam_topics/geography +9 -0
  272. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  273. data/lib/studium/exam_topics/geometrie +56 -0
  274. data/lib/studium/exam_topics/geschichte +95 -0
  275. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  276. data/lib/studium/exam_topics/glycogen +45 -0
  277. data/lib/studium/exam_topics/glycolysis +118 -0
  278. data/lib/studium/exam_topics/glykomik +121 -0
  279. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  280. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  281. data/lib/studium/exam_topics/hormone +148 -0
  282. data/lib/studium/exam_topics/html +8 -0
  283. data/lib/studium/exam_topics/human_ecology +8 -0
  284. data/lib/studium/exam_topics/hygiene +224 -0
  285. data/lib/studium/exam_topics/imaging_and_microscopy +267 -0
  286. data/lib/studium/exam_topics/immunanalytik +94 -0
  287. data/lib/studium/exam_topics/immunologie +1011 -0
  288. data/lib/studium/exam_topics/informatik +117 -0
  289. data/lib/studium/exam_topics/innate_immunity +42 -0
  290. data/lib/studium/exam_topics/insekten +64 -0
  291. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  292. data/lib/studium/exam_topics/java +618 -0
  293. data/lib/studium/exam_topics/javascript +20 -0
  294. data/lib/studium/exam_topics/klima +6 -0
  295. data/lib/studium/exam_topics/kryptographie +9 -0
  296. data/lib/studium/exam_topics/landtechnik +26 -0
  297. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +223 -0
  298. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  299. data/lib/studium/exam_topics/light_microscopy +19 -0
  300. data/lib/studium/exam_topics/linux_and_unix +36 -0
  301. data/lib/studium/exam_topics/lipids +141 -0
  302. data/lib/studium/exam_topics/macroeconomics +39 -0
  303. data/lib/studium/exam_topics/marketing +7 -0
  304. data/lib/studium/exam_topics/mathematics +297 -0
  305. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  306. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +437 -0
  307. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  308. data/lib/studium/exam_topics/metabolismus +478 -0
  309. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  310. data/lib/studium/exam_topics/microbial_ecology +36 -0
  311. data/lib/studium/exam_topics/microcontrollers +11 -0
  312. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +54 -0
  313. data/lib/studium/exam_topics/mikrobielle_physiologie +285 -0
  314. data/lib/studium/exam_topics/mitochondria +40 -0
  315. data/lib/studium/exam_topics/mixed +287 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +272 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  318. data/lib/studium/exam_topics/nanotechnologie +453 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +244 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +63 -0
  322. data/lib/studium/exam_topics/neurobiology +307 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  324. data/lib/studium/exam_topics/nutztierethologie +11 -0
  325. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  326. data/lib/studium/exam_topics/obstbau +249 -0
  327. data/lib/studium/exam_topics/organische_chemie +1007 -0
  328. data/lib/studium/exam_topics/organische_chemie_2 +136 -0
  329. data/lib/studium/exam_topics/paleobiology +39 -0
  330. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  331. data/lib/studium/exam_topics/patent_law +55 -0
  332. data/lib/studium/exam_topics/pathologie +731 -0
  333. data/lib/studium/exam_topics/pcr +155 -0
  334. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  335. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  336. data/lib/studium/exam_topics/pflanzenanatomie +261 -0
  337. data/lib/studium/exam_topics/pflanzenbau +24 -0
  338. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  339. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  340. data/lib/studium/exam_topics/pharmaceutical_biotechnology +251 -0
  341. data/lib/studium/exam_topics/physik +446 -1
  342. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  343. data/lib/studium/exam_topics/physiology_and_histology +536 -0
  344. data/lib/studium/exam_topics/phytochemie +33 -0
  345. data/lib/studium/exam_topics/plant_biotechnology +131 -0
  346. data/lib/studium/exam_topics/plant_breeding +64 -0
  347. data/lib/studium/exam_topics/plant_development +50 -0
  348. data/lib/studium/exam_topics/populationsgenetik +138 -0
  349. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +197 -0
  350. data/lib/studium/exam_topics/projektmanagement +220 -0
  351. data/lib/studium/exam_topics/prokaryote_genetics +562 -0
  352. data/lib/studium/exam_topics/protein_engineering +35 -0
  353. data/lib/studium/exam_topics/proteolyse +38 -0
  354. data/lib/studium/exam_topics/proteomik +41 -0
  355. data/lib/studium/exam_topics/protozoans +24 -0
  356. data/lib/studium/exam_topics/prozesstechnik +95 -0
  357. data/lib/studium/exam_topics/psychologie +18 -0
  358. data/lib/studium/exam_topics/python +372 -0
  359. data/lib/studium/exam_topics/quality_management +266 -0
  360. data/lib/studium/exam_topics/rechtsgrundlagen +123 -0
  361. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  362. data/lib/studium/exam_topics/rna_and_dna +519 -0
  363. data/lib/studium/exam_topics/rna_seq +13 -0
  364. data/lib/studium/exam_topics/robotics +12 -0
  365. data/lib/studium/exam_topics/ruby +238 -0
  366. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  367. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  368. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  369. data/lib/studium/exam_topics/sexualbiologie +183 -0
  370. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +212 -0
  371. data/lib/studium/exam_topics/sozialbiologie +9 -0
  372. data/lib/studium/exam_topics/splicing_exons_and_introns +65 -0
  373. data/lib/studium/exam_topics/statistik +268 -0
  374. data/lib/studium/exam_topics/stemcells +181 -0
  375. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  376. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  377. data/lib/studium/exam_topics/strukturbiologie +423 -0
  378. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  379. data/lib/studium/exam_topics/systematische_zoologie +439 -0
  380. data/lib/studium/exam_topics/technical_ecology +144 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +39 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +98 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +39 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +31 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +453 -0
  398. data/lib/studium/exam_topics/transcription +185 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +154 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +250 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +56 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +138 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +334 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +2757 -0
  418. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  419. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  420. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  421. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  422. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  423. data/lib/studium/exams/ask_random_question.rb +195 -0
  424. data/lib/studium/exams/autoinclude.rb +7 -0
  425. data/lib/studium/exams/average_grade/average_grade.rb +402 -0
  426. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  427. data/lib/studium/exams/cycle.rb +291 -0
  428. data/lib/studium/exams/dataset/dataset.rb +128 -0
  429. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  430. data/lib/studium/exams/exam/exam.rb +130 -0
  431. data/lib/studium/exams/exam_bubble/exam_bubble.rb +445 -0
  432. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  433. data/lib/studium/exams/exam_question/README.md +3 -0
  434. data/lib/studium/exams/exam_question/exam_question.rb +427 -0
  435. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  436. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  437. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  438. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  439. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  440. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  441. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  442. data/lib/studium/exams/exam_topics.rb +194 -0
  443. data/lib/studium/exams/exams.rb +20 -0
  444. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2429 -0
  445. data/lib/studium/exams/exams_this_week.rb +182 -0
  446. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  447. data/lib/studium/exams/frozen.rb +36 -0
  448. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  449. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  450. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1359 -0
  451. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  452. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  453. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  454. data/lib/studium/exams/next_exam.rb +107 -0
  455. data/lib/studium/exams/next_exams.rb +378 -0
  456. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  457. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  460. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  461. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +374 -0
  462. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  463. data/lib/studium/exams/repeat_last_question.rb +78 -0
  464. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  465. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  466. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +116 -0
  467. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  468. data/lib/studium/exams/show_themes/constants.rb +28 -0
  469. data/lib/studium/exams/show_themes/menu.rb +61 -0
  470. data/lib/studium/exams/show_themes/misc.rb +537 -0
  471. data/lib/studium/exams/show_themes/reset.rb +62 -0
  472. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  473. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1375 -0
  474. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  475. data/lib/studium/exams/solved/constants.rb +32 -0
  476. data/lib/studium/exams/solved/help.rb +24 -0
  477. data/lib/studium/exams/solved/initialize.rb +55 -0
  478. data/lib/studium/exams/solved/menu.rb +41 -0
  479. data/lib/studium/exams/solved/reset.rb +28 -0
  480. data/lib/studium/exams/solved/solved.rb +326 -0
  481. data/lib/studium/exams/timetable/constants.rb +142 -0
  482. data/lib/studium/exams/timetable/timetable.rb +450 -0
  483. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  484. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +556 -0
  485. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  486. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  487. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  488. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  489. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  490. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  491. data/lib/studium/graphviz/README.md +4 -0
  492. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  493. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  494. data/lib/studium/gui/gtk3/README.md +1 -0
  495. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  496. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  497. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  498. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  499. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +513 -0
  500. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  501. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1889 -0
  502. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  503. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  504. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  505. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  506. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  507. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  508. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  509. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  510. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  511. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  512. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  513. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  514. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  515. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  516. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  517. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  518. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  519. data/lib/studium/images/outdated.png +0 -0
  520. data/lib/studium/images/small_logos/DNA.png +0 -0
  521. data/lib/studium/images/small_logos/README.md +2 -0
  522. data/lib/studium/images/small_logos/solved.png +0 -0
  523. data/lib/studium/images/studies_favicon.png +0 -0
  524. data/lib/studium/java/README.md +5 -0
  525. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  526. data/lib/studium/java/studium/Base.java +123 -0
  527. data/lib/studium/java/studium/Constants.java +122 -0
  528. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  529. data/lib/studium/java/studium/Mkdir.java +13 -0
  530. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  531. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  532. data/lib/studium/java/studium/Solved.java +112 -0
  533. data/lib/studium/java/studium/Test.java +60 -0
  534. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  535. data/lib/studium/java/studium/studium/Base.class +0 -0
  536. data/lib/studium/java/studium/studium/Constants.class +0 -0
  537. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  538. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  539. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  540. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  541. data/lib/studium/java/studium/studium/Solved.class +0 -0
  542. data/lib/studium/java/studium/studium/Test.class +0 -0
  543. data/lib/studium/jobs/jobs.rb +80 -0
  544. data/lib/studium/logging/README.md +2 -0
  545. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  546. data/lib/studium/logging/html_log_directory.rb +42 -0
  547. data/lib/studium/logging/log_directory.rb +112 -0
  548. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  549. data/lib/studium/parsers/README.md +2 -0
  550. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  551. data/lib/studium/parsers/parse_lva_dates.rb +233 -0
  552. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  553. data/lib/studium/project/project.rb +88 -0
  554. data/lib/studium/requires/common_popular_requires.rb +37 -0
  555. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  556. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  557. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  558. data/lib/studium/requires/require_encoding.rb +7 -0
  559. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  560. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  561. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  562. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  563. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  564. data/lib/studium/requires/require_the_parsers.rb +28 -0
  565. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  566. data/lib/studium/requires/require_the_studium_project.rb +70 -0
  567. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  568. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  569. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  570. data/lib/studium/requires/require_yaml.rb +7 -0
  571. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  572. data/lib/studium/requires/with_GUI.rb +13 -0
  573. data/lib/studium/requires/www_mode.rb +17 -0
  574. data/lib/studium/statistics/README.md +4 -0
  575. data/lib/studium/statistics/best_exam_months.rb +92 -0
  576. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +386 -0
  577. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  578. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  579. data/lib/studium/statistics/max_stats.rb +170 -0
  580. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  581. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  582. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +474 -0
  583. data/lib/studium/statistics/show_exam_statistics.rb +66 -0
  584. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  585. data/lib/studium/statistics/top_stats.rb +127 -0
  586. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  587. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +101 -0
  588. data/lib/studium/toplevel_methods/available_topics.rb +161 -0
  589. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  590. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  591. data/lib/studium/toplevel_methods/curriculum_related_code.rb +1038 -0
  592. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +52 -0
  593. data/lib/studium/toplevel_methods/download.rb +161 -0
  594. data/lib/studium/toplevel_methods/e.rb +16 -0
  595. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  596. data/lib/studium/toplevel_methods/editor.rb +67 -0
  597. data/lib/studium/toplevel_methods/esystem.rb +29 -0
  598. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  599. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3807 -0
  600. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  601. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +208 -0
  602. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  603. data/lib/studium/toplevel_methods/is_on_roebe.rb +27 -0
  604. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  605. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +32 -0
  606. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +93 -0
  607. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +45 -0
  608. data/lib/studium/toplevel_methods/java.rb +32 -0
  609. data/lib/studium/toplevel_methods/lecture_information.rb +108 -0
  610. data/lib/studium/toplevel_methods/lva_numbers.rb +358 -0
  611. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  612. data/lib/studium/toplevel_methods/map_input_to_this_curriculum_filename.rb +607 -0
  613. data/lib/studium/toplevel_methods/methods_related_to_files_and_directories.rb +481 -0
  614. data/lib/studium/toplevel_methods/misc.rb +580 -0
  615. data/lib/studium/toplevel_methods/n_questions_available.rb +141 -0
  616. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  617. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +77 -0
  618. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  619. data/lib/studium/toplevel_methods/opnn.rb +27 -0
  620. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  621. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +36 -0
  622. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  623. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +83 -0
  624. data/lib/studium/toplevel_methods/remove_comments.rb +27 -0
  625. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  626. data/lib/studium/toplevel_methods/remove_tags.rb +35 -0
  627. data/lib/studium/toplevel_methods/report.rb +439 -0
  628. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +69 -0
  629. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +45 -0
  630. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  631. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  632. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  633. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  634. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  635. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +62 -0
  636. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  637. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  638. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11311 -0
  639. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  640. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  641. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +40 -0
  642. data/lib/studium/toplevel_methods/runmode.rb +97 -0
  643. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +53 -0
  644. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  645. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +92 -0
  646. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  647. data/lib/studium/toplevel_methods/time.rb +297 -0
  648. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +73 -0
  649. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +58 -0
  650. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +64 -0
  651. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  652. data/lib/studium/toplevel_methods/url.rb +106 -0
  653. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  654. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  655. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  656. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +197 -0
  657. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  658. data/lib/studium/universities_in_austria/README.md +2 -0
  659. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  660. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  661. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  662. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  663. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  664. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  665. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  666. data/lib/studium/university_course/university_course.rb +409 -0
  667. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  668. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  669. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  670. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  671. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  672. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  673. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  674. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +155 -0
  675. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  676. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  677. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  678. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  679. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  680. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  681. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  682. data/lib/studium/utility_scripts/create/README.md +2 -0
  683. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  684. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  685. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  686. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  687. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  688. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  689. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  690. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  691. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  692. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +173 -0
  693. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  694. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  695. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  696. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  697. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  698. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  699. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  700. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  701. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  702. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  703. data/lib/studium/utility_scripts/holidays/holidays.rb +156 -0
  704. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  705. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  706. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  707. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +431 -0
  708. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  709. data/lib/studium/utility_scripts/moodle/moodle.rb +213 -0
  710. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  711. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  712. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  713. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  714. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  715. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  716. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  717. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  718. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  719. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  720. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  721. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  722. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  723. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  724. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  725. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  726. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  727. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  728. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  729. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  730. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  731. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  732. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  733. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  734. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  735. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  736. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +97 -0
  737. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  738. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  739. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  740. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  741. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  742. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  743. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  744. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  745. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +910 -0
  746. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  747. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  748. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3167 -0
  749. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  750. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  751. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  752. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  753. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  754. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  755. data/lib/studium/utility_scripts/steop/README.md +4 -0
  756. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  757. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  758. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  759. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  760. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +242 -0
  761. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  762. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  763. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  764. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  765. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  766. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  767. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  768. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  769. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  770. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  771. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  772. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  773. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  774. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  775. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  776. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  777. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  778. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  779. data/lib/studium/version/version.rb +46 -0
  780. data/lib/studium/www/exams/exams.cgi +54 -0
  781. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  782. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  783. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  784. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  785. data/lib/studium/www/sinatra/app.rb +231 -0
  786. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  787. data/lib/studium/www/sinatra/misc.rb +115 -0
  788. data/lib/studium/www/statistics/statistics.cgi +82 -0
  789. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  790. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  791. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  792. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  793. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  794. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  795. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  796. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  797. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  798. data/lib/studium/yaml/current_exams.yml +30 -0
  799. data/lib/studium/yaml/curricula/README.md +39 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  806. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  807. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  808. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  809. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  810. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  811. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +136 -0
  812. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  813. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  814. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  815. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  816. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  817. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  818. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  819. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  820. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  821. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  822. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  823. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  824. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  825. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  826. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  827. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  828. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  829. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  830. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  831. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  832. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  833. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  834. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  835. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  836. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  837. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  838. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  839. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  840. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  841. data/lib/studium/yaml/curricula.yml +562 -0
  842. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +1849 -0
  843. data/lib/studium/yaml/default_delay.yml +4 -0
  844. data/lib/studium/yaml/default_encoding.yml +1 -0
  845. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  846. data/lib/studium/yaml/editor.yml +1 -0
  847. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  848. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  849. data/lib/studium/yaml/german/README.md +2 -0
  850. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  851. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +258 -0
  852. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  853. data/lib/studium/yaml/important_exams.yml +274 -0
  854. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  855. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  856. data/lib/studium/yaml/lecture_information/lecture_information.yml +63818 -0
  857. data/lib/studium/yaml/log_dir.yml +1 -0
  858. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  859. data/lib/studium/yaml/max_stats.yml +256 -0
  860. data/lib/studium/yaml/meta_themes +1 -0
  861. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  862. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  863. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  864. data/lib/studium/yaml/n_total_questions.yml +1 -0
  865. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  866. data/lib/studium/yaml/semester_planner/README.md +4 -0
  867. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  868. data/lib/studium/yaml/show_topic.yml +1 -0
  869. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  870. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  871. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  872. data/lib/studium/yaml/week/01_monday.yml +25 -0
  873. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  874. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  875. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  876. data/lib/studium/yaml/week/05_friday.yml +31 -0
  877. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  878. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  879. data/lib/studium/yaml/week/README.md +10 -0
  880. data/lib/studium.rb +5 -0
  881. data/studium.gemspec +82 -0
  882. data/test/testing_colourized_question_and_answer.rb +18 -0
  883. data/test/testing_studium.rb +244 -0
  884. data/test/testing_studium_base_class.rb +31 -0
  885. data/test/testing_the_file_lecture_information.rb +18 -0
  886. data/test/testing_time_component.rb +29 -0
  887. metadata +1101 -0
@@ -0,0 +1,3807 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'studium/toplevel_methods/find_exam_topic_and_exam_title.rb'
6
+ # Studium.find_corresponding_exam_topic()
7
+ # =========================================================================== #
8
+ module Studium
9
+
10
+ require 'studium/constants/constants.rb'
11
+ require 'studium/toplevel_methods/n_topics_available.rb'
12
+
13
+ # ========================================================================= #
14
+ # === Studium.find_corresponding_exam_topic
15
+ #
16
+ # This method will expand from any input towards a (hopefully) locally
17
+ # existing file under the exam_topics/ directory.
18
+ #
19
+ # The match that will be returned, must be downcased, because all the
20
+ # files in the exam_topics/ directory are also downcased.
21
+ #
22
+ # Do not forget that when you add an entry here, to also add the
23
+ # title in the file find_corresponding_exam_title.rb
24
+ #
25
+ # Usage examples:
26
+ #
27
+ # x = Studium.find_corresponding_exam_topic('imm') # => "immunologie"
28
+ # x = Studium.find_corresponding_exam_topic('mphysio') # => "mikrobielle_physiologie"
29
+ # x = Studium.find_corresponding_exam_topic('bioinformatics') # => "bioinformatics"
30
+ # x = Studium.find_corresponding_exam_topic(:bioinformatics) # => "bioinformatics"
31
+ # x = Studium.find_corresponding_exam_topic('anachem2') # =>
32
+ #
33
+ # ========================================================================= #
34
+ def self.find_corresponding_exam_topic(
35
+ i,
36
+ be_verbose = true
37
+ )
38
+ case be_verbose
39
+ # ======================================================================= #
40
+ # === :be_verbose
41
+ # ======================================================================= #
42
+ when :be_verbose
43
+ be_verbose = true
44
+ # ======================================================================= #
45
+ # === :be_quiet
46
+ # ======================================================================= #
47
+ when :be_quiet
48
+ be_verbose = false
49
+ end
50
+ if i.is_a?(Array) and i.empty? # Assume ARGV Array given here.
51
+ i = :rand # Use a default assignment for random input in this case.
52
+ end
53
+ begin
54
+ i = i.first if i.is_a? Array
55
+ i = i.to_s.downcase # Always work with Strings past this point.
56
+ rescue ArgumentError => error
57
+ e 'An error was encountered on line 55, in the file '+
58
+ __FILE__
59
+ pp error
60
+ pp i
61
+ e i.encoding.to_s
62
+ exit # ← We exit here so that we can debug this situation.
63
+ end
64
+ # ======================================================================= #
65
+ # We chop away from input that contains ' ('.
66
+ # ======================================================================= #
67
+ if i.include? ' ('
68
+ i = i[0, i.index(' (')]
69
+ end
70
+ i = DEFAULT_TOPIC if i == 'def' # This constant is defined in the file constants.rb.
71
+ i = i.chomp.delete('?') # Make the input a bit prettier.
72
+ case i # (Case tag, case tag)
73
+ when 'rand',
74
+ 'random',
75
+ 'random_question',
76
+ 'random_topic' # Fetch a random question here.
77
+ # ===================================================================== #
78
+ # We semi-"cheat" here by simply reading in the available files.
79
+ # ===================================================================== #
80
+ i = File.basename(
81
+ Dir[directory_to_the_exam_topics?+'*'].sample
82
+ ) # We need the constant EXAM_TOPICS here.
83
+ end
84
+ i =
85
+ case i # case tag
86
+ # ======================================================================= #
87
+ # === allgemeine_genetik
88
+ # ======================================================================= #
89
+ when '1',
90
+ 'schweyen',
91
+ 'schw',
92
+ 's',
93
+ 'amg',
94
+ 'mg',
95
+ 'genetik',
96
+ 'gen',
97
+ 'fragen_amg',
98
+ 'allgemeine_genetik',
99
+ 'amg1',
100
+ 'am',
101
+ 'genetics',
102
+ /^allgemeine(-|_| |,)?genetik$/i,
103
+ 'agm'
104
+ 'allgemeine_genetik'
105
+ # ======================================================================= #
106
+ # === basic_chemistry
107
+ # ======================================================================= #
108
+ when '2',
109
+ 'chem',
110
+ 'chemie',
111
+ 'chemi',
112
+ 'chem1',
113
+ 'chemie1',
114
+ /^-?-?basic(_|-| |,)?chemistry/,
115
+ 'basic chemistry',
116
+ /^chemistry\??$/i
117
+ 'basic_chemistry'
118
+ # ======================================================================= #
119
+ # === mixed
120
+ # ======================================================================= #
121
+ when '3',
122
+ 'misc',
123
+ 'mixed',
124
+ 'misc?',
125
+ /^-?-?qamisc(_|-| |,)?$/i
126
+ 'mixed'
127
+ # ======================================================================= #
128
+ # === mikrobiologie1
129
+ # ======================================================================= #
130
+ when '4','wagner','w',
131
+ 'mikrobio?',
132
+ 'mikrobio',
133
+ 'mikrobiologie',
134
+ 'mo',
135
+ 'witte',
136
+ 'allgemeine_mikrobiologie',
137
+ 'allgemeinemikrobiologie',
138
+ 'moll',
139
+ 'amm',
140
+ 'amm1',
141
+ 'allgemeine mikrobiologie',
142
+ 'microbiology1',
143
+ 'mikrobiologie1',
144
+ /^witte1?\??$/i,
145
+ /^bacteria$/i,
146
+ /^basic(_|-| |,)?microbiology$/i
147
+ 'allgemeine_mikrobiologie'
148
+ # ======================================================================= #
149
+ # === entwicklungsbiologie
150
+ # ======================================================================= #
151
+ when '5','entwicklungsbiologie','embryologie_und_entwicklung',
152
+ 'embryologie','emb','entwicklung',
153
+ 'entw',
154
+ 'devel',
155
+ 'embroy',
156
+ /embryo?/,
157
+ 'devbio',
158
+ /^developmental(_|-| |,)?biology$/i,
159
+ 'entwicklungsgenetik',
160
+ 'ebio',
161
+ 'dev',
162
+ 'embryologieundentwicklung',
163
+ 'embryologie und entwicklung',
164
+ 'modellorganismen'
165
+ 'embryologie_und_entwicklung'
166
+ # ======================================================================= #
167
+ # === computer
168
+ # ======================================================================= #
169
+ when '6','computer','computer_fragen',
170
+ 'fragenübercomputer',
171
+ 'fragen über computer',
172
+ 'computerfragen',
173
+ 'computer fragen',
174
+ 'compu',
175
+ /^computer(_|-| |,)?science$/i
176
+ 'computer_science'
177
+ # ======================================================================= #
178
+ # === pflanzenwissenschaften
179
+ # ======================================================================= #
180
+ when '7','plant',
181
+ 'ab2',
182
+ 'pflanzen','fragen_ab2',
183
+ 'plants',
184
+ 'pflanzenwissenschaft',
185
+ 'pflanzenwissenschaften',
186
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der(_|-| |,)?pflanzen?$/i,
187
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der$/i,
188
+ /^qa(_|-| |,)?ab2$/i,
189
+ /^pflanze1$/i,
190
+ 'ab',
191
+ 'strukturundfunktionderpflanzen',
192
+ /^botanik\??$/i
193
+ 'pflanzenwissenschaften'
194
+ # ======================================================================= #
195
+ # === immunologie
196
+ # ======================================================================= #
197
+ when '8','immuno','fragen_immunologie','immunologie',
198
+ 'imm',
199
+ 'immunology',
200
+ 'imuno',
201
+ 'immuno1',
202
+ 'imm1',
203
+ 'immun',
204
+ /^basic(_|-| |,)?immunology$/i,
205
+ /^qa(_|-| |,)?imm1?$/i
206
+ 'immunologie'
207
+ # ======================================================================= #
208
+ # === virologie
209
+ # ======================================================================= #
210
+ when '9','virologie','vir','virus',
211
+ 'viruses',
212
+ 'v',
213
+ 'vi',
214
+ 'viros',
215
+ 'virologieallgemein',
216
+ 'basic_virology',
217
+ 'basicvirology',
218
+ 'bvirus',
219
+ 'vir1',
220
+ 'basic virology',
221
+ 'virology1',
222
+ 'virus1',
223
+ /^Virologie(-|_| |,)?Allgemein$/i,
224
+ /^basic(-|_| |,)?virology$/i,
225
+ /^qavirus\??$/i
226
+ 'basic_virology'
227
+ # ======================================================================= #
228
+ # === genexpression
229
+ # ======================================================================= #
230
+ when '10',
231
+ 'genexpression',
232
+ /^genexo?$/i,
233
+ 'genx',
234
+ 'fragen_genex',
235
+ 'def',
236
+ 'default',
237
+ 'genexpresse',
238
+ 'genex1',
239
+ 'enex',
240
+ 'gneex'
241
+ 'genexpression'
242
+ # ======================================================================= #
243
+ # === basic_biotechnology
244
+ # ======================================================================= #
245
+ when '11',
246
+ 'biotech',
247
+ 'bio',
248
+ 'btech',
249
+ 'biotechnologie_tu_wien',
250
+ 'biotechnologietuwien',
251
+ 'fragen_biotechnologie_tu_wien',
252
+ /^basic(_|-| |,)?biotech$/i,
253
+ /^basic(_|-| |,)?biotechnology$/i,
254
+ /^biotechnologie$/i,
255
+ 'biotech1',
256
+ 'biotehc',
257
+ 'bech1',
258
+ 'biotechnology1',
259
+ 'bach1'
260
+ 'basic_biotechnology'
261
+ # ======================================================================= #
262
+ # === bioinformatik
263
+ # ======================================================================= #
264
+ when '12',
265
+ 'bioinformatik',
266
+ 'bioinf',
267
+ 'bioinfo',
268
+ 'bioinformatics',
269
+ 'binf',
270
+ 'bioinfor',
271
+ 'bioinformatic',
272
+ /bioinf1$/i
273
+ 'bioinformatics'
274
+ # ======================================================================= #
275
+ # === verhalten
276
+ # ======================================================================= #
277
+ when '13',
278
+ 'neuro',
279
+ 'neurobiologie',
280
+ 'neruo',
281
+ 'neurobiology',
282
+ 'neuron'
283
+ 'neurobiology'
284
+ # ======================================================================= #
285
+ # === physics
286
+ # ======================================================================= #
287
+ when '14',
288
+ /physi(k|c)?$/,
289
+ 'array_fragen_physik',
290
+ 'fragen_physik',
291
+ 'physics',
292
+ /^qaphysik\??$/i,
293
+ /^physik1$/i
294
+ 'physik'
295
+ # ======================================================================= #
296
+ # === mathematics
297
+ # ======================================================================= #
298
+ when '15','math',
299
+ 'mat',
300
+ 'mathematik',
301
+ 'mathematic',
302
+ 'array_math',
303
+ 'mathematics',
304
+ 'basic_math',
305
+ /^qa?math\??$/,
306
+ /math1$/i,
307
+ 'mathe'
308
+ 'mathematics'
309
+ # ======================================================================= #
310
+ # === zoology
311
+ # ======================================================================= #
312
+ when '16',
313
+ 'zoologie','ab4',
314
+ 'zoo',
315
+ 'tiere',
316
+ 'array_zoologie',
317
+ 'zoology',
318
+ /^allgemeine(_|-| |,)?zoologie$/i
319
+ 'zoologie'
320
+ # ======================================================================= #
321
+ # === nanotech
322
+ # ======================================================================= #
323
+ when '17',
324
+ 'nanotech',
325
+ 'nanotechnologie',
326
+ 'nanotechnology',
327
+ 'nanobiotechnologie',
328
+ 'array_fragen_nanotechnologie',
329
+ /^fragen_?nanotechnologie/,
330
+ 'nano',
331
+ 'anno',
332
+ 'nanobiotech',
333
+ 'nanomedicine',
334
+ /^qa?(_|-| |,)?nano\??$/i
335
+ 'nanotechnologie'
336
+ # ======================================================================= #
337
+ # === medizin
338
+ # ======================================================================= #
339
+ when '18',
340
+ 'medizin',
341
+ 'fragen_medizin',
342
+ 'medicine',
343
+ 'biomed',
344
+ 'biomedizin',
345
+ 'biomedicine',
346
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinische(_|-| |,)?technik$/i,
347
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinisc$/i,
348
+ /^qamedizin$/i
349
+ 'medizin_und_biomedizinische_technik'
350
+ # ======================================================================= #
351
+ # === organische_chemie
352
+ # ======================================================================= #
353
+ when '19','orgc',
354
+ 'organische_chemie',
355
+ 'org',
356
+ 'fragen_organische_chemie',
357
+ 'organische chemie',
358
+ 'orgc1',
359
+ 'org1',
360
+ 'organischechemie',
361
+ 'orgch',
362
+ 'organic_chemistry1',
363
+ 'ogc',
364
+ /^organic(_|-| |,)?chemistry$/i
365
+ 'organische_chemie'
366
+ # ======================================================================= #
367
+ # === analytische_chemie
368
+ # ======================================================================= #
369
+ when '20',
370
+ 'ana',
371
+ 'analytische_chemie',
372
+ 'analyt',
373
+ 'analytischechemie',
374
+ 'fragen_analytische_chemie',
375
+ 'analytik',
376
+ /analytische(_|-| |,)?chemie(_|-| |,)?1$/,
377
+ 'analytische chemie',
378
+ 'analytical_chemistry',
379
+ 'analyticchemistry',
380
+ 'analytical_chem',
381
+ 'anachem'
382
+ 'analytische_chemie_1'
383
+ # ======================================================================= #
384
+ # === ökologie
385
+ # ======================================================================= #
386
+ when '21','ecology','fragen_ecology','e',
387
+ 'ecology?',
388
+ 'öko',
389
+ 'ökologie',
390
+ 'ecol',
391
+ 'eco',
392
+ 'Ökologie'
393
+ 'ecology'
394
+ # ======================================================================= #
395
+ # === physiologie
396
+ # ======================================================================= #
397
+ when '22','ab3','physiologie','phys','fragen_physiologie',
398
+ 'physio','physiology',
399
+ 'histologie',
400
+ 'histology',
401
+ 'physi',
402
+ /^physiology(_|-| |,)?and(_|-| |,)?histology/i,
403
+ /^qapysio\??$/i,
404
+ /^qaphysio\??$/i
405
+ 'physiology_and_histology'
406
+ # ======================================================================= #
407
+ # === vektor
408
+ # ======================================================================= #
409
+ when '23',
410
+ 'vektor',
411
+ 'vector','vectors','vektoren',
412
+ 'fragen_vektoren',
413
+ 'genetherapy',
414
+ 'gentherapie',
415
+ 'vektorenindergentechnologie',
416
+ 'genthera',
417
+ 'vektoren in der gentechnologie',
418
+ 'vektors',
419
+ 'gene_therapy',
420
+ 'viral_vectors',
421
+ 'gentherapy',
422
+ 'viralvectors',
423
+ /^vektoren(_|-| |,)?in(_|-| |,)?der(_|-| |,)?gentechnologie$/i,
424
+ /^vektoren(_|-| |,)?in(_|-| |,)?der(_|-| |,)?gentechno$/i,
425
+ /^vectors(_|-| |,)?and(_|-| |,)?gene(_|-| |,)?therapy$/i
426
+ 'vectors_and_gene_therapy'
427
+ # ======================================================================= #
428
+ # === phytochemie
429
+ # ======================================================================= #
430
+ when '24','fragen_phytochemie','phytochem','phytochemie'
431
+ 'phytochemie'
432
+ # ======================================================================= #
433
+ # === aging
434
+ # ======================================================================= #
435
+ when '25',
436
+ 'aging',
437
+ 'age',
438
+ 'ageing'
439
+ 'ageing'
440
+ # ======================================================================= #
441
+ # === bioprozesstechnik
442
+ # ======================================================================= #
443
+ when '26','bioprozesstechnik',
444
+ 'technik',
445
+ 'bioprozess',
446
+ 'bioverfahren',
447
+ 'bioverfahrenstechnik',
448
+ 'bioprocess'
449
+ 'bioprozesstechnik'
450
+ # ======================================================================= #
451
+ # === mikrobio_tuwien
452
+ # ======================================================================= #
453
+ when '27',
454
+ 'tuwien_microbiology','microbiology',
455
+ 'tuwien',
456
+ 'mikrobio_tuwien',
457
+ 'micro',
458
+ 'tuwien_microbio',
459
+ 'tuwienmicrobiology',
460
+ 'tuwien_micro',
461
+ 'technische_mikrobiologie',
462
+ 'technischemikrobiologie',
463
+ 'tu wien microbiology',
464
+ 'technische mikrobiologie',
465
+ 'tumicrobiologie',
466
+ 'tumicro',
467
+ 'tuwienmikro',
468
+ 'tuwien_mikrobiologie',
469
+ 'tuwienmikrobiologie',
470
+ /^tu(_|-| |,)?microbiology$/,
471
+ /^tu(_|-| |,)?microbio$/,
472
+ /^tu(_|-| |,)?wien(_|-| |,)?microbiology$/
473
+ 'technische_mikrobiologie'
474
+ # ======================================================================= #
475
+ # === cellbiology
476
+ # ======================================================================= #
477
+ when '28',
478
+ 'cellbiology','cell','cellbio','zell',
479
+ 'clel',
480
+ 'zellbiologietierischersysteme',
481
+ 'methodeninderzellbiologie',
482
+ 'cel',
483
+ 'cell1',
484
+ 'cellbio1'
485
+ 'cellbiology'
486
+ # ======================================================================= #
487
+ # === physikalische_chemie
488
+ # ======================================================================= #
489
+ when '29','physikalische_chemie','physchemie','pchemie',
490
+ 'physikalischechemie',
491
+ 'physikalische chemie',
492
+ /^physchem$/i
493
+ 'physikalische_chemie'
494
+ # ======================================================================= #
495
+ # === verfahrenstechnik
496
+ # ======================================================================= #
497
+ when '30',
498
+ 'verfahrenstechnik'
499
+ 'verfahrenstechnik'
500
+ # ======================================================================= #
501
+ # === analytische_chemie_2
502
+ # ======================================================================= #
503
+ when '31',
504
+ 'ana2',
505
+ /^analytische(_|-| |,)chemie(_|-| |,)2$/i,
506
+ /^ana(_|-| |,)chem2$/i,
507
+ 'anachem2'
508
+ 'analytische_chemie_2'
509
+ # ======================================================================= #
510
+ # === gentechnik
511
+ # ======================================================================= #
512
+ when '32',
513
+ 'gentechnik',
514
+ 'gentechnik1',
515
+ /^gene?tech?$/,
516
+ /^gene?tech1?$/,
517
+ /^gene?tehc?$/,
518
+ /^praktische(_|-| |,)?biochemie$/,
519
+ /^gentechnik(_|-| |,)?und(_|-| |,)?praktische(_|-| |,)?biochemie$/,
520
+ /^gentechnik(_|-| |,)?und(_|-| |,)?praktische\??$/
521
+ 'gentechnik_und_praktische_biochemie'
522
+ # ======================================================================= #
523
+ # === economy
524
+ # ======================================================================= #
525
+ when '33',
526
+ 'economy',
527
+ 'ökonomie',
528
+ 'ökonom',
529
+ 'ökonomie?',
530
+ 'ecomoy',
531
+ /^qaeconomy\??$/i
532
+ 'economy'
533
+ # ======================================================================= #
534
+ # === geschichte
535
+ # ======================================================================= #
536
+ when '34','geschichte',
537
+ 'history',
538
+ /^qa(_|-| |,)?geschichte\??$/
539
+ 'geschichte'
540
+ # ======================================================================= #
541
+ # === festkörperchemie
542
+ # ======================================================================= #
543
+ when '35','festkoerper_chemie',
544
+ 'fest',
545
+ 'festkoerper',
546
+ 'festkörper_chemie',
547
+ 'festkörper chemie',
548
+ 'festkoerperchemie',
549
+ 'festkoerper chemie',
550
+ 'festkörperchemie',
551
+ 'festkÖrperchemie',
552
+ 'geochemistry',
553
+ 'geochem',
554
+ 'geochemist',
555
+ 'festkörper',
556
+ /^festkörperchemie(_|-| |,)?und(_|-| |,)?geochemie$/i,
557
+ /^festkörper(_|-| |,)?chemie(_|-| |,)?und(_|-| |,)?geochemie$/i,
558
+ /^festkörper(_|-| |,)?chemie(_|-| |,)?und(_|-| |,)?geo$/i
559
+ 'geochemistry'
560
+ # ======================================================================= #
561
+ # === geologie
562
+ # ======================================================================= #
563
+ when '36','geologie',
564
+ 'array_geologie',
565
+ 'array_fragen_geologie',
566
+ 'geo',
567
+ /^geologie(_|-| |,)?und(_|-| |,)?mineralogie$/i,
568
+ /^geology\??$/i,
569
+ /^fragen_?geologie/,'mineralogie',
570
+ 'mineral',
571
+ 'ego',
572
+ /^qageo\??/
573
+ 'geologie_und_mineralogie'
574
+ # ======================================================================= #
575
+ # === anorganische_chemie
576
+ # ======================================================================= #
577
+ when '37','ano','anorganische_chemie','anorganischechemie',
578
+ 'anorganisch','achem','array_anorganische_chemie',
579
+ 'anon',
580
+ /anon1$/,
581
+ 'anorganische chemie',
582
+ 'anon_chem',
583
+ 'anorg',
584
+ /anon_?chemie$/,
585
+ /anonchem/
586
+ 'anorganische_chemie'
587
+ # ======================================================================= #
588
+ # === law
589
+ # ======================================================================= #
590
+ when '38','array_law','law','arraylaw','lawandorder',
591
+ 'law and order',
592
+ 'recht',
593
+ 'rechtsgrundlagen'
594
+ 'rechtsgrundlagen'
595
+ # ======================================================================= #
596
+ # === organische_chemie2
597
+ # ======================================================================= #
598
+ when '39','orgc2','organische_chemie2','org2',
599
+ 'fragen_organische_chemie2',
600
+ 'organischechemie2',
601
+ 'organische_chemie_2',
602
+ 'organische chemie 2',
603
+ 'organic_chemistry2'
604
+ 'organische_chemie_2'
605
+ # ======================================================================= #
606
+ # === wasserkunde
607
+ # ======================================================================= #
608
+ when '40','wasserkunde',
609
+ 'biologie_des_wasser',
610
+ 'biologiedeswasser',
611
+ 'water',
612
+ 'wasser',
613
+ 'watter',
614
+ 'biologiedeswassers',
615
+ 'biologie des wassers',
616
+ 'biologie des wasser'
617
+ 'wasserkunde'
618
+ # ======================================================================= #
619
+ # === technische_chemie
620
+ # ======================================================================= #
621
+ when '41',
622
+ /^-?-?technische(_|-| |,)?chemi?e?$/i,
623
+ /^-?-?qa(_|-| |,)?technische(_|-| |,)?chemi?e?$/i,
624
+ 'tech',
625
+ 'technologie_chemie',
626
+ /tu_?chem/
627
+ 'technische_chemie'
628
+ # ======================================================================= #
629
+ # === biologie
630
+ # ======================================================================= #
631
+ when '42',
632
+ 'biologie',
633
+ 'biology',
634
+ /^-?-?qa(_|-| |,)?biologie$/i
635
+ 'biologie'
636
+ # ======================================================================= #
637
+ # === umwelt
638
+ # ======================================================================= #
639
+ when '43','umwelt','umweltchemie','uchem'
640
+ 'umweltchemie'
641
+ # ======================================================================= #
642
+ # === signal_transduction
643
+ # ======================================================================= #
644
+ when '44','signal','ldigc',
645
+ 'signaling',
646
+ 'laser',
647
+ /^signal(_|-| |,)?transduction$/i,
648
+ /^signal(_|-| |,)?transduction(_|-| |,)?and(_|-| |,)?laser(_|-| |,)?systems$/i,
649
+ /^signal(_|-| |,)?transduktion(_|-| |,)?und(_|-| |,)?lasersysteme$/i,
650
+ /^signal(_|-| |,)?transduktion(_|-| |,)?und(_|-| |,)?la$/i
651
+ 'signal_transduction_and_laser_systems'
652
+ # ======================================================================= #
653
+ # === paläobiologie
654
+ # ======================================================================= #
655
+ when '45',
656
+ 'paleo',
657
+ 'paläobiology',
658
+ 'paleobiology',
659
+ 'paläo',
660
+ 'paläobiologie'
661
+ 'paleobiology'
662
+ # ======================================================================= #
663
+ # === lebensmittel
664
+ # ======================================================================= #
665
+ when '46',
666
+ 'lebensmittel',
667
+ 'food',
668
+ 'foodsies',
669
+ /^lebensmittel(_|-| |,)?und(_|-| |,)?getränke$/i,
670
+ /^ern\??$/i
671
+ 'lebensmittel_und_getränke'
672
+ # ======================================================================= #
673
+ # === medchem
674
+ # ======================================================================= #
675
+ when '47',
676
+ 'medchem',
677
+ 'medchems',
678
+ 'main',
679
+ /^medizinische(_| )?chemie$/i,
680
+ /^medizinische(_| )?chemie(_| )?und(_| )?pharmazie$/i,
681
+ /^medizinische(_| )?chemie(_| )?und(_| )?p$/i
682
+ 'medizinische_chemie_und_pharmazie'
683
+ # ======================================================================= #
684
+ # === cancerbiology
685
+ # ======================================================================= #
686
+ when '48','cancer','krebs','cancerbiology',
687
+ 'tumor',
688
+ 'oncology',
689
+ 'onkologie',
690
+ 'onco',
691
+ 'cacner',
692
+ /^qacancer\??$/i
693
+ 'cancerbiology'
694
+ # ======================================================================= #
695
+ # === cytogenetik
696
+ # ======================================================================= #
697
+ when '49',
698
+ 'cytogenetik',
699
+ 'cyto',
700
+ 'cgen',
701
+ 'cytobio',
702
+ 'chromo',
703
+ 'chromosomenbiologie',
704
+ 'cytogen',
705
+ 'cytogenetics',
706
+ 'chromosomen',
707
+ 'cytologie',
708
+ 'cytology',
709
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromosome(_|-| |,)?biology$/i,
710
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromoso$/i
711
+ 'cytogenetics_and_chromosome_biology'
712
+ # ======================================================================= #
713
+ # === biostatistik
714
+ # ======================================================================= #
715
+ when '50','biostatistik','biostat',
716
+ 'stats',
717
+ 'stat',
718
+ 'statistik',
719
+ 'statistic',
720
+ 'statistics',
721
+ 'statistk?',
722
+ /^qastat\??$/i,
723
+ /^qastatistik\??$/i
724
+ 'statistik'
725
+ # ======================================================================= #
726
+ # === biochemie
727
+ # ======================================================================= #
728
+ when '51',
729
+ 'biochemie',
730
+ 'biochem',
731
+ 'bchem',
732
+ 'biochemistry',
733
+ 'einfuehrung_biochemie',
734
+ 'basic_biochemistry',
735
+ 'biochem1',
736
+ 'bem1',
737
+ 'basicbiochemistry',
738
+ 'basic biochemistry',
739
+ 'bem',
740
+ 'grundlagenderbiochemie',
741
+ 'ebm',
742
+ 'bme',
743
+ /^basic(_|-| |,)?biochemistry\??$/i
744
+ 'basic_biochemistry'
745
+ # ======================================================================= #
746
+ # === advanced_biochemistry
747
+ # ======================================================================= #
748
+ when '52','biochemie2',
749
+ /biochem2\??$/i,
750
+ 'bchem2',
751
+ 'biochemistry2',
752
+ 'biochemie_ii','biochemie_master','bem2',
753
+ /advanced(_|-| |,)?biochemistry\??$/i,
754
+ 'bemchem2',
755
+ 'biochemiefürbiologen'
756
+ 'advanced_biochemistry'
757
+ # ======================================================================= #
758
+ # === fortgeschrittene_physik
759
+ # ======================================================================= #
760
+ when '53',
761
+ 'physik2',
762
+ 'fortgeschrittene_physik',
763
+ /fortgeschrittene(_|-| |,)?physik/
764
+ 'fortgeschrittene_physik'
765
+ # ======================================================================= #
766
+ # === bioelektrochemie
767
+ # ======================================================================= #
768
+ when '54',
769
+ 'bioelektrochemie',
770
+ 'bioele',
771
+ 'bioelek'
772
+ 'bioelektrochemie'
773
+ # ======================================================================= #
774
+ # === advanced_biotechnology
775
+ # ======================================================================= #
776
+ when '55',
777
+ /^biotech2$/,
778
+ /^advanced(_|-| |,)?biotechnology$/,
779
+ /^advanced(_|-| |,)?biotechn$/,
780
+ 'bech2',
781
+ 'biotechnology2'
782
+ 'advanced_biotechnology'
783
+ # ======================================================================= #
784
+ # === epigenetik
785
+ # ======================================================================= #
786
+ when '56','epigenetik','epi','epigenetics',
787
+ /epigen/ # <-- This should suffice for now.
788
+ 'epigenetik'
789
+ # ======================================================================= #
790
+ # === bioanalytik
791
+ # ======================================================================= #
792
+ when '57',
793
+ 'bioanalytik',
794
+ 'bioana',
795
+ 'bioanalytics',
796
+ 'bioanalytic',
797
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensoren$/,
798
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensor$/
799
+ 'bioanalytik_und_biosensoren'
800
+ # ======================================================================= #
801
+ # === genomics
802
+ # ======================================================================= #
803
+ when '58',
804
+ 'genomics',
805
+ 'genomik',
806
+ 'genome',
807
+ 'genom',
808
+ 'genomes',
809
+ 'metagenomics',
810
+ /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/,
811
+ /^genomik(_|-| |,)?und(_|-| |,)?metagenomik$/,
812
+ /^genomies$/
813
+ 'genomics_and_metagenomics'
814
+ # ======================================================================= #
815
+ # === clinical_microbiology
816
+ # ======================================================================= #
817
+ when '59','clinical_microbiology','clinicalbac','clinical_micro',
818
+ 'clinicalmicrobiology','clinical',
819
+ 'clinic',
820
+ 'clinical microbiology',
821
+ 'clini',
822
+ 'clinci',
823
+ 'clinical_microscopy',
824
+ /^clinical(_|-| |,)?microbiologie\??$/i,
825
+ /^medmikro\??$/i
826
+ 'clinical_microbiology'
827
+ # ======================================================================= #
828
+ # === mikrobielle_physiologie
829
+ # ======================================================================= #
830
+ when '60',
831
+ /^mikrobielle_?physiologie/i,
832
+ 'mikphysio',
833
+ 'mikphysiologie',
834
+ 'mphysio',
835
+ 'molekulare_physiologie_industrieller_mikroorganismen',
836
+ 'molekulare_physiologie',
837
+ 'molphysio',
838
+ 'molekularephysiologieindustriellermikroorganismen',
839
+ 'molekulare physiologie industrieller mikroorganismen',
840
+ 'mikphys',
841
+ 'mpyhs',
842
+ 'mphys',
843
+ 'mphysiologie',
844
+ /^-?-?mikrobielle(_|-| |,)?physiologie\??$/i,
845
+ /^-?-?mphyi?s?io?$/i,
846
+ /^-?-?mphyios$/i
847
+ 'mikrobielle_physiologie'
848
+ # ======================================================================= #
849
+ # === molekulare_medizin
850
+ # ======================================================================= #
851
+ when '61',
852
+ /^-?-?molekulare(_|-| |,)?medizin$/i,
853
+ 'molmed',
854
+ 'molmed1',
855
+ 'molekularemedizin',
856
+ 'molmed2'
857
+ 'molekulare_medizin'
858
+ # ======================================================================= #
859
+ # === evolution
860
+ # ======================================================================= #
861
+ when '62','evolution','evo',
862
+ 'eov',
863
+ 'ev',
864
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionary(_|-| |,)?genetics$/i,
865
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionar$/i,
866
+ /^qaevo\??$/i
867
+ 'evolution_and_evolutionary_genetics'
868
+ # ======================================================================= #
869
+ # === artificial_intelligence
870
+ # ======================================================================= #
871
+ when '63',
872
+ /^artificial$/i,
873
+ /^artificial(_|-| |,)?intelligence\??$/i,
874
+ /^AI$/i
875
+ 'artificial_intelligence'
876
+ # ======================================================================= #
877
+ # === ethik
878
+ # ======================================================================= #
879
+ when '64',
880
+ 'ethik',
881
+ 'ethics',
882
+ 'ethic',
883
+ 'umweltethik',
884
+ 'bioethik'
885
+ 'ethik'
886
+ # ======================================================================= #
887
+ # === hygiene
888
+ # ======================================================================= #
889
+ when '65',
890
+ 'hygiene',
891
+ 'hyg',
892
+ 'hyge',
893
+ 'hy'
894
+ 'hygiene'
895
+ # ======================================================================= #
896
+ # === rna
897
+ # ======================================================================= #
898
+ when '66','rna','dna','rna_and_dna','rna and dna',
899
+ 'rnaanddna',/^mRNA$/i,
900
+ /^qarna\??$/i,
901
+ /^dna(_|-| |,)?und(_|-| |,)?rna$/i,
902
+ /^tRNA$/i
903
+ 'rna_and_dna'
904
+ # ======================================================================= #
905
+ # === research_topics_in_immunobiology
906
+ # ======================================================================= #
907
+ when '67','research_topics_in_immunobiology',
908
+ 'research_topics_in_immunbiology',
909
+ 'researchtopicsinimmunobiology',
910
+ 'research',
911
+ 'research topics in immunobiology',
912
+ /^research(_|-| |,)?topics$/i,
913
+ /^research(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?immuno$/i
914
+ 'research_topics_in_immunobiology'
915
+ # ======================================================================= #
916
+ # === fungi
917
+ # ======================================================================= #
918
+ when '68',
919
+ 'pilz',
920
+ 'pilze',
921
+ 'fungus',
922
+ /^fungi$/i,
923
+ /^qa(_|-| |,)?fungi$/i
924
+ 'fungi'
925
+ # ======================================================================= #
926
+ # === prok
927
+ # ======================================================================= #
928
+ when '69',
929
+ 'prokaryotes',
930
+ 'prokarya',
931
+ 'prokaryote_genetics',
932
+ 'prokaryotegenetics',
933
+ 'bac',
934
+ 'prok',
935
+ 'prokaryote genetics',
936
+ 'ecoli',
937
+ 'pgenetics',
938
+ 'prokaroytic_genetics',
939
+ /^prokaryote(_|-| |,)?genetics$/i,
940
+ /^prok(_|-| |,)?genetics$/i,
941
+ /^prok(_|-| |,)?gen$/i,
942
+ /^prok1$/i,
943
+ /^qaprok\??$/i
944
+ 'prokaryote_genetics'
945
+ # ======================================================================= #
946
+ # === wissenschaft
947
+ # ======================================================================= #
948
+ when '70','wissenschaft','science','sci'
949
+ 'wissenschaft'
950
+ # ======================================================================= #
951
+ # === anthropologie
952
+ # ======================================================================= #
953
+ when '71','anthropologie','anthro','ant','an'
954
+ 'anthropologie'
955
+ # ======================================================================= #
956
+ # === fortgeschrittene_gentechnik
957
+ # ======================================================================= #
958
+ when '72',
959
+ 'gentech2',
960
+ 'gentechnik2',
961
+ 'fortgeschrittene_gentechnik',
962
+ 'fortgeschrittenegentechnik',
963
+ 'fortgeschrittene gentechnik',
964
+ 'methoden',
965
+ /^fortgeschrittene(_|-| |,)?gentechn$/i
966
+ 'fortgeschrittene_gentechnik'
967
+ # ======================================================================= #
968
+ # === fortgeschrittene_genetik
969
+ # ======================================================================= #
970
+ when '73',
971
+ 'amg2',
972
+ 'fortgeschrittene_genetik',
973
+ 'mg2',
974
+ 'fortgeschrittenegenetik',
975
+ 'fortgeschrittene genetik',
976
+ 'genetics2',
977
+ 'dna2',
978
+ 'am2',
979
+ 'agm2'
980
+ 'fortgeschrittene_genetik'
981
+ # ======================================================================= #
982
+ # === pcr
983
+ # ======================================================================= #
984
+ when '74','pcr'
985
+ 'pcr'
986
+ # ======================================================================= #
987
+ # === sex
988
+ # ======================================================================= #
989
+ when '75',
990
+ 'sex',
991
+ 'fortpflanzung',
992
+ 'sexualbiologie',
993
+ /^-?-?sexbio\??$/i
994
+ 'sexualbiologie'
995
+ # ======================================================================= #
996
+ # === populationsgenetik
997
+ # ======================================================================= #
998
+ when '76','populationsgenetik','popgen','evolutionsgenetik',
999
+ 'population',
1000
+ 'population_genetics'
1001
+ 'populationsgenetik'
1002
+ # ======================================================================= #
1003
+ # === ökogenetik
1004
+ # ======================================================================= #
1005
+ when '77','ökogenetik','ökogen','ecogen','ecogenetics',
1006
+ 'ECOGENETICS','Ökogenetik'
1007
+ 'ecogenetics'
1008
+ # ======================================================================= #
1009
+ # === pathologie
1010
+ # ======================================================================= #
1011
+ when '78','pathologie',
1012
+ 'patho','pathos','PATHOLOGIE',
1013
+ 'pathology',
1014
+ 'pathophysio',
1015
+ 'pathophysiologie',
1016
+ /^qapatho\??$/i,
1017
+ /^pathophysiology\??$/i
1018
+ 'pathologie'
1019
+ # ======================================================================= #
1020
+ # === allergie
1021
+ # ======================================================================= #
1022
+ when '79',
1023
+ 'allergie',
1024
+ 'allergy',
1025
+ 'allergien',
1026
+ 'allergen',
1027
+ 'allergies',
1028
+ /^allerge$/i
1029
+ 'allergie'
1030
+ # ======================================================================= #
1031
+ # === structural_biology
1032
+ # ======================================================================= #
1033
+ when '80','proteinstruktur',
1034
+ 'struktur',
1035
+ 'strukturbiologie',
1036
+ 'strukturbio',
1037
+ 'strukt',
1038
+ 'struct',
1039
+ 'struk',
1040
+ 'strubi',
1041
+ 'struktbio',
1042
+ 'strubio',
1043
+ 'strub',
1044
+ /^structure\??$/i,
1045
+ /^structural(_|-| |,)?biology/,
1046
+ /^struktur(_|-| |,)?biologie\??$/i
1047
+ 'strukturbiologie'
1048
+ # ======================================================================= #
1049
+ # === chemisches_labor
1050
+ # ======================================================================= #
1051
+ when '81',
1052
+ /^chemisches(_|-| |,)?labor$/i,
1053
+ 'labor',
1054
+ 'chemisches labor',
1055
+ 'chemlabor',
1056
+ 'chemlabor?',
1057
+ 'safety'
1058
+ 'chemisches_labor'
1059
+ # ======================================================================= #
1060
+ # === theoretische_chemie
1061
+ # ======================================================================= #
1062
+ when '82','theoretische_chemie','theoretische chemie labor',
1063
+ 'theoretischechemie','theoretische chemie',
1064
+ 'theochem'
1065
+ 'theoretische_chemie'
1066
+ # ======================================================================= #
1067
+ # === plant_biotechnology
1068
+ # ======================================================================= #
1069
+ when '83',
1070
+ 'plant_biotech',
1071
+ 'plant_biotechnology',
1072
+ 'plant biotechnology',
1073
+ 'plantbiotechnology',
1074
+ 'pbtech',
1075
+ 'pbio',
1076
+ 'plantbiotech',
1077
+ /^pflanzen(_|-| |,)?biotech$/i
1078
+ 'plant_biotechnology'
1079
+ # ======================================================================= #
1080
+ # === bodenkunde
1081
+ # ======================================================================= #
1082
+ when '84',
1083
+ 'boden',
1084
+ 'bodne',
1085
+ /^bodenkunden?$/i
1086
+ 'bodenkunde'
1087
+ # ======================================================================= #
1088
+ # === advanced_virology
1089
+ # ======================================================================= #
1090
+ when '85',/advanced_?virology/,
1091
+ 'vir2',
1092
+ 'virology2',
1093
+ 'large_viruses',
1094
+ 'largeviruses',
1095
+ 'large viruses',
1096
+ 'virus2',
1097
+ /^advanced(_|-| |,)?virology$/i
1098
+ 'advanced_virology'
1099
+ # ======================================================================= #
1100
+ # === microbial_ecology
1101
+ # ======================================================================= #
1102
+ when '86',
1103
+ 'microbial_ecology','miceco',
1104
+ 'mikrobielleökologie',
1105
+ 'mikrobielle ökologie',
1106
+ 'mikrobielle Ökologie',
1107
+ 'microbialecology',
1108
+ 'mikrobielleÖkologie',
1109
+ 'microbial ecology',
1110
+ 'meco',
1111
+ /^mikrobielle(_|-| |,)?ökologie$/i
1112
+ 'microbial_ecology'
1113
+ # ======================================================================= #
1114
+ # === metabolismus
1115
+ # ======================================================================= #
1116
+ when '87','metabolismus','met','meta','metabolism',
1117
+ /^metabolismus\??$/i
1118
+ 'metabolismus'
1119
+ # ======================================================================= #
1120
+ # === the_cellcycle
1121
+ # ======================================================================= #
1122
+ when '88','cellcycle','cellcyc','cycle?','the_cellcycle',
1123
+ 'the cellcyle',
1124
+ 'thecellcyle',
1125
+ /^cycle$/i,
1126
+ /^the(_|-| |,)?cell(_|-| |,)?cycle$/i,
1127
+ /^the(_|-| |,)?cellcycle$/i,
1128
+ /^the(_|-| |,)?cellcyle$/i,
1129
+ /^cell(_|-| |,)?cycle$/i
1130
+ 'the_cellcycle'
1131
+ # ======================================================================= #
1132
+ # === bioressourcenmanagement
1133
+ # ======================================================================= #
1134
+ when '89',
1135
+ 'bioressourcenmanagement',
1136
+ 'ubrm',
1137
+ 'UBRM',
1138
+ 'ubr',
1139
+ 'ubm',
1140
+ 'bioress',
1141
+ 'bioressourcen'
1142
+ 'bioressourcenmanagement'
1143
+ # ======================================================================= #
1144
+ # === technische_ökologie
1145
+ # ======================================================================= #
1146
+ when '90',
1147
+ 'technical_ecology',
1148
+ 'technische_ökologie',
1149
+ 'technische ökologie',
1150
+ 'tueco',
1151
+ 'technischeÖkologie',
1152
+ 'technische Ökologie',
1153
+ 'technicalecology',
1154
+ 'technical ecology',
1155
+ 'nachhaltigkeit',
1156
+ /^technische(_|-| |,)?ökologie$/i
1157
+ 'technical_ecology'
1158
+ # ======================================================================= #
1159
+ # === agrarökologie
1160
+ # ======================================================================= #
1161
+ when '91',
1162
+ 'agrarökologie',
1163
+ 'agrar',
1164
+ 'agrarwissenschaften',
1165
+ 'agrarwissenschaft',
1166
+ 'agrarÖkologie',
1167
+ 'agrar_ecology',
1168
+ 'agraröko',
1169
+ 'agrarecology',
1170
+ 'agrar ecology'
1171
+ 'agrar_ecology'
1172
+ # ======================================================================= #
1173
+ # === anatomie
1174
+ # ======================================================================= #
1175
+ when '92',
1176
+ 'anatomie',
1177
+ 'anatomy',
1178
+ 'anat',
1179
+ 'anatom',
1180
+ /^-?-?qanatomie\??$/
1181
+ 'anatomie'
1182
+ # ======================================================================= #
1183
+ # === obst_und_weinbau
1184
+ # ======================================================================= #
1185
+ when '93','obst','obstbau',
1186
+ 'obst_und_weinbau','obst und weinbau',
1187
+ 'obstundweinbau'
1188
+ 'obstbau'
1189
+ # ======================================================================= #
1190
+ # === veterinärmedizin
1191
+ # ======================================================================= #
1192
+ when '94','vetmed','vet','veterinarymedicine',
1193
+ 'veterinärmedizin','veterinary medicine',
1194
+ 'veterinary_medicine'
1195
+ 'veterinary_medicine'
1196
+ # ======================================================================= #
1197
+ # === advanced_chemistry
1198
+ # ======================================================================= #
1199
+ when '95','chemie2',
1200
+ 'advanced_chemistry',
1201
+ 'advancedchemistry',
1202
+ 'basicchemistry',
1203
+ 'chemistry2',
1204
+ 'chem2',
1205
+ 'ch2m',
1206
+ 'advanced chemistry'
1207
+ 'advanced_chemistry'
1208
+ # ======================================================================= #
1209
+ # === landtechnik
1210
+ # ======================================================================= #
1211
+ when '96',
1212
+ 'landtechnik',
1213
+ 'grundlagenderlandtechnik',
1214
+ /^grundlagen(_|-| |,)?der(_|-| |,)?landtechnik$/i,
1215
+ /^grundlagen(_|-| |,)?der(_|-| |,)?landtechni$/i
1216
+ 'landtechnik'
1217
+ # ======================================================================= #
1218
+ # === agrarmärkte
1219
+ # ======================================================================= #
1220
+ when '97',
1221
+ 'agrarmärkte',
1222
+ 'agrarmarkt',
1223
+ 'agrarm',
1224
+ 'agrarmarkte'
1225
+ 'agrarmarkt'
1226
+ # ======================================================================= #
1227
+ # === agrarphysik
1228
+ # ======================================================================= #
1229
+ when '98',
1230
+ 'agrarphysik'
1231
+ 'agrarphysik'
1232
+ # ======================================================================= #
1233
+ # === humanökologie
1234
+ # ======================================================================= #
1235
+ when '99','humanökologie',
1236
+ 'humaneco',
1237
+ 'humanecology',
1238
+ 'human ecology',
1239
+ 'human_ecology'
1240
+ 'human_ecology'
1241
+ # ======================================================================= #
1242
+ # === quality_management
1243
+ # ======================================================================= #
1244
+ when '100',
1245
+ /^quality(_|-| |,)?management$/,
1246
+ /^qmanagement\??$/,
1247
+ /^qualitätsmanagement$/,
1248
+ 'quality',
1249
+ 'qual',
1250
+ 'management',
1251
+ 'qman'
1252
+ 'quality_management'
1253
+ # ======================================================================= #
1254
+ # === translational_control
1255
+ # ======================================================================= #
1256
+ when '101',
1257
+ 'translational_control',
1258
+ 'transcon',
1259
+ 'translationalcontrol',
1260
+ 'transcon?',
1261
+ 'translational control',
1262
+ 'translation',
1263
+ /^translation(_|-| |,)?(_|-| |,)?ribosomes(_|-| |,)?and(_|-| |,)?translational(_|-| |,)?control$/,
1264
+ /^translation(_|-| |,)?(_|-| |,)?ribosomes(_|-| |,)?an$/,
1265
+ /^ribosomes?$/i
1266
+ 'translation_ribosomes_and_translational_control'
1267
+ # ======================================================================= #
1268
+ # === audio
1269
+ # ======================================================================= #
1270
+ when '102','audio','audio?'
1271
+ 'audio'
1272
+ # ======================================================================= #
1273
+ # === umweltbiotechnologie
1274
+ # ======================================================================= #
1275
+ when '103',
1276
+ 'umweltbio',
1277
+ 'umweltbiotechnologie',
1278
+ 'umweltbiotech',
1279
+ 'ubiotech'
1280
+ 'umweltbiotechnologie'
1281
+ # ======================================================================= #
1282
+ # === posttranslationale_modifikation_von_proteinen
1283
+ # ======================================================================= #
1284
+ when '104','posttrans',
1285
+ 'posttranslational','genex2',
1286
+ 'post',
1287
+ 'posttranslationalemodifikationvonproteinen','ptm',
1288
+ 'ptm?','posttranslationale modifikation von proteinen',
1289
+ 'posttranslationale_modifikation_von_proteinen',
1290
+ 'ptms',
1291
+ 'PTMs',
1292
+ /^posttranslationale(_|-| |,)?modifi\??$/i,
1293
+ /^posttranslational(_|-| |,)?modification(_|-| |,)?of(_|-| |,)?_proteins$/i
1294
+ 'posttranslationale_modifikation_von_proteinen'
1295
+ # ======================================================================= #
1296
+ # === bodenmikrobiologie
1297
+ # ======================================================================= #
1298
+ when '105',
1299
+ 'bodenmikrobiologie','boden_mikrobiologie',
1300
+ 'soil_biology',
1301
+ 'soil_microbiology'
1302
+ 'bodenmikrobiologie'
1303
+ # ======================================================================= #
1304
+ # === pflanzenschutz
1305
+ # ======================================================================= #
1306
+ when '106','pflanzenschutz','pflanzenschutz?',
1307
+ 'pschutz'
1308
+ 'pflanzenschutz'
1309
+ # ======================================================================= #
1310
+ # === stammzellen
1311
+ # ======================================================================= #
1312
+ when '107','stem','ste','stem_cells','stemcells',
1313
+ 'stammzellen','stamm','stem_cells?','stemcell'
1314
+ 'stemcells'
1315
+ # ======================================================================= #
1316
+ # === plant_breeding
1317
+ # ======================================================================= #
1318
+ when '108',
1319
+ 'pflanzenzüchtung',
1320
+ 'pflanzenzuechtung',
1321
+ 'plant_breeding',
1322
+ 'plant_zucht',
1323
+ /pflanzenzÜchtung/i,
1324
+ 'pflanzenzucht',
1325
+ 'pzucht',
1326
+ /^-?-?plant_?breeding/
1327
+ 'plant_breeding'
1328
+ # ======================================================================= #
1329
+ # === insects
1330
+ # ======================================================================= #
1331
+ when '109','insects','insekten','insect','ins',
1332
+ 'schmetterlinge','schmetterling'
1333
+ 'insekten'
1334
+ # ======================================================================= #
1335
+ # === mikroskopie
1336
+ # ======================================================================= #
1337
+ when '110',
1338
+ 'microscope',
1339
+ 'mikros',
1340
+ 'mikroskop',
1341
+ 'mikroskope',
1342
+ 'mscope',
1343
+ 'mikroskopie',
1344
+ 'microscop',
1345
+ 'microscopy',
1346
+ 'mopy',
1347
+ 'moby',
1348
+ 'imaging',
1349
+ /^microscopes$/i,
1350
+ /^imaging(_|-| |,)?and(_|-| |,)?microscopy$/i,
1351
+ /^imaging\??$/i,
1352
+ /^imagining\??$/i,
1353
+ /^qa(_|-| |,)?mopy\??$/i
1354
+ 'imaging_and_microscopy'
1355
+ # ======================================================================= #
1356
+ # === aminoacids
1357
+ # ======================================================================= #
1358
+ when '111','aminoacids','aminosäuren','aminoacid',
1359
+ 'amino_acids','Amino Acids','aa','amino',
1360
+ 'amino acids',
1361
+ /^aminoacids\??$/i
1362
+ 'aminoacids'
1363
+ # ======================================================================= #
1364
+ # === enzymes
1365
+ # ======================================================================= #
1366
+ when '112','enzymes','enzyme','enzym','ee','Enzymes',
1367
+ 'enz','ezn',
1368
+ /^enzymes(_|-| |,)?and(_|-| |,)?cofactors\??$/i
1369
+ 'enzymes_and_cofactors'
1370
+ # ======================================================================= #
1371
+ # === proteomik
1372
+ # ======================================================================= #
1373
+ when '113','proteomik','proteomic','proteomics',
1374
+ 'proteome','proteom'
1375
+ 'proteomik'
1376
+ # ======================================================================= #
1377
+ # === advanced_microbiology
1378
+ # ======================================================================= #
1379
+ when '114',
1380
+ 'schäffer_mikrobiologie',
1381
+ 'schäffermikrobiologie',
1382
+ 'schäffer mikrobiologie',
1383
+ 'schäffer','schäff',
1384
+ 'schäffer?',
1385
+ 'schÄffermikrobiologie',
1386
+ 'advanced_microbiology',
1387
+ 'advancedmicrobiology',
1388
+ 'advanced microbiology',
1389
+ 'amm2',
1390
+ 'mikrobiologie2',
1391
+ 'witte2',
1392
+ /^microbiology2\??$/i
1393
+ 'advanced_microbiology'
1394
+ # ======================================================================= #
1395
+ # === plant_anatomy
1396
+ # ======================================================================= #
1397
+ when '115',
1398
+ 'pflanzenanatomie',
1399
+ 'plant_anatomy?',
1400
+ 'panatomy',
1401
+ 'plantanatomy?',
1402
+ 'plant_anatomy',
1403
+ 'plantanatomy',
1404
+ 'panatomie',
1405
+ 'pflanzenphysiologie',
1406
+ 'plantphysiologie',
1407
+ 'ab2anatomie',
1408
+ 'plantanatomie',
1409
+ 'panatome'
1410
+ 'pflanzenanatomie'
1411
+ # ======================================================================= #
1412
+ # === antibodies_and_antigens
1413
+ # ======================================================================= #
1414
+ when '116','antibodies','anti','antibody',
1415
+ /^abody?$/i,
1416
+ 'body',
1417
+ 'antikörper','antigens',
1418
+ /^antibodies(_|-| |,)?and(_|-| |,)?antigens$/i,
1419
+ /^antigens\??$/i,
1420
+ /^antibodies\??$/i,
1421
+ 'abodies'
1422
+ 'antibodies_and_antigens'
1423
+ # ======================================================================= #
1424
+ # === molecular_biology_of_plants
1425
+ # ======================================================================= #
1426
+ when '117',
1427
+ 'molecular_biology_of_plant',
1428
+ 'molecular_biology_of_plants',
1429
+ 'molecularbiologyofplants',
1430
+ 'molplants?',
1431
+ 'molplants',
1432
+ 'plantmol?',
1433
+ 'plantmol',
1434
+ 'plantmolbio',
1435
+ 'molecular biology of plants',
1436
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the_?$/i,
1437
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the(_|-| |,)?plants?$/i,
1438
+ /^qa(_|-| |,)?molplants?$/i
1439
+ 'molecular_biology_of_plants'
1440
+ # ======================================================================= #
1441
+ # === lebensmitteltechnologie
1442
+ # ======================================================================= #
1443
+ when '118',
1444
+ /^lebensmitteltechnologie/i
1445
+ 'lebensmitteltechnologie'
1446
+ # ======================================================================= #
1447
+ # === advanced_cell_biology
1448
+ # ======================================================================= #
1449
+ when '119',
1450
+ /^advanced(_|-| |,)?cell(_|-| |,)?biology$/,
1451
+ 'cell2',
1452
+ 'cellbiology2',
1453
+ 'cellbio2'
1454
+ 'advanced_cellbiology'
1455
+ # ======================================================================= #
1456
+ # === insulin
1457
+ # ======================================================================= #
1458
+ when '120','insulin','insuline','insulin?','diabetes',
1459
+ /^insulin(_|-| |,)?and(_|-| |,)?diabetes$/i
1460
+ 'insulin_and_diabetes'
1461
+ # ======================================================================= #
1462
+ # === microarray
1463
+ # ======================================================================= #
1464
+ when '121','microarray','microarrays',
1465
+ 'biochips',
1466
+ 'biochip',
1467
+ /^biochips(_|-| |,)?and(_|-| |,)?microarray$/i
1468
+ 'biochips'
1469
+ # ======================================================================= #
1470
+ # === rna_seq
1471
+ # ======================================================================= #
1472
+ when '122','rnaseq','rna_seq','rna_seq?','rna seq'
1473
+ 'rna_seq'
1474
+ # ======================================================================= #
1475
+ # === innate_immunity
1476
+ # ======================================================================= #
1477
+ when '123',
1478
+ /^innate$/i,
1479
+ /^innate(_|-| |,)?immunity\??$/i,
1480
+ /^innate(_|-| |,)?immunology$/i
1481
+ 'innate_immunity'
1482
+ # ======================================================================= #
1483
+ # === psychologie
1484
+ # ======================================================================= #
1485
+ when '124','psychologie',
1486
+ 'psychology',
1487
+ /^-?-?qa(_|-| |,)?psychologie\??$/i
1488
+ 'psychologie'
1489
+ # ======================================================================= #
1490
+ # === genetische_krankheiten
1491
+ # ======================================================================= #
1492
+ when '125','genetische_krankheiten','genetischekrankheiten',
1493
+ 'genetic_diseases',
1494
+ 'geneticdiseases','genetic_disease',
1495
+ 'gendisease',
1496
+ 'disease',
1497
+ 'digene',
1498
+ 'disgene',
1499
+ 'gendis',
1500
+ 'geneticdisease',
1501
+ /^genetische(_|-| |,)?krankheiten?$/i,
1502
+ /^gen(_|-| |,)?disease\??$/i,
1503
+ /^gen(_|-| |,)?dise?$/i
1504
+ 'genetische_krankheiten'
1505
+ # ======================================================================= #
1506
+ # === hormone
1507
+ # ======================================================================= #
1508
+ when '126','hormone','hormon','hormones','hor'
1509
+ 'hormone'
1510
+ # ======================================================================= #
1511
+ # === systematische_zoologie
1512
+ # ======================================================================= #
1513
+ when '127',
1514
+ /^systematische(_|-| |,)?zoologie?$/i,
1515
+ /^qa(_|-| |,)?syszoo?$/i,
1516
+ 'syszoo','sys_zoo',
1517
+ 'szoo',
1518
+ 'syszo',
1519
+ 'sysz',
1520
+ 'syzoo'
1521
+ 'systematische_zoologie'
1522
+ # ======================================================================= #
1523
+ # === betriebssysteme
1524
+ # ======================================================================= #
1525
+ when '128',
1526
+ /^betriebssysteme?$/i,
1527
+ /^OS\??$/i,
1528
+ /^operating(_|-| |,)?systems?$/i
1529
+ 'betriebssysteme'
1530
+ # ======================================================================= #
1531
+ # === informatik
1532
+ # ======================================================================= #
1533
+ when '129','informatik','informatics',
1534
+ 'informatic',
1535
+ /^qainf\??$/i
1536
+ 'informatik'
1537
+ # ======================================================================= #
1538
+ # === c_programming
1539
+ # ======================================================================= #
1540
+ when '130','c','c_programming',
1541
+ /^the(_|-| |,)?c(_|-| |,)?programming(_|-| |,)?language?$/i,
1542
+ 'cprog',
1543
+ 'cprogramming',
1544
+ /^qaC\??$/i
1545
+ 'the_c_programming_language'
1546
+ # ======================================================================= #
1547
+ # === abfall
1548
+ # ======================================================================= #
1549
+ when '131',
1550
+ 'abfall',
1551
+ /^abfall(_|-| |,)?als(_|-| |,)?ressource$/i
1552
+ 'abfall_als_ressource'
1553
+ # ======================================================================= #
1554
+ # === fish
1555
+ # ======================================================================= #
1556
+ when '132',
1557
+ 'fish',
1558
+ /^fish(_|-| |,)?(_|-| |,)?(_|-| |,)?fluorescence(_|-| |,)?in(_|-| |,)?si$/i,
1559
+ /^fish(_|-| |,)?(_|-| |,)?(_|-| |,)?fluorescence(_|-| |,)?in(_|-| |,)?situ(_|-| |,)?hybridization$/i
1560
+ 'fish'
1561
+ # ======================================================================= #
1562
+ # === ruby_on_rails
1563
+ # ======================================================================= #
1564
+ when '133','ruby_on_rails','ror',
1565
+ 'rubyonrails',
1566
+ 'ruby-on-rails',
1567
+ /rails$/
1568
+ 'ruby_on_rails'
1569
+ # ======================================================================= #
1570
+ # === chemische_technologie_anorganischer_stoff
1571
+ # ======================================================================= #
1572
+ when '134',
1573
+ 'chemtech',
1574
+ 'chemtech1',
1575
+ 'chemt',
1576
+ 'materialkunde',
1577
+ 'material_sciences',
1578
+ /^chem(_|-| |,)?anorg\??$/i,
1579
+ 'chemanon',
1580
+ /^chemische(_|-| |,)?technologie(_|-| |,)?anorganischer(_|-| |,)?stoffe$/,
1581
+ /^techchem1$/i
1582
+ 'chemische_technologie_anorganischer_stoffe'
1583
+ # ======================================================================= #
1584
+ # === biophysik
1585
+ # ======================================================================= #
1586
+ when '135',
1587
+ /^biophysik$/,
1588
+ /^biophysics?$/i
1589
+ 'biophysik'
1590
+ # ======================================================================= #
1591
+ # === pflanzenbau
1592
+ # ======================================================================= #
1593
+ when '136',
1594
+ /pflanzenba?u?/,'pbau'
1595
+ 'pflanzenbau'
1596
+ # ======================================================================= #
1597
+ # === plant_development
1598
+ # ======================================================================= #
1599
+ when '137',
1600
+ /^plant(_|-| |,)?development$/,
1601
+ /^plant_?dev\??/,
1602
+ 'pdev',
1603
+ /^devbio(_|-| |,)?plants$/i
1604
+ 'plant_development'
1605
+ # ======================================================================= #
1606
+ # === glykomik
1607
+ # ======================================================================= #
1608
+ when '138',
1609
+ /^-?-?glykomik$/i,
1610
+ /^-?-?glycomics$/i,
1611
+ /^-?-?sugar/,
1612
+ /^-?-?glykans\??$/,
1613
+ 'zucker'
1614
+ 'glykomik'
1615
+ # ======================================================================= #
1616
+ # === Grünlandbewirtschaftung
1617
+ # ======================================================================= #
1618
+ when '139',
1619
+ /^Grünlandbewirtschaftung$/i,
1620
+ /^grassland(_|-| |,)?cultivation$/,
1621
+ /^grünlandwirtschaft$/i,
1622
+ /^grünlandbewirtschaftung(_|-| |,)?\(?$/i,
1623
+ 'grün',
1624
+ 'grünland'
1625
+ 'grassland_cultivation'
1626
+ # ======================================================================= #
1627
+ # === ökologische_landwirtschaft
1628
+ # ======================================================================= #
1629
+ when '140',
1630
+ /^Ökologische ?Landwirtschaft$/i,'ökoland',
1631
+ 'ökologische_landwirtschaft',
1632
+ /ecological_?agriculture/,
1633
+ /^ökologische(_|-| |,)?landwirtschaf$/
1634
+ 'ecological_agriculture'
1635
+ # ======================================================================= #
1636
+ # === the_european_union
1637
+ # ======================================================================= #
1638
+ when '141',
1639
+ /^the(_|-| |,)?european(_|-| |,)?union$/i,
1640
+ 'european_union',
1641
+ 'europeanunion',
1642
+ 'eu?',
1643
+ 'eu',
1644
+ /^the(_|-| |,)?eu$/
1645
+ 'the_european_union'
1646
+ # ======================================================================= #
1647
+ # === lipids
1648
+ # ======================================================================= #
1649
+ when '142',
1650
+ 'lipids',
1651
+ 'lipid','fett',
1652
+ 'lipide'
1653
+ 'lipids'
1654
+ # ======================================================================= #
1655
+ # === nucleotide_sequencing
1656
+ # ======================================================================= #
1657
+ when '143',
1658
+ /^nucleotide(_|-| |,)?sequencing$/i,
1659
+ /^NGS\??$/i,
1660
+ 'sequencing',
1661
+ 'sequenzierung','nucleotideseq','seq2',
1662
+ 'nusequencing'
1663
+ 'nucleotide_sequencing'
1664
+ # ======================================================================= #
1665
+ # === databases
1666
+ # ======================================================================= #
1667
+ when '144',
1668
+ /^databases\??$/i,
1669
+ /^datenbanken\??$/i,
1670
+ /^databases(_|-| |,)?and(_|-| |,)?sql$/i,
1671
+ /database/,
1672
+ /^qasql\??$/,
1673
+ 'datenbank',
1674
+ /^sql$/i
1675
+ 'databases_and_sql'
1676
+ # ======================================================================= #
1677
+ # === tierzucht
1678
+ # ======================================================================= #
1679
+ when '145','tierzucht'
1680
+ 'tierzucht'
1681
+ # ======================================================================= #
1682
+ # === biological_therapeutics
1683
+ # ======================================================================= #
1684
+ when '146',/^biological(_|-| |,)?therapeutics$/i,
1685
+ 'biologics','biologica','biologika','ther',
1686
+ 'therapeutics',
1687
+ 'thera',
1688
+ 'biothera',
1689
+ 'kunert'
1690
+ 'biological_therapeutics'
1691
+ # ======================================================================= #
1692
+ # === forstwirtschaft
1693
+ # ======================================================================= #
1694
+ when '147',/forstwirtschaft/i,'forst?','forst'
1695
+ 'forstwirtschaft'
1696
+ # ======================================================================= #
1697
+ # === alcohols
1698
+ # ======================================================================= #
1699
+ when '148','alcohols','alcohol','alkohol','alk',
1700
+ /^alkohole$/i
1701
+ 'alcohols'
1702
+ # ======================================================================= #
1703
+ # === klima
1704
+ # ======================================================================= #
1705
+ when '149','klima'
1706
+ 'klima'
1707
+ # ======================================================================= #
1708
+ # === elektrotechnik
1709
+ # ======================================================================= #
1710
+ when '150',
1711
+ 'elektrotechnik',
1712
+ 'elektrizität',
1713
+ 'echem',
1714
+ 'elektro',
1715
+ 'strom',
1716
+ /^elektrotechnik(_|-| |,)?und(_|-| |,)?elektrizität$/i
1717
+ 'elektrotechnik_und_elektrizität'
1718
+ # ======================================================================= #
1719
+ # === weinbau
1720
+ # ======================================================================= #
1721
+ when '151','weinbau','wein'
1722
+ 'weinbau'
1723
+ # ======================================================================= #
1724
+ # === technische_grundlagen_der_informatik
1725
+ # ======================================================================= #
1726
+ when '152',
1727
+ 'technische_grundlagen_der_informatik',
1728
+ /^technische(_|-| |,)?informatik$/i,
1729
+ /^technische(_|-| |,)?grundlagen(_|-| |,)?der$/i,
1730
+ /^technische(_|-| |,)?grundlagen(_|-| |,)?der(_|-| |,)?informatik$/i,
1731
+ /^tech(_|-| |,)?computer\??$/i
1732
+ 'technische_grundlagen_der_informatik'
1733
+ # ======================================================================= #
1734
+ # === c++
1735
+ # ======================================================================= #
1736
+ when '153',
1737
+ 'c++',
1738
+ 'the_c_plus_plus_programming_language',
1739
+ 'cpp',
1740
+ 'cepp',
1741
+ 'qacpp',
1742
+ /^qaCpp\??$/i,
1743
+ /^qaC\+\+\??$/i,
1744
+ /^the(_|-| |,)?c\+\+(_|-| |,)?programming(_|-| |,)?language$/i,
1745
+ /^the(_|-| |,)?c\+\+(_|-| |,)?programming(_|-| |,)?langu?$/i
1746
+ 'the_c_plus_plus_programming_language'
1747
+ # ======================================================================= #
1748
+ # === semisynthese
1749
+ # ======================================================================= #
1750
+ when '154',
1751
+ 'semisynthese',
1752
+ 'semisynthese_proteinen',
1753
+ 'semisynth',
1754
+ 'semi',
1755
+ /^semisynthese(_|-| |,)?von(_|-| |,)?proteinen(_|-| |,)?und(_|-| |,)?nukleotiden$/i,
1756
+ /^semisynthese(_|-| |,)?von(_|-| |,)?proteinen?$/i
1757
+ 'semisynthese_von_proteinen_und_nukleotiden'
1758
+ # ======================================================================= #
1759
+ # === biomaterials
1760
+ # ======================================================================= #
1761
+ when '155','biomaterials','biomaterial','biomat','biom'
1762
+ 'biomaterials'
1763
+ # ======================================================================= #
1764
+ # === naturschutz
1765
+ # ======================================================================= #
1766
+ when '156','naturschutz',
1767
+ 'natur',
1768
+ 'nature',
1769
+ /^nature(_|-| |,)?conservation(_|-| |,)?and(_|-| |,)?biodiversity(_|-| |,)?$/i,
1770
+ /^naturschutz(_|-| |,)?und(_|-| |,)?biodivers$/i,
1771
+ /^naturschutz(_|-| |,)?und(_|-| |,)?biodiversität$/i,
1772
+ /^qanatur\??$/i
1773
+ 'nature_conservation_and_biodiversity'
1774
+ # ======================================================================= #
1775
+ # === biomembranes
1776
+ # ======================================================================= #
1777
+ when '157','biomembranes','biomembrane',
1778
+ /^membranes?$/
1779
+ 'biomembranes'
1780
+ # ======================================================================= #
1781
+ # === vitamine
1782
+ # ======================================================================= #
1783
+ when '158','vitamine','vitamin','vitamins','vitamines'
1784
+ 'vitamine'
1785
+ # ======================================================================= #
1786
+ # === python
1787
+ # ======================================================================= #
1788
+ when '159','python','pthon','pytho',
1789
+ 'pyhton',
1790
+ 'pythn',
1791
+ 'qapy',
1792
+ 'qapy?',
1793
+ 'qpay',
1794
+ /^qa?python\??$/i
1795
+ 'python'
1796
+ # ======================================================================= #
1797
+ # === archaea
1798
+ # ======================================================================= #
1799
+ when '160',
1800
+ 'archaea'
1801
+ 'archaea'
1802
+ # ======================================================================= #
1803
+ # === cyanobacteria
1804
+ # ======================================================================= #
1805
+ when '161','cyanobacteria','cyano'
1806
+ 'cyanobacteria'
1807
+ # ======================================================================= #
1808
+ # === naturstoffe
1809
+ # ======================================================================= #
1810
+ when '162','naturstoffe'
1811
+ 'naturstoffe'
1812
+ # ======================================================================= #
1813
+ # === biopolymers
1814
+ # ======================================================================= #
1815
+ when '163','biopolymers','biopolymer'
1816
+ 'biopolymers'
1817
+ # ======================================================================= #
1818
+ # === bionik
1819
+ # ======================================================================= #
1820
+ when '164','bionik'
1821
+ 'bionik'
1822
+ # ======================================================================= #
1823
+ # === urbanism
1824
+ # ======================================================================= #
1825
+ when '165','urbanism',/^urbanism(_|-| |,)?and(_|-| |,)?traffic$/
1826
+ 'urbanism_and_traffic'
1827
+ # ======================================================================= #
1828
+ # === vaccination
1829
+ # ======================================================================= #
1830
+ when '166','vaccination',
1831
+ 'vaccine',
1832
+ 'vaccines',
1833
+ 'vacca',
1834
+ 'vakzin',
1835
+ 'vacine',
1836
+ 'vacc',
1837
+ /^vaccines(_|-| |,)?and(_|-| |,)?vaccination$/,
1838
+ /^vakzinierung$/,
1839
+ 'vakzine',
1840
+ /^antigene\??$/
1841
+ 'vaccines_and_vaccination'
1842
+ # ======================================================================= #
1843
+ # === crispr
1844
+ # ======================================================================= #
1845
+ when '167','crispr','crisp'
1846
+ 'crispr'
1847
+ # ======================================================================= #
1848
+ # === java
1849
+ # ======================================================================= #
1850
+ when '168','java','qajava',
1851
+ /^qjava\??$/i
1852
+ 'java'
1853
+ # ======================================================================= #
1854
+ # === yeast
1855
+ # ======================================================================= #
1856
+ when '169','yeast','ye'
1857
+ 'yeast'
1858
+ # ======================================================================= #
1859
+ # === ruby
1860
+ # ======================================================================= #
1861
+ when '170',
1862
+ 'ruby',
1863
+ /^qa?ruby\??$/i
1864
+ 'ruby'
1865
+ # ======================================================================= #
1866
+ # === technisches_zeichnen
1867
+ # ======================================================================= #
1868
+ when '171',
1869
+ /^technisches(_|-| |,)?zeichnen$/i,
1870
+ 'CAD',
1871
+ 'cad'
1872
+ 'technisches_zeichnen'
1873
+ # ======================================================================= #
1874
+ # === prozesstechnik
1875
+ # ======================================================================= #
1876
+ when '172',
1877
+ 'prozesstechnik',
1878
+ 'prozesstechnologie',
1879
+ 'prozesskunde',
1880
+ 'prozess',
1881
+ 'prozess?'
1882
+ 'prozesstechnik'
1883
+ # ======================================================================= #
1884
+ # === glykolyse
1885
+ # ======================================================================= #
1886
+ when '173',
1887
+ 'glykolyse',
1888
+ 'glycolysis',
1889
+ 'glycolyse',
1890
+ 'gly',
1891
+ 'glyk',
1892
+ 'gl',
1893
+ 'glyc',
1894
+ 'glyco',
1895
+ 'glyko',
1896
+ /^glycolysis\??$/i,
1897
+ /^die(_|-| |,)?glykolyse$/i,
1898
+ /^glykolysis$/i
1899
+ 'glycolysis'
1900
+ # ======================================================================= #
1901
+ # === rnai
1902
+ # ======================================================================= #
1903
+ when '174',
1904
+ /^RNAi$/i,
1905
+ /^miRNA$/i,
1906
+ /^siRNA$/i,
1907
+ /^RNAi(_|-| |,)?(_|-| |,)?siRNA(_|-| |,)?and(_|-| |,)?miRNA$/i
1908
+ 'RNAi_siRNA_and_miRNA'
1909
+ # ======================================================================= #
1910
+ # === mikrobielle_lebensgemeinschaften
1911
+ # ======================================================================= #
1912
+ when '175',
1913
+ 'mikrob_lebensgemeinschaften',
1914
+ 'mikb',
1915
+ /^Lebensgemeinschaften$/i,
1916
+ /^Mikrobielle(_|-| |,)?Lebensgemeinschaften$/i,
1917
+ /^Mikrobielle(_|-| |,)?Lebensgemeins$/i
1918
+ 'mikrobielle_lebensgemeinschaften'
1919
+ # ======================================================================= #
1920
+ # === theoretische_informatik
1921
+ # ======================================================================= #
1922
+ when '176',/^theoretische(_|-| |,)?informatik\??$/i,
1923
+ 'theore',
1924
+ 'theoinf',/^theo(_|-| |,)?inf/i,
1925
+ 'tinf'
1926
+ 'theoretische_informatik'
1927
+ # ======================================================================= #
1928
+ # === algorithms
1929
+ # ======================================================================= #
1930
+ when '177',/algorithms/,'algo','algorithm',
1931
+ 'algorithmus',
1932
+ 'alg'
1933
+ 'algorithms'
1934
+ # ======================================================================= #
1935
+ # === javascript
1936
+ # ======================================================================= #
1937
+ when '178',
1938
+ 'javascript'
1939
+ 'javascript'
1940
+ # ======================================================================= #
1941
+ # === elektronenmikroskopie
1942
+ # ======================================================================= #
1943
+ when '179',
1944
+ 'elektronenmikroskopie',
1945
+ 'emopy',
1946
+ 'tem'
1947
+ 'elektronenmikroskopie'
1948
+ # ======================================================================= #
1949
+ # === bauwesen
1950
+ # ======================================================================= #
1951
+ when '180',
1952
+ 'bauwesen'
1953
+ 'bauwesen'
1954
+ # ======================================================================= #
1955
+ # === system_biology
1956
+ # ======================================================================= #
1957
+ when '181',
1958
+ /^system(_|-| |,)?biology$/,
1959
+ /systems?/i,
1960
+ 'sysbio',
1961
+ 'systemb',
1962
+ 'sysbi',
1963
+ 'systembio',
1964
+ 'systembio?',
1965
+ /^systems(_|-| |,)?biology/i,
1966
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthetic(_|-| |,)?biology$/,
1967
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthe$/,
1968
+ /^synth$/i,
1969
+ /^systembiologie$/i,
1970
+ /^synthetic$/i,
1971
+ /^synthetic(_|-| |,)?biology$/i,
1972
+ /^synth(_|-| |,)?bio$/i
1973
+ 'system_biology_and_synthetic_biology'
1974
+ # ======================================================================= #
1975
+ # === architektur
1976
+ # ======================================================================= #
1977
+ when '182',/^architektur$/,/^architecture$/
1978
+ 'architecture'
1979
+ # ======================================================================= #
1980
+ # === biofilms
1981
+ # ======================================================================= #
1982
+ when '183',
1983
+ 'biofilms',
1984
+ 'biofilm',
1985
+ 'biofilme'
1986
+ 'biofilms'
1987
+ # ======================================================================= #
1988
+ # === dna_replikation
1989
+ # ======================================================================= #
1990
+ when '184',
1991
+ /^dna(_|-| |,)?repli(c|k)ation$/i,
1992
+ 'replication',
1993
+ /^dna(_|-| |,)?repl?$/i
1994
+ 'dna_replication'
1995
+ # ======================================================================= #
1996
+ # === immunanalytik
1997
+ # ======================================================================= #
1998
+ when '185',/^immunanalyti(c|k)$/i,
1999
+ 'immunoanalytik',
2000
+ 'immunoana',
2001
+ 'immunana',
2002
+ 'immuna',
2003
+ 'immunoassay',
2004
+ /^immunoanalytics$/i
2005
+ 'immunanalytik'
2006
+ # ======================================================================= #
2007
+ # === elektrophorese
2008
+ # ======================================================================= #
2009
+ when '186',
2010
+ /^elektrophorese$/i,
2011
+ /^electrophoresis\??$/i,
2012
+ /^gelele(c|k)?trophorese\??$/i,
2013
+ 'gelelectrophoresis',
2014
+ 'elektrophoresis',
2015
+ 'gel',
2016
+ 'sds','gele'
2017
+ 'elektrophorese'
2018
+ # ======================================================================= #
2019
+ # === endospores
2020
+ # ======================================================================= #
2021
+ when '187',
2022
+ /^endospores(_|-| |,)?and(_|-| |,)?spores$/i,
2023
+ /^endosporen(_|-| |,)?und(_|-| |,)?sporen$/i,
2024
+ 'endospores','spores',
2025
+ 'endo',
2026
+ 'endospore',
2027
+ 'endosporen',
2028
+ /^spore\??$/i,
2029
+ /^endospores\??$/i
2030
+ 'endospores_and_spores'
2031
+ # ======================================================================= #
2032
+ # === the_bacterial_cell_wall
2033
+ # ======================================================================= #
2034
+ when '188',/^the(_|-| |,)?bacterial(_|-| |,)?cell(_|-| |,)?wall$/i,
2035
+ 'bacterial_cell_wall?',
2036
+ /^bacterial(_|-| |,)?cell(_|-| |,)?wall\??$/,
2037
+ /^cell(_|-| |,)?well$/,
2038
+ /^cell(_|-| |,)?wall$/
2039
+ 'the_bacterial_cell_wall'
2040
+ # ======================================================================= #
2041
+ # === bacteriophages
2042
+ #
2043
+ # Everything about bacteriophages/phages.
2044
+ # ======================================================================= #
2045
+ when '189',
2046
+ 'bacteriophages',
2047
+ 'phages',
2048
+ 'bakteriophagen',
2049
+ 'phag',
2050
+ /^pha?gen?$/
2051
+ 'bacteriophages'
2052
+ # ======================================================================= #
2053
+ # === mutation
2054
+ # ======================================================================= #
2055
+ when '190',
2056
+ /^mutation$/i,
2057
+ /^dna(_|-| |,)?repair$/i,
2058
+ /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repair$/i,
2059
+ /^dna(_|-| |,)?repair(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?mutation$/i,
2060
+ /^dna(_|-| |,)?mutations(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repair$/i,
2061
+ /^dna(_|-| |,)?mutations(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa$/i,
2062
+ /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa$/i,
2063
+ /^dna(_|-| |,)?mutation$/i
2064
+ 'dna_mutation_and_dna_repair'
2065
+ # ======================================================================= #
2066
+ # === apoptosis
2067
+ # ======================================================================= #
2068
+ when '191',
2069
+ 'apoptosis',
2070
+ 'aptoptosis',
2071
+ 'apoptose',
2072
+ 'zelltod'
2073
+ 'apoptosis'
2074
+ # ======================================================================= #
2075
+ # === interferon
2076
+ # ======================================================================= #
2077
+ when '192','interferon','ifn','interferone',
2078
+ /^the(_|-| |,)?interferon(_|-| |,)?system$/i
2079
+ 'the_interferon_system'
2080
+ # ======================================================================= #
2081
+ # === pharmazeutische_biotechnologie
2082
+ # ======================================================================= #
2083
+ when '193',
2084
+ 'pharmabiotech',
2085
+ /^pharmazeutische(_|-| |,)?biotechnologie1$/i,
2086
+ /^pharmazeutische(_|-| |,)?biotechnologie$/i,
2087
+ /^pharmaceutical(_|-| |,)?biotechnology$/i,
2088
+ /^pharmaceutical(_|-| |,)?biotechnol$/i,
2089
+ /^pharma(_|-| |,)?biotech\??$/i,
2090
+ 'pbiotech',
2091
+ 'pharma',
2092
+ 'parma',
2093
+ /^pbiotechnologie$/i,
2094
+ 'pharmatech'
2095
+ 'pharmaceutical_biotechnology'
2096
+ # ======================================================================= #
2097
+ # === molekulare_infektionsbiologie
2098
+ # ======================================================================= #
2099
+ when '194',
2100
+ 'infektionsbiologie',
2101
+ 'infektion',
2102
+ 'infekt',
2103
+ 'infek',
2104
+ 'molinfekt',
2105
+ 'molinf',
2106
+ 'parasit',
2107
+ 'parasiten',
2108
+ 'parasitologie',
2109
+ /^molekulare(_|-| |,)?infektionsbiologie$/i,
2110
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?molecular(_|-| |,)?infection(_|-| |,)?biology$/i,
2111
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?mo$/i,
2112
+ /^parasites?$/i,
2113
+ /^infections?$/i,
2114
+ /^molecular(_|-| |,)?infection(_|-| |,)?biology$/i
2115
+ 'parasitic_diseases_and_molecular_infection_biology'
2116
+ # ======================================================================= #
2117
+ # === structural_bioinformatics
2118
+ # ======================================================================= #
2119
+ when '195',
2120
+ /^structural(_|-| |,)?bioinformatics$/i,
2121
+ 'struktbioinf',
2122
+ 'structbioinf',
2123
+ 'strubioinfo',
2124
+ 'strubinf',
2125
+ 'struktbioinfo',
2126
+ 'strubiinf',
2127
+ 'strubioinf',
2128
+ 'strubioinformatic',
2129
+ 'strubioinformatics',
2130
+ 'strukturinformatik',
2131
+ 'structbio',
2132
+ /^strukturbioinf\??$/,
2133
+ /bioinf2$/i # This variant may be changed eventually.
2134
+ 'structural_bioinformatics'
2135
+ # ======================================================================= #
2136
+ # === food_microbiology
2137
+ # ======================================================================= #
2138
+ when '196',
2139
+ /^food(_|-| |,)?microbiology$/i,
2140
+ /^food(_|-| |,)?biotechnology$/i,
2141
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?food(_|-| |,)?biotechnology$/i,
2142
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?foo$/i,
2143
+ /^food(_|-| |,)?biotech$/i
2144
+ 'food_microbiology_and_food_biotechnology'
2145
+ # ======================================================================= #
2146
+ # === projektmanagement
2147
+ # ======================================================================= #
2148
+ when '197',
2149
+ /^proje(c|k)tmanagement$/i,
2150
+ /^pmanagement$/i,
2151
+ 'pman'
2152
+ 'projektmanagement'
2153
+ # ======================================================================= #
2154
+ # === cell_cultures
2155
+ # ======================================================================= #
2156
+ when '198',
2157
+ /^cell(_|-| |,)?cultures?\??$/i,
2158
+ /^cell(_|-| |,)?culturing\??$/i,
2159
+ 'cellu',
2160
+ 'cellcu'
2161
+ 'cell_cultures'
2162
+ # ======================================================================= #
2163
+ # === chemotaxis_and_motility_in_prokaryotes
2164
+ # ======================================================================= #
2165
+ when '199',
2166
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
2167
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility$/i,
2168
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility_?$/i,
2169
+ /^chemotaxie?s,?(_|-| |,)?quorum(_|-| |,)?sensing(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
2170
+ /^chemotaxis\??$/i,
2171
+ /^quorum(_|-| |,)?sensing$/i,
2172
+ 'chemo?',
2173
+ 'chemo',
2174
+ 'flagella',
2175
+ /^flag\??$/i
2176
+ 'chemotaxis_quorum_sensing_and_motility_in_prokaryotes'
2177
+ # ======================================================================= #
2178
+ # === cellular_transport_and_protein_secretion
2179
+ # ======================================================================= #
2180
+ when '200',
2181
+ /^cellular(_|-| |,)?transport$/i,
2182
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?protein(_|-| |,)?secretion$/i,
2183
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?pr$/i
2184
+ 'cellular_transport_and_protein_secretion'
2185
+ # ======================================================================= #
2186
+ # === elisa
2187
+ # ======================================================================= #
2188
+ when '201',
2189
+ /^elisa$/i
2190
+ 'elisa'
2191
+ # ======================================================================= #
2192
+ # === transcription
2193
+ # ======================================================================= #
2194
+ when '202',
2195
+ /^transc?ription$/i,
2196
+ /^transkription$/i,
2197
+ /^qa(_|-| |,)?transcription\??$/i
2198
+ 'transcription'
2199
+ # ======================================================================= #
2200
+ # === toxikologie
2201
+ # ======================================================================= #
2202
+ when '203',
2203
+ /^toxikologie$/i,
2204
+ /^qatox\??$/i,
2205
+ 'toxi',
2206
+ 'tox',
2207
+ 'toxin',
2208
+ 'toxic'
2209
+ 'toxikologie'
2210
+ # ======================================================================= #
2211
+ # === biomarkers
2212
+ # ======================================================================= #
2213
+ when '204',
2214
+ /^biomarkers?$/i,
2215
+ 'bioma'
2216
+ 'biomarkers'
2217
+ # ======================================================================= #
2218
+ # === fluorescence_microscopy
2219
+ # ======================================================================= #
2220
+ when '205',
2221
+ /^fluorescence(_|-| |,)?microscopy\??$/i,
2222
+ /^fluorescence(_|-| |,)?microscope\??$/i,
2223
+ 'fluor'
2224
+ 'fluorescence_microscopy'
2225
+ # ======================================================================= #
2226
+ # === html
2227
+ # ======================================================================= #
2228
+ when '206',
2229
+ /^html\??$/i
2230
+ 'html'
2231
+ # ======================================================================= #
2232
+ # === scientific_writing
2233
+ # ======================================================================= #
2234
+ when '207',
2235
+ /^scientific(_|-| |,)?writing$/i,
2236
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?publishing$/i,
2237
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?pu$/i,
2238
+ 'scientific'
2239
+ 'scientific_writing_and_publishing'
2240
+ # ======================================================================= #
2241
+ # === geography
2242
+ # ======================================================================= #
2243
+ when '208',
2244
+ /^geography$/i,
2245
+ /^geographie$/i
2246
+ 'geography'
2247
+ # ======================================================================= #
2248
+ # === excel
2249
+ # ======================================================================= #
2250
+ when '209',
2251
+ /^excel$/i
2252
+ 'excel'
2253
+ # ======================================================================= #
2254
+ # === splicing
2255
+ # ======================================================================= #
2256
+ when '210',
2257
+ /^splicing$/i,
2258
+ /^introns$/i,
2259
+ /^exons$/i,
2260
+ /^splice$/i,
2261
+ /^spliceosome$/i,
2262
+ /^splicing(_|-| |,)?(_|-| |,)?exons(_|-| |,)?and(_|-| |,)?introns$/i,
2263
+ /^splicing(_|-| |,)?(_|-| |,)?exons(_|-| |,)?and(_|-| |,)?intro$/i
2264
+ 'splicing_exons_and_introns'
2265
+ # ======================================================================= #
2266
+ # === the_microbiome
2267
+ # ======================================================================= #
2268
+ when '211',
2269
+ /^microbiome?$/i,
2270
+ /^the(_|-| |,)?microbiome$/i,
2271
+ /^human(_|-| |,)?microbiome\??$/i,
2272
+ 'mome'
2273
+ 'the_microbiome'
2274
+ # ======================================================================= #
2275
+ # === citratzyklus
2276
+ # ======================================================================= #
2277
+ when '212',
2278
+ 'citratzyklus',
2279
+ /^citric(_|-| |,)?acid(_|-| |,)?cycle$/i,
2280
+ /^citric(_|-| |,)?cycle$/i,
2281
+ /^the(_|-| |,)?citric(_|-| |,)?acid(_|-| |,)?cycle$/i,
2282
+ /^CAC\??$/i,
2283
+ 'citric',
2284
+ 'citrat'
2285
+ 'citric_acid_cycle'
2286
+ # ======================================================================= #
2287
+ # === peroxisomes
2288
+ # ======================================================================= #
2289
+ when '213',
2290
+ /^peroxisomes$/i,
2291
+ /^peroxisomes(_|-| |,)?(_|-| |,)?glycosomes(_|-| |,)?and(_|-| |,)?lysosomes$/i,
2292
+ /^peroxisomes(_|-| |,)?(_|-| |,)?glycosomes(_|-| |,)?a$/i
2293
+ 'peroxisomes_glycosomes_and_lysosomes'
2294
+ # ======================================================================= #
2295
+ # === messtechnik_und_regeltechnik
2296
+ # ======================================================================= #
2297
+ when '214',
2298
+ 'mess',
2299
+ /^messtechnik$/i,
2300
+ /^regeltechnik$/i,
2301
+ /^messtechnik(_|-| |,)?und(_|-| |,)?regeltechnik$/i,
2302
+ /^messtechnik(_|-| |,)?und(_|-| |,)?regeltech$/i
2303
+ 'messtechnik_und_regeltechnik'
2304
+ # ======================================================================= #
2305
+ # === betriebswirtschaftslehre
2306
+ # ======================================================================= #
2307
+ when '215',
2308
+ /^betriebswirtschaftslehre\??$/i,
2309
+ /^betriebswirtschaf\??$/i,
2310
+ /^betrieb\??$/i,
2311
+ /^betriebswirtschaft\??$/i,
2312
+ /^qabetrieb\??$/i
2313
+ 'betriebswirtschaftslehre'
2314
+ # ======================================================================= #
2315
+ # === forensik
2316
+ # ======================================================================= #
2317
+ when '216',
2318
+ /^forensik$/i
2319
+ 'forensik'
2320
+ # ======================================================================= #
2321
+ # === gluconeogenesis
2322
+ # ======================================================================= #
2323
+ when '217','gluco',
2324
+ 'gluconeo',
2325
+ 'gluconeogenese',
2326
+ /^gluconeogenesis\??$/i,
2327
+ /^-?-?Die(_|-| |,)?gluconeogenesis\??$/i
2328
+ 'gluconeogenesis'
2329
+ # ======================================================================= #
2330
+ # === netzwerke
2331
+ # ======================================================================= #
2332
+ when '218',
2333
+ /^netzwerke\??$/i,
2334
+ /^networks\??$/i,
2335
+ /^-?-?computer(_|-| |,)?networks$/
2336
+ 'netzwerke'
2337
+ # ======================================================================= #
2338
+ # === advanced_topics_in_plant_sciences
2339
+ # ======================================================================= #
2340
+ when '219',
2341
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant(_|-| |,)?sciences\??$/i,
2342
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant_?$/i,
2343
+ /^advanced(_|-| |,)?plants$/i,
2344
+ 'pflanzen2',
2345
+ 'plant2',
2346
+ 'plant3',
2347
+ 'plants2',
2348
+ 'plants3'
2349
+ 'advanced_topics_in_plant_sciences'
2350
+ # ======================================================================= #
2351
+ # === macroeconomics
2352
+ # ======================================================================= #
2353
+ when '220',
2354
+ /^macro(_|-| |,)?economics\??$/i,
2355
+ 'macroeconomy',
2356
+ /^makroökonomie$/i
2357
+ 'macroeconomics'
2358
+ # ======================================================================= #
2359
+ # === linux
2360
+ # ======================================================================= #
2361
+ when '221',
2362
+ /^linux\??$/i,
2363
+ /^linux(_|-| |,)?and(_|-| |,)?unix\??$/i
2364
+ 'linux_and_unix'
2365
+ # ======================================================================= #
2366
+ # === object_oriented_modeling
2367
+ # ======================================================================= #
2368
+ when '222',
2369
+ /^object(_|-| |,)?oriented(_|-| |,)?modeling\??$/i,
2370
+ /^objekt(_|-| |,)?orientiertes(_|-| |,)?modellieren\??$/i,
2371
+ /^objekt(_|-| |,)?orientiertes(_|-| |,)?model\??$/i
2372
+ 'object_oriented_modeling'
2373
+ # ======================================================================= #
2374
+ # === patent_law
2375
+ # ======================================================================= #
2376
+ when '223',
2377
+ /^patent(_|-| |,)?law\??$/i,
2378
+ 'plaw',
2379
+ 'patent'
2380
+ 'patent_law'
2381
+ # ======================================================================= #
2382
+ # === glyoxylatzyklus
2383
+ # ======================================================================= #
2384
+ when '224',
2385
+ /^glyoxylatzyklus\??$/i,
2386
+ /^glyoxylat\??$/i,
2387
+ 'glyoxy'
2388
+ 'glyoxylatzyklus'
2389
+ # ======================================================================= #
2390
+ # === the_universe
2391
+ # ======================================================================= #
2392
+ when '225',
2393
+ /^universe\??$/i,
2394
+ /^the(_|-| |,)?universe\??$/i
2395
+ 'the_universe'
2396
+ # ======================================================================= #
2397
+ # === computer_graphics
2398
+ # ======================================================================= #
2399
+ when '226',
2400
+ /^computer(_|-| |,)?graphics\??$/i,
2401
+ /^computer(_|-| |,)?vision(_|-| |,)?and(_|-| |,)?computer(_|-| |,)?graphics\??$/i,
2402
+ /^computer(_|-| |,)?vision$/i,
2403
+ /^visual$/i
2404
+ 'computer_vision_and_computer_graphics'
2405
+ # ======================================================================= #
2406
+ # === nutztierethologie
2407
+ # ======================================================================= #
2408
+ when '227',
2409
+ /^nutztierethologie\??$/i
2410
+ 'nutztierethologie'
2411
+ # ======================================================================= #
2412
+ # === chemische_technologie_organischer_stoffe
2413
+ # ======================================================================= #
2414
+ when '228',
2415
+ 'chemtech2',
2416
+ /^chem(_|-| |,)?org\??$/i,
2417
+ /^chemische(_|-| |,)?technologie(_|-| |,)?organischer(_|-| |,)?stoffe$/i,
2418
+ /^techorgc$/i,
2419
+ /^techchem2$/i
2420
+ 'chemische_technologie_organischer_stoffe'
2421
+ # ======================================================================= #
2422
+ # === cellulose
2423
+ # ======================================================================= #
2424
+ when '229',
2425
+ /^cellulose$/i
2426
+ 'cellulose'
2427
+ # ======================================================================= #
2428
+ # === microcontroller
2429
+ # ======================================================================= #
2430
+ when '230',
2431
+ /^mi(c|k)rocontrollers?$/i,
2432
+ /^electronics?$/i # <- This may be moved at a later point in time.
2433
+ 'microcontrollers'
2434
+ # ======================================================================= #
2435
+ # === mitochondria
2436
+ # ======================================================================= #
2437
+ when '231',
2438
+ /^mitochondria$/i,
2439
+ /^mitochondrien$/i,
2440
+ /^mtDNA$/i
2441
+ 'mitochondria'
2442
+ # ======================================================================= #
2443
+ # === stickstofffixierung
2444
+ # ======================================================================= #
2445
+ when '232',
2446
+ /^stickstofff?ixierung$/i,
2447
+ /^stickstofff?$/i
2448
+ 'stickstofffixierung'
2449
+ # ======================================================================= #
2450
+ # === Protein Engineering
2451
+ # ======================================================================= #
2452
+ when '233',
2453
+ /^protein(_|-| |,)?engineering\??$/i
2454
+ 'protein_engineering'
2455
+ # ======================================================================= #
2456
+ # === Cytokines
2457
+ # ======================================================================= #
2458
+ when '234',
2459
+ /^cytokines?\??$/i,
2460
+ /^chemokines?\??$/i,
2461
+ /^chemokines(_|-| |,)?and(_|-| |,)?cytokines$/i
2462
+ 'chemokines_and_cytokines'
2463
+ # ======================================================================= #
2464
+ # === Urea cycle
2465
+ # ======================================================================= #
2466
+ when '235',
2467
+ /^urea(_|-| |,)?cycle\??$/i,
2468
+ /^the(_|-| |,)?urea(_|-| |,)?cycle\??$/i,
2469
+ /^urea\??$/i
2470
+ 'urea_cycle'
2471
+ # ======================================================================= #
2472
+ # === Pentosephosphatweg
2473
+ # ======================================================================= #
2474
+ when '236',
2475
+ /^Pentosephosphatweg\??$/i,
2476
+ /^Pentosephosphat\??$/i,
2477
+ /^pentose$/
2478
+ 'pentosephosphatweg'
2479
+ # ======================================================================= #
2480
+ # === Glykogen
2481
+ # ======================================================================= #
2482
+ when '237',
2483
+ /^Glykogen\??$/i,
2484
+ /^Glycogen\??$/i
2485
+ 'glycogen'
2486
+ # ======================================================================= #
2487
+ # === Proteolyse
2488
+ # ======================================================================= #
2489
+ when '238',
2490
+ /^Proteolyse\??$/i,
2491
+ /^proteolysis\??$/i
2492
+ 'proteolyse'
2493
+ # ======================================================================= #
2494
+ # === Geometrie
2495
+ # ======================================================================= #
2496
+ when '239',
2497
+ /^geometrie\??$/i,
2498
+ /^geometry\??$/i
2499
+ 'geometrie'
2500
+ # ======================================================================= #
2501
+ # === Atomemissionsspektrometrie
2502
+ # ======================================================================= #
2503
+ when '240',
2504
+ /^atomemissionsspektrometrie\??$/i
2505
+ 'atomemissionsspektrometrie'
2506
+ # ======================================================================= #
2507
+ # === Kryptographie
2508
+ # ======================================================================= #
2509
+ when '241',
2510
+ /^kryptographie\??$/i
2511
+ 'kryptographie'
2512
+ # ======================================================================= #
2513
+ # === protozoans
2514
+ # ======================================================================= #
2515
+ when '242',
2516
+ /^protozoans?$/i,
2517
+ /^protista\??$/i,
2518
+ /^protists?$/i
2519
+ 'protozoans'
2520
+ # ======================================================================= #
2521
+ # === Thermodynamics
2522
+ # ======================================================================= #
2523
+ when '243',
2524
+ /^thermodynamics\??$/i,
2525
+ /^thermodynamik?$/i,
2526
+ /^thermodynamic$/i
2527
+ 'thermodynamics'
2528
+ # ======================================================================= #
2529
+ # === Cellular Vesicles
2530
+ # ======================================================================= #
2531
+ when '244',
2532
+ /^cellular(_|-| |,)?vesicles\??$/i
2533
+ 'cellular_vesicles'
2534
+ # ======================================================================= #
2535
+ # === Meteorologie
2536
+ # ======================================================================= #
2537
+ when '245',
2538
+ /^meteorologie(_|-| |,)?und(_|-| |,)?atmosphäre$/i,
2539
+ /^meteorologie\??$/i,
2540
+ /^wetter\??$/i
2541
+ 'meteorologie_und_atmosphäre'
2542
+ # ======================================================================= #
2543
+ # === erste_hilfe
2544
+ # ======================================================================= #
2545
+ when '246',
2546
+ /^erste(_|-| |,)?hilfe\??$/i,
2547
+ /^qaerste(_|-| |,)?hilfe\??$/i,
2548
+ /^erste$/i
2549
+ 'erste_hilfe'
2550
+ # ======================================================================= #
2551
+ # === marketing
2552
+ # ======================================================================= #
2553
+ when '247',
2554
+ /^marketing$/i
2555
+ 'marketing'
2556
+ # ======================================================================= #
2557
+ # === birds
2558
+ # ======================================================================= #
2559
+ when '248',
2560
+ /^birds$/i
2561
+ 'birds'
2562
+ # ======================================================================= #
2563
+ # === advanced_immunology
2564
+ # ======================================================================= #
2565
+ when '249',
2566
+ /^advanced(_|-| |,)?immunology$/i,
2567
+ /^advanced(_|-| |,)?immuno?$/i,
2568
+ 'imm2'
2569
+ 'advanced_immunology'
2570
+ # ======================================================================= #
2571
+ # === archaeo_viruses
2572
+ # ======================================================================= #
2573
+ when '250',
2574
+ /^archaeo(_|-| |,)?viruses$/i,
2575
+ /^viruses(_|-| |,)?of(_|-| |,)?archaea$/i
2576
+ 'archaeo_viruses'
2577
+ # ======================================================================= #
2578
+ # === light_microscopy
2579
+ # ======================================================================= #
2580
+ when '251',
2581
+ /^light(_|-| |,)?microscop(e|y)$/i,
2582
+ /^licht(_|-| |,)?mikroskop$/i
2583
+ 'light_microscopy'
2584
+ # ======================================================================= #
2585
+ # === verhaltensbiologie
2586
+ # ======================================================================= #
2587
+ when '252',
2588
+ /^verhaltensbiologie$/i,
2589
+ /^cognition\??$/i,
2590
+ 'verhalten',
2591
+ 'ethologie'
2592
+ 'verhaltensbiologie'
2593
+ # ======================================================================= #
2594
+ # === robotics
2595
+ # ======================================================================= #
2596
+ when '253',
2597
+ /^robotics?$/i,
2598
+ /^robotiks?$/i
2599
+ 'robotics'
2600
+ # ======================================================================= #
2601
+ # === electron_microscopy
2602
+ # ======================================================================= #
2603
+ when '254',
2604
+ /^electron(_|-| |,)?microscopy$/i
2605
+ 'electron_microscopy'
2606
+ # ======================================================================= #
2607
+ # === Sozialbiologie
2608
+ # ======================================================================= #
2609
+ when '255',
2610
+ /^Sozialbiologie$/i,
2611
+ 'latest',
2612
+ 'last' # ← These two entries have to be adjusted manually to the last entry point. (last tag)
2613
+ 'sozialbiologie'
2614
+ else
2615
+ if be_verbose and !i.to_s.empty?
2616
+ pp caller()
2617
+ puts "In the method Studium.find_corresponding_exam_topic(), we did "\
2618
+ "not find any match for:"
2619
+ puts " `#{i}` (Encoding: #{i.encoding.to_s}."
2620
+ end
2621
+ false # We did not find anything.
2622
+ end
2623
+ end; self.instance_eval { alias sanitize_topic find_corresponding_exam_topic } # === Studium.sanitize_topic
2624
+ self.instance_eval { alias sanitize_this_potential_exam_topic find_corresponding_exam_topic } # === Studium.sanitize_this_potential_exam_topic
2625
+ self.instance_eval { alias expand_this_exam_topic find_corresponding_exam_topic } # === Studium.expand_this_exam_topic
2626
+
2627
+ # ========================================================================= #
2628
+ # === Studium.find_corresponding_exam_title
2629
+ #
2630
+ # This will return the corresponding exam title. It will pass the input
2631
+ # through Studium.find_corresponding_exam_topic().
2632
+ #
2633
+ # Usage examples:
2634
+ #
2635
+ # title = Studium.find_corresponding_exam_title('technische_grundlagen_der_informatik') # => "Technische Grundlagen der Informatik"
2636
+ # title = Studium.find_corresponding_exam_title('mphysio') # => "Mikrobielle Physiologie"
2637
+ #
2638
+ # ========================================================================= #
2639
+ def self.find_corresponding_exam_title(
2640
+ i, be_verbose = true
2641
+ )
2642
+ i = i.to_s.downcase
2643
+ # ======================================================================= #
2644
+ # First, pass the input through a filter:
2645
+ # ======================================================================= #
2646
+ i = ::Studium.find_corresponding_exam_topic(i, be_verbose)
2647
+ # ======================================================================= #
2648
+ # Next we can pass it in via a simple menu here:
2649
+ # ======================================================================= #
2650
+ i = case i
2651
+ # ======================================================================= #
2652
+ # === basic_virology
2653
+ # ======================================================================= #
2654
+ when 'basic_virology'
2655
+ 'Virologie Allgemein'
2656
+ # ======================================================================= #
2657
+ # === advanced_topics_in_plant_sciences
2658
+ # ======================================================================= #
2659
+ when /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant(_|-| |,)?sciences\??$/i,
2660
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant$/i
2661
+ 'Advanced topics in plant sciences'
2662
+ # ======================================================================= #
2663
+ # === basic_chemistry
2664
+ # ======================================================================= #
2665
+ when 'basic_chemistry'
2666
+ 'Chemie'
2667
+ # ======================================================================= #
2668
+ # === allgemeine_mikrobiologie
2669
+ # ======================================================================= #
2670
+ when 'allgemeine_mikrobiologie'
2671
+ 'Allgemeine Mikrobiologie'
2672
+ # ======================================================================= #
2673
+ # === embryologie_und_entwicklung
2674
+ # ======================================================================= #
2675
+ when 'embryologie_und_entwicklung'
2676
+ 'Entwicklungsbiologie'
2677
+ # ======================================================================= #
2678
+ # === computer
2679
+ # ======================================================================= #
2680
+ when 'computer',
2681
+ /^computer(_|-| |,)?science$/i
2682
+ 'Computer Science'
2683
+ # ======================================================================= #
2684
+ # === Meteorologie und Atmosphäre
2685
+ # ======================================================================= #
2686
+ when /^meteorologie(_|-| |,)?und(_|-| |,)?atmosphäre$/i
2687
+ 'Meteorologie und Atmosphäre'
2688
+ # ======================================================================= #
2689
+ # === pflanzenwissenschaften
2690
+ # ======================================================================= #
2691
+ when 'pflanzenwissenschaften',
2692
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der$/i
2693
+ 'Struktur und Funktion der Pflanzen'
2694
+ when 'allgemeine_genetik'
2695
+ 'Allgemeine Genetik'
2696
+ # ======================================================================= #
2697
+ # === Basic Biotechnology
2698
+ # ======================================================================= #
2699
+ when 'basic_biotechnology',
2700
+ /^basic(_|-| |,)?biotechnology$/i
2701
+ 'Biotechnologie'
2702
+ when 'neurobiology'
2703
+ 'Neurobiologie'
2704
+ when 'zoologie'
2705
+ 'Allgemeine Zoologie'
2706
+ # ======================================================================= #
2707
+ # === medizin
2708
+ # ======================================================================= #
2709
+ when 'medizin',
2710
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinische(_|-| |,)?technik$/i
2711
+ 'Medizin und biomedizinische Technik'
2712
+ # ======================================================================= #
2713
+ # === protein engineering
2714
+ # ======================================================================= #
2715
+ when 'protein_engineering'
2716
+ 'Protein Engineering'
2717
+ when 'organische_chemie'
2718
+ 'Organische Chemie'
2719
+ when 'analytische_chemie_1'
2720
+ 'Analytische Chemie'
2721
+ # ======================================================================= #
2722
+ # === ecology
2723
+ # ======================================================================= #
2724
+ when 'ecology'
2725
+ 'Ökologie'
2726
+ # ======================================================================= #
2727
+ # === physiologie
2728
+ # ======================================================================= #
2729
+ when 'physiologie',
2730
+ /^physiology(_|-| |,)?and(_|-| |,)?histology$/i
2731
+ 'Physiology and Histology'
2732
+ # ======================================================================= #
2733
+ # === vektoren
2734
+ # ======================================================================= #
2735
+ when 'vektoren',
2736
+ /^vectors(_|-| |,)?and(_|-| |,)?gene(_|-| |,)?therapy$/i
2737
+ 'Vektoren in der Gentechnologie'
2738
+ when 'ageing'
2739
+ 'Aging'
2740
+ when 'bioprozesstechnik'
2741
+ 'Bioprozesstechnik'
2742
+ when 'technische_mikrobiologie'
2743
+ 'TU Wien Microbiology'
2744
+ when 'cellbiology'
2745
+ 'Cellbiology'
2746
+ when 'physikalische_chemie'
2747
+ 'Physikalische Chemie'
2748
+ when 'analytische_chemie_2'
2749
+ 'Analytische Chemie 2'
2750
+ when 'gentechnik',/gentechnik_?und_?praktische_?biochemie$/
2751
+ 'Gentechnik und praktische Biochemie'
2752
+ when 'festkörperchemie','festkÖrperchemie',
2753
+ 'geochemistry',
2754
+ 'festkörper'
2755
+ 'Festkörper Chemie und Geochemie'
2756
+ when 'geologie',
2757
+ 'geologie_und_mineralogie'
2758
+ 'Geologie und Mineralogie'
2759
+ when 'anorganische_chemie'
2760
+ 'Anorganische Chemie'
2761
+ when 'law','rechtsgrundlagen'
2762
+ 'Rechtsgrundlagen'
2763
+ when 'organische_chemie_2'
2764
+ 'Organische Chemie 2'
2765
+ when 'biologie_des_wasser','wasserkunde'
2766
+ 'Wasserkunde'
2767
+ when 'technische_chemie'
2768
+ 'Technische Chemie'
2769
+ when 'signal_transduction',
2770
+ /^signal(_|-| |,)?transduction(_|-| |,)?and(_|-| |,)?laser(_|-| |,)?systems$/i
2771
+ 'Signaltransduktion und Lasersysteme'
2772
+ when 'paleobiology'
2773
+ 'Paläobiologie'
2774
+ when 'medizinische_chemie',
2775
+ /^medizinische(_| )?chemie(_| )?und(_| )?pharmazie$/
2776
+ 'Medizinische Chemie und Pharmazie'
2777
+ when 'cancerbiology'
2778
+ 'Cancer'
2779
+ # ======================================================================= #
2780
+ # === cytogenetik
2781
+ # ======================================================================= #
2782
+ when 'cytogenetik',
2783
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromosome(_|-| |,)?biology$/i
2784
+ 'Cytogenetics and Chromosome Biology'
2785
+ # ======================================================================= #
2786
+ # === urea_cycle
2787
+ # ======================================================================= #
2788
+ when /^urea(_|-| |,)?cycle\??$/i
2789
+ 'The Urea Cycle'
2790
+ # ======================================================================= #
2791
+ # === erste_hilfe
2792
+ # ======================================================================= #
2793
+ when /^erste(_|-| |,)?hilfe\??$/i
2794
+ 'Erste Hilfe'
2795
+ # ======================================================================= #
2796
+ # === statistik
2797
+ # ======================================================================= #
2798
+ when 'statistik',
2799
+ /^qastatistik\??$/i
2800
+ 'Statistik'
2801
+ when 'basic_biochemistry'
2802
+ 'Basic Biochemistry'
2803
+ when 'advanced_biochemistry'
2804
+ 'Advanced Biochemistry'
2805
+ when 'fortgeschrittene_physik'
2806
+ 'Fortgeschrittene Physik'
2807
+ when 'advanced_biotechnology'
2808
+ 'Advanced Biotechnology'
2809
+ # ======================================================================= #
2810
+ # === bioanalytik
2811
+ # ======================================================================= #
2812
+ when 'bioanalytik',
2813
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensoren$/
2814
+ 'Bioanalytik und Biosensoren'
2815
+ # ======================================================================= #
2816
+ # === /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/
2817
+ # ======================================================================= #
2818
+ when 'genomics',
2819
+ /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/
2820
+ 'Genomik und Metagenomik'
2821
+ # ======================================================================= #
2822
+ # === netzwerke
2823
+ # ======================================================================= #
2824
+ when /^netzwerke\??$/i,
2825
+ /^-?-?computer(_|-| |,)?networks$/
2826
+ 'Computer networks'
2827
+ # ======================================================================= #
2828
+ # === clinical_microbiology
2829
+ # ======================================================================= #
2830
+ when /^clinical(_|-| |,)?microbiology$/
2831
+ 'Clinical Microbiology'
2832
+ # ======================================================================= #
2833
+ # === molekulare_medizin
2834
+ # ======================================================================= #
2835
+ when 'molekulare_medizin'
2836
+ 'Molekulare Medizin'
2837
+ # ======================================================================= #
2838
+ # === technisches_zeichnen
2839
+ # ======================================================================= #
2840
+ when /^technisches(_|-| |,)?zeichnen$/i
2841
+ 'Technisches Zeichnen'
2842
+ # ======================================================================= #
2843
+ # === evolution
2844
+ # ======================================================================= #
2845
+ when 'evolution',
2846
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionary(_|-| |,)?genetics$/i
2847
+ 'Evolution and Evolutionary Genetics'
2848
+ # ======================================================================= #
2849
+ # === rna_and_dna
2850
+ # ======================================================================= #
2851
+ when 'rna_and_dna'
2852
+ 'DNA und RNA'
2853
+ # ======================================================================= #
2854
+ # === research_topics_in_immunobiology
2855
+ # ======================================================================= #
2856
+ when 'research_topics_in_immunobiology'
2857
+ 'Research topics in Immunobiology'
2858
+ when 'prokaryote_genetics'
2859
+ 'Prokaryote Genetics'
2860
+ when 'fortgeschrittene_gentechnik'
2861
+ 'Fortgeschrittene Gentechnik'
2862
+ when 'fortgeschrittene_genetik'
2863
+ 'Fortgeschrittene Genetik'
2864
+ when 'pcr'
2865
+ 'PCR'
2866
+ when 'populationsgenetik'
2867
+ 'Populationsgenetik'
2868
+ # ======================================================================= #
2869
+ # === ecogenetics
2870
+ # ======================================================================= #
2871
+ when 'ecogenetics'
2872
+ 'Ökogenetik'
2873
+ # ======================================================================= #
2874
+ # === chemisches_labor
2875
+ # ======================================================================= #
2876
+ when /^chemisches(_|-| |,)?labor$/i
2877
+ 'Chemisches Labor'
2878
+ # ======================================================================= #
2879
+ # === theoretische_chemie
2880
+ # ======================================================================= #
2881
+ when 'theoretische_chemie'
2882
+ 'Theoretische Chemie'
2883
+ # ======================================================================= #
2884
+ # === plant_biotechnology
2885
+ # ======================================================================= #
2886
+ when 'plant_biotechnology'
2887
+ 'Plant Biotechnology'
2888
+ when 'advanced_virology'
2889
+ 'Advanced Virology'
2890
+ when 'microbial_ecology'
2891
+ 'Mikrobielle Ökologie'
2892
+ # === the_cellcycle
2893
+ when 'the_cellcycle',
2894
+ /^the(_|-| |,)?cell(_|-| |,)?cycle$/i
2895
+ 'The Cellcycle'
2896
+ when 'bioressourcenmanagement'
2897
+ 'Bioressourcenmanagement'
2898
+ when /^object(_|-| |,)?oriented(_|-| |,)?modeling$/i
2899
+ 'Objekt-orientiertes Modellieren'
2900
+ when 'technical_ecology'
2901
+ 'Technische Ökologie'
2902
+ when 'agrar_ecology'
2903
+ 'Agrarökologie'
2904
+ when 'veterinary_medicine'
2905
+ 'Veterinärmedizin'
2906
+ when 'advanced_chemistry'
2907
+ 'Advanced Chemistry'
2908
+ when 'landtechnik'
2909
+ 'Grundlagen der Landtechnik'
2910
+ when 'agrarmarkt'
2911
+ 'Agrarmärkte'
2912
+ when 'human_ecology'
2913
+ 'Humanökologie'
2914
+ when 'quality_management'
2915
+ 'Quality Management'
2916
+ # ======================================================================= #
2917
+ # === artificial_intelligence
2918
+ # ======================================================================= #
2919
+ when 'artificial_intelligence'
2920
+ 'Artificial Intelligence'
2921
+ when 'translational_control',
2922
+ /^translation_?ribosomes_?and_?translational_?control$/
2923
+ 'Translation, Ribosomes and Translational Control'
2924
+ when 'posttranslationale_modifikation_von_proteinen'
2925
+ 'Posttranslationale Modifikation von Proteinen'
2926
+ when 'stemcells'
2927
+ 'Stammzellen'
2928
+ # ======================================================================= #
2929
+ # === plant_breeding
2930
+ # ======================================================================= #
2931
+ when 'plant_breeding'
2932
+ 'Pflanzenzüchtung (Plant Breeding)'
2933
+ when 'aminoacids'
2934
+ 'Amino Acids'
2935
+ # ======================================================================= #
2936
+ # === enzymes
2937
+ # ======================================================================= #
2938
+ when 'enzymes',
2939
+ /^enzymes(_|-| |,)?and(_|-| |,)?cofactors$/i
2940
+ 'Enzymes and Cofactors'
2941
+ when 'advanced_microbiology'
2942
+ 'Advanced Microbiology'
2943
+ when 'antibodies',/^antibodies(_|-| |,)?and(_|-| |,)?antigens$/
2944
+ 'Antibodies and Antigens'
2945
+ when 'molecular_biology_of_plants',
2946
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the$/i
2947
+ 'Molecular Biology of the Plant'
2948
+ when 'lebensmitteltechnologie'
2949
+ 'Lebensmitteltechnologie'
2950
+ when 'universe','the_universe'
2951
+ 'The Universe'
2952
+ when 'advanced_cellbiology'
2953
+ 'Advanced Cell Biology'
2954
+ # === insulin
2955
+ when 'insulin',
2956
+ /^insulin(_|-| |,)?and(_|-| |,)?diabetes$/
2957
+ 'Insulin and Diabetes'
2958
+ # === rna_seq
2959
+ when 'rna_seq'
2960
+ 'RNA Seq'
2961
+ # === innate_immunity
2962
+ when 'innate_immunity'
2963
+ 'Innate Immunity'
2964
+ when 'genetische_krankheiten'
2965
+ 'Genetische Krankheiten'
2966
+ when 'systematische_zoologie'
2967
+ 'Systematische Zoologie'
2968
+ when /^betriebssysteme?$/
2969
+ 'Betriebssysteme'
2970
+ when 'the_c_programming_language'
2971
+ 'The C Programming Language'
2972
+ when 'fish'
2973
+ 'FISH - Fluorescence in-situ hybridization'
2974
+ when 'ruby_on_rails'
2975
+ 'Ruby on Rails'
2976
+ when 'viral_vectors'
2977
+ 'Virale Vektoren'
2978
+ when 'plant_development'
2979
+ 'Plant Development'
2980
+ when 'grassland_cultivation','grünlandwirtschaft'
2981
+ 'Grünlandbewirtschaftung (Grassland cultivation)'
2982
+ when 'ecological_agriculture'
2983
+ 'Ökologische Landwirtschaft (Ecological Agriculture)'
2984
+ when 'the_european_union'
2985
+ 'The European Union'
2986
+ when 'lipids'
2987
+ 'Lipide'
2988
+ when 'nucleotide_sequencing'
2989
+ 'Nucleotide Sequencing'
2990
+ when 'databases','datenbanken','database',
2991
+ /^databases(_|-| |,)?and(_|-| |,)?sql$/
2992
+ 'Databases and SQL'
2993
+ when 'biological_therapeutics'
2994
+ 'Biological Therapeutics'
2995
+ # ======================================================================= #
2996
+ # === alcohols
2997
+ # ======================================================================= #
2998
+ when 'alcohols','alkohole'
2999
+ 'Alkohole'
3000
+ # ======================================================================= #
3001
+ # === mikrobielle_physiologie
3002
+ # ======================================================================= #
3003
+ when 'mikrobielle_physiologie'
3004
+ 'Mikrobielle Physiologie'
3005
+ # ======================================================================= #
3006
+ # === technische_grundlagen_der_informatik
3007
+ # ======================================================================= #
3008
+ when /^technische(_|-| |,)?grundlagen(_|-| |,)?der(_|-| |,)?informatik$/i
3009
+ 'Technische Grundlagen der Informatik'
3010
+ # ======================================================================= #
3011
+ # === patent_law
3012
+ # ======================================================================= #
3013
+ when /^patent(_|-| |,)?law\??$/i
3014
+ 'Patent Law'
3015
+ # ======================================================================= #
3016
+ # === the_c_plus_plus_programming_language
3017
+ # ======================================================================= #
3018
+ when 'the_c_plus_plus_programming_language'
3019
+ 'The C++ programming language'
3020
+ # ======================================================================= #
3021
+ # === semisynthese_von_proteinen_und_nukleotiden
3022
+ # ======================================================================= #
3023
+ when 'semisynthese_von_proteinen_und_nukleotiden',
3024
+ 'semisynthese_von_proteinen'
3025
+ 'Semisynthese von Proteinen und Nukleotiden'
3026
+ # ======================================================================= #
3027
+ # === naturschutz
3028
+ # ======================================================================= #
3029
+ when 'naturschutz',
3030
+ /^nature(_|-| |,)?conservation(_|-| |,)?and(_|-| |,)?biodiversity(_|-| |,)?$/i
3031
+ 'Naturschutz und Biodiversität'
3032
+ # ======================================================================= #
3033
+ # === biochips
3034
+ # ======================================================================= #
3035
+ when 'biochips',
3036
+ /^biochips(_|-| |,)?and(_|-| |,)?microarray$/i
3037
+ 'Biochips and Microarray'
3038
+ # ======================================================================= #
3039
+ # === urbanism
3040
+ # ======================================================================= #
3041
+ when 'urbanism','urbanism_and_traffic'
3042
+ 'Urbanism and Traffic'
3043
+ # ======================================================================= #
3044
+ # === vaccines_and_vaccination
3045
+ # ======================================================================= #
3046
+ when 'vaccines_and_vaccination'
3047
+ 'Vaccines and Vaccination'
3048
+ # ======================================================================= #
3049
+ # === glycolysis
3050
+ # ======================================================================= #
3051
+ when 'glycolysis',
3052
+ /^glycolysis\??$/i
3053
+ 'Die Glykolyse'
3054
+ # ======================================================================= #
3055
+ # === gluconeogenesis
3056
+ # ======================================================================= #
3057
+ when 'gluconeogenesis',
3058
+ 'gluco',
3059
+ /^gluconeogenesis\??$/i
3060
+ 'Die Gluconeogenesis'
3061
+ # ======================================================================= #
3062
+ # === rnai
3063
+ # ======================================================================= #
3064
+ when /^RNAi$/i,/^RNAi(_|-| |,)?siRNA(_|-| |,)?and(_|-| |,)?miRNA$/i,
3065
+ /^miRNA$/i
3066
+ 'RNAi, siRNA and miRNA'
3067
+ # ======================================================================= #
3068
+ # === mikrobielle_lebensgemeinschaften
3069
+ # ======================================================================= #
3070
+ when /^mikrobielle(_|-| |,)?lebensgemeinschaften$/
3071
+ 'Mikrobielle Lebensgemeinschaften'
3072
+ # ======================================================================= #
3073
+ # === theoretische_informatik
3074
+ # ======================================================================= #
3075
+ when /^theoretische(_|-| |,)?informatik$/
3076
+ 'Theoretische Informatik'
3077
+ # ======================================================================= #
3078
+ # === javascript
3079
+ # ======================================================================= #
3080
+ when 'javascript'
3081
+ 'JavaScript'
3082
+ # ======================================================================= #
3083
+ # === system_biology
3084
+ # ======================================================================= #
3085
+ when 'system_biology',
3086
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthetic(_|-| |,)?biology$/
3087
+ 'System Biology and Synthetic Biology'
3088
+ # ======================================================================= #
3089
+ # === architecture
3090
+ # ======================================================================= #
3091
+ when 'architecture',
3092
+ 'architektur'
3093
+ 'Architektur'
3094
+ # ======================================================================= #
3095
+ # === dna_replication
3096
+ # ======================================================================= #
3097
+ when 'dna_replication'
3098
+ 'DNA Replication'
3099
+ # ======================================================================= #
3100
+ # === endospores_and_spores
3101
+ # ======================================================================= #
3102
+ when 'endospores_and_spores',
3103
+ /^endosporen(_|-| |,)?und(_|-| |,)?sporen$/i
3104
+ 'Endosporen und Sporen'
3105
+ # ======================================================================= #
3106
+ # === the_bacterial_cell_wall
3107
+ # ======================================================================= #
3108
+ when 'the_bacterial_cell_wall'
3109
+ 'The bacterial cell wall'
3110
+ # ======================================================================= #
3111
+ # === biofilms
3112
+ # ======================================================================= #
3113
+ when 'biofilms'
3114
+ 'Biofilme'
3115
+ # ======================================================================= #
3116
+ # === bacteriophages
3117
+ # ======================================================================= #
3118
+ when 'bacteriophages','phages'
3119
+ 'Bakteriophagen'
3120
+ # ======================================================================= #
3121
+ # === dna_mutation_and_dna_repair
3122
+ # ======================================================================= #
3123
+ when /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa?i?r?$/,
3124
+ 'dna_mutation_and_dna_repair',
3125
+ 'mutation'
3126
+ 'DNA Mutation and DNA repair'
3127
+ # ======================================================================= #
3128
+ # === the_interferon_system
3129
+ # ======================================================================= #
3130
+ when /^the(_|-| |,)?interferon(_|-| |,)?system$/i
3131
+ 'The Interferon system'
3132
+ # ======================================================================= #
3133
+ # === pharmazeutische_biotechnologie
3134
+ # ======================================================================= #
3135
+ when /^pharmazeutische(_|-| |,)?biotechnologie$/i,
3136
+ /^pharmaceutical(_|-| |,)?biotechnology$/i
3137
+ 'Pharmaceutical Biotechnology'
3138
+ # ======================================================================= #
3139
+ # === molekulare_infektionsbiologie
3140
+ # ======================================================================= #
3141
+ when /^molekulare(_|-| |,)?infektionsbiologie$/i,
3142
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?molecular(_|-| |,)?infection(_|-| |,)?biology$/i
3143
+ 'Parasitic Diseases and Molecular Infection Biology'
3144
+ # ======================================================================= #
3145
+ # === structural_bioinformatics
3146
+ # ======================================================================= #
3147
+ when /^structural(_|-| |,)?bioinformatics$/i
3148
+ 'Structural Bioinformatics'
3149
+ # ======================================================================= #
3150
+ # === computer_graphics
3151
+ # ======================================================================= #
3152
+ when /^computer(_|-| |,)?graphics$/i,
3153
+ /^computer(_|-| |,)?vision(_|-| |,)?and(_|-| |,)?computer(_|-| |,)?graphics$/i
3154
+ 'Computer Graphics'
3155
+ # ======================================================================= #
3156
+ # === food_microbiologiy
3157
+ # ======================================================================= #
3158
+ when /^food(_|-| |,)?microbiology$/i,
3159
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?food(_|-| |,)?biotechnology$/i
3160
+ 'Food Microbiology and Food Biotechnology'
3161
+ when 'chemische_technologie_anorganischer_stoffe'
3162
+ 'Chemische Technologie anorganischer Stoffe'
3163
+ # ======================================================================= #
3164
+ # === HTML
3165
+ # ======================================================================= #
3166
+ when 'html'
3167
+ 'HTML'
3168
+ # ======================================================================= #
3169
+ # === splicing_exons_and_introns
3170
+ # ======================================================================= #
3171
+ when /^splicing_exons_and_introns$/i
3172
+ 'Splicing, Exons and Introns'
3173
+ # ======================================================================= #
3174
+ # === cell_cultures
3175
+ # ======================================================================= #
3176
+ when /^cell(_|-| |,)?cultures$/i
3177
+ 'Cell cultures'
3178
+ # ======================================================================= #
3179
+ # === chemotaxis_and_motility_in_prokaryotes
3180
+ # ======================================================================= #
3181
+ when /^chemotaxis(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
3182
+ /^chemotaxie?s(_|-| |,)?quorum(_|-| |,)?sensing(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i
3183
+ 'Chemotaxis, Quorum sensing and motility in prokaryotes'
3184
+ # ======================================================================= #
3185
+ # === cellular_transport_and_protein_secretion
3186
+ # ======================================================================= #
3187
+ when /^cellular(_|-| |,)?transport/i,
3188
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?protein(_|-| |,)?secretion$/i
3189
+ 'Cellular transport and protein secretion'
3190
+ # ======================================================================= #
3191
+ # === elisa
3192
+ # ======================================================================= #
3193
+ when /^elisa$/i
3194
+ 'ELISA'
3195
+ # ======================================================================= #
3196
+ # === light_microscopy
3197
+ # ======================================================================= #
3198
+ when /^light(_|-| |,)?microscopy$/i
3199
+ 'Light Microscopy'
3200
+ # ======================================================================= #
3201
+ # === electron_microscopy
3202
+ # ======================================================================= #
3203
+ when /^electron(_|-| |,)?microscopy$/i
3204
+ 'Electron Microscopy'
3205
+ # ======================================================================= #
3206
+ # === mikroskopie
3207
+ # ======================================================================= #
3208
+ when 'mikroskope','mikroskopie',
3209
+ /^imaging(_|-| |,)?and(_|-| |,)?microscopy$/i
3210
+ 'Imaging and Microscopy'
3211
+ # ======================================================================= #
3212
+ # === scientific_writing
3213
+ # ======================================================================= #
3214
+ when /^scientific(_|-| |,)?writing$/i,
3215
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?publishing$/i
3216
+ 'Scientific writing and publishing'
3217
+ # ======================================================================= #
3218
+ # === peroxisomes
3219
+ # ======================================================================= #
3220
+ when /^peroxisomes$/i,
3221
+ /^peroxisomes(_|-| |,)?glycosomes(_|-| |,)?and(_|-| |,)?lysosomes\??$/i
3222
+ 'Peroxisomes, Glycosomes and Lysosomes'
3223
+ # ======================================================================= #
3224
+ # === the_microbiome
3225
+ # ======================================================================= #
3226
+ when /^the(_|-| |,)?microbiome$/i
3227
+ 'The Microbiome'
3228
+ # ======================================================================= #
3229
+ # === elektrotechnik
3230
+ # ======================================================================= #
3231
+ when /^elektrotechnik$/i,
3232
+ /^elektrotechnik(_|-| |,)?und(_|-| |,)?elektrizität$/i
3233
+ 'Elektrotechnik und Elektrizität'
3234
+ # ======================================================================= #
3235
+ # === cytokines
3236
+ # ======================================================================= #
3237
+ when /^cytokines$/i,
3238
+ /^chemokines(_|-| |,)?and(_|-| |,)?cytokines$/i
3239
+ 'Chemokines and Cytokines'
3240
+ # ======================================================================= #
3241
+ # === advanced_immunology
3242
+ # ======================================================================= #
3243
+ when /^advanced(_|-| |,)?immunology\??$/i
3244
+ 'Advanced Immunology'
3245
+ # ======================================================================= #
3246
+ # === archaeo-viruses
3247
+ # ======================================================================= #
3248
+ when /^archaeo(_|-| |,)?viruses\??$/i
3249
+ 'Viruses of Archaea'
3250
+ # ======================================================================= #
3251
+ # === fluorescence_microscopy
3252
+ # ======================================================================= #
3253
+ when /^fluorescence(_|-| |,)?microscopy\??$/i
3254
+ 'Fluorescence Microscopy'
3255
+ # ======================================================================= #
3256
+ # === citric_acid_cycle
3257
+ # ======================================================================= #
3258
+ when /^citric(_|-| |,)?acid(_|-| |,)?cycle$/i
3259
+ 'Citric Acid Cycle'
3260
+ # ======================================================================= #
3261
+ # === mess_und_regeltechnik
3262
+ # ======================================================================= #
3263
+ when /^messtechnik(_|-| |,)?und(_|-| |,)?regeltechnik$/i
3264
+ 'Messtechnik und Regeltechnik'
3265
+ # ======================================================================= #
3266
+ # === cellular_vesicles
3267
+ # ======================================================================= #
3268
+ when /^cellular(_|-| |,)?vesicles$/i
3269
+ 'Cellular Vesicles'
3270
+ # ======================================================================= #
3271
+ # === lebensmittel_und_getränke
3272
+ # ======================================================================= #
3273
+ when /^lebensmittel(_|-| |,)?und(_|-| |,)?getränke$/i,
3274
+ /^lebensmittel$/i
3275
+ 'Lebensmittel und Getränke'
3276
+ # ======================================================================= #
3277
+ # === abfall
3278
+ # ======================================================================= #
3279
+ when 'abfall',
3280
+ 'abfall_als_ressource'
3281
+ 'Abfall als Ressource'
3282
+ # ======================================================================= #
3283
+ # === linux_and_unix
3284
+ # ======================================================================= #
3285
+ when /^linux(_|-| |,)?and(_|-| |,)?unix\??$/i
3286
+ 'Linux and Unix'
3287
+ # ======================================================================= #
3288
+ # === python (and more)
3289
+ # ======================================================================= #
3290
+ when 'python','archaea','cyanobacteria','naturstoffe',
3291
+ 'biopolymers',
3292
+ 'bionik',
3293
+ 'vitamine',
3294
+ 'biomembranes',
3295
+ /^transcription$/,
3296
+ 'pflanzenanatomie',
3297
+ 'toxikologie',
3298
+ 'forensik',
3299
+ 'tierzucht',
3300
+ 'biomarkers',
3301
+ 'forstwirtschaft',
3302
+ 'java', # === java
3303
+ 'strukturbiologie',
3304
+ 'geschichte',
3305
+ 'wissenschaft',
3306
+ /^geography$/i,
3307
+ /^geographie$/i,
3308
+ 'informatik',
3309
+ /^excel$/i,
3310
+ 'sexualbiologie',
3311
+ 'betriebswirtschaftslehre',
3312
+ 'klima',
3313
+ 'macroeconomics',
3314
+ 'biomaterials',
3315
+ 'elektronenmikroskopie',
3316
+ 'allergie',
3317
+ 'prozesstechnik',
3318
+ 'glykomik',
3319
+ 'glyoxylatzyklus',
3320
+ 'weinbau',
3321
+ 'fungi',
3322
+ 'crispr',
3323
+ 'yeast',
3324
+ 'ruby',
3325
+ 'ethik',
3326
+ 'physik',
3327
+ 'anatomie',
3328
+ 'obstbau',
3329
+ 'hormone',
3330
+ 'nanotechnologie',
3331
+ 'management',
3332
+ 'bauwesen',
3333
+ 'economy',
3334
+ 'nutztierethologie',
3335
+ 'genexpression',
3336
+ 'apoptosis',
3337
+ 'immunologie',
3338
+ 'biophysik',
3339
+ 'pflanzenbau',
3340
+ 'elektrophorese',
3341
+ 'insekten',
3342
+ /^chemische(_|-| |,)?technologie(_|-| |,)?organischer(_|-| |,)?stoffe$/i,
3343
+ 'hygiene',
3344
+ 'cellulose',
3345
+ 'immunanalytik',
3346
+ 'immunoassay',
3347
+ 'microcontrollers',
3348
+ 'mitochondria',
3349
+ 'pflanzenschutz',
3350
+ /^projektmanagement$/i,
3351
+ 'mathematics',
3352
+ 'algorithms',
3353
+ 'psychologie',
3354
+ 'stickstofffixierung',
3355
+ 'epigenetik',
3356
+ 'pentosephosphatweg',
3357
+ 'bioelektrochemie',
3358
+ 'glycogen',
3359
+ 'proteolyse',
3360
+ 'proteomik',
3361
+ 'metabolismus',
3362
+ 'geometrie',
3363
+ 'audio',
3364
+ 'umweltbiotechnologie',
3365
+ 'parasitologie',
3366
+ 'bodenkunde',
3367
+ 'atomemissionsspektrometrie',
3368
+ 'bioinformatics',
3369
+ 'kryptographie',
3370
+ 'phytochemie',
3371
+ 'bodenmikrobiologie',
3372
+ 'pathologie',
3373
+ 'thermodynamics',
3374
+ 'verfahrenstechnik',
3375
+ 'anthropologie',
3376
+ 'marketing',
3377
+ 'biologie',
3378
+ 'birds',
3379
+ 'mixed',
3380
+ 'verhaltensbiologie',
3381
+ 'protozoans',
3382
+ 'agrarphysik',
3383
+ 'robotics',
3384
+ 'sozialbiologie',
3385
+ 'umweltchemie'
3386
+ i.capitalize
3387
+ end
3388
+ return i
3389
+ end; self.instance_eval { alias expand find_corresponding_exam_title } # === Studium.expand
3390
+ self.instance_eval { alias beautify_this_topic find_corresponding_exam_title } # === Studium.beautify_this_topic
3391
+ self.instance_eval { alias beautiful_topic find_corresponding_exam_title } # === Studium.beautiful_topic
3392
+ self.instance_eval { alias beautiful_topic find_corresponding_exam_title } # === Studium.beautiful_topic
3393
+ self.instance_eval { alias pretty_topic_name find_corresponding_exam_title } # === Studium.pretty_topic_name
3394
+
3395
+ # ========================================================================= #
3396
+ # === Studium.map_meta_exam_theme_to_corresponding_exam_themes
3397
+ #
3398
+ # The input to this method should be a String such as "meta_biochem" -
3399
+ # although if you know the direct name then you can omit the leading
3400
+ # "meta_" part; so, "biochemistry" is treated by this method exactly
3401
+ # like "meta_biochemistry" .
3402
+ #
3403
+ # This given input will then be split up into e. g. "aa", "bem1", "bem2"
3404
+ # and so forth, which correspond to exam topics such as "aminoacids",
3405
+ # "biochemistry1", "biochemistry" and so forth.
3406
+ #
3407
+ # Since as of 03.07.2020 this method depends on the yaml file
3408
+ # called grouped_themes.yml. Since as of 31.05.2023 the older
3409
+ # directory "meta_themes/" was fully integrated into this method,
3410
+ # and the directory "meta_themes/" was deleted.
3411
+ #
3412
+ # On my home system the file grouped_exams can be found here:
3413
+ #
3414
+ # bl $RUBY_STUDIUM/yaml/grouped_themes/grouped_themes.yml
3415
+ #
3416
+ # Usage examples of this method:
3417
+ #
3418
+ # Studium.map_meta_exam_theme_to_corresponding_exam_themes(:biotechnology)
3419
+ #
3420
+ # This would yield the following Array (last determined in May 2023):
3421
+ #
3422
+ # ["basic_biotechnology",
3423
+ # "advanced_biotechnology",
3424
+ # "gentechnik_und_praktische_biochemie",
3425
+ # "fortgeschrittene_gentechnik",
3426
+ # "nanotechnologie",
3427
+ # "plant_biotechnology",
3428
+ # "umweltbiotechnologie",
3429
+ # "nucleotide_sequencing",
3430
+ # "pharmaceutical_biotechnology",
3431
+ # "bioprozesstechnik"]
3432
+ #
3433
+ # :random also works as input as of May 2023. Usage example for this:
3434
+ #
3435
+ # Studium.map_meta_exam_theme_to_corresponding_exam_themes(:random)
3436
+ #
3437
+ # ========================================================================= #
3438
+ def self.map_meta_exam_theme_to_corresponding_exam_themes(
3439
+ i,
3440
+ dataset = nil
3441
+ )
3442
+ if dataset.nil?
3443
+ dataset = YAML.load_file(Studium.file_grouped_themes)
3444
+ end
3445
+ i = i.to_s if i.is_a? Symbol
3446
+ return_this = i.dup
3447
+ case return_this # case tag
3448
+ # ======================================================================= #
3449
+ # === n_exams_in_this_topic random
3450
+ # ======================================================================= #
3451
+ when /^random/
3452
+ random_exam_topic = Studium.random_exam_meta_topic?
3453
+ return_this = dataset[random_exam_topic]
3454
+ # ======================================================================= #
3455
+ # === n_exams_in_this_topic meta_upcoming_exams
3456
+ #
3457
+ # Invocation example:
3458
+ #
3459
+ # meta_upcoming_exams
3460
+ # metaupcomingexams
3461
+ #
3462
+ # ======================================================================= #
3463
+ when /meta(_|-| |,)?upcoming(_|-| |,)?_exams/,
3464
+ /meta(_|-| |,)?upcoming$/i,
3465
+ /^upcoming(_|-| |,)?exams$/i
3466
+ return_this = dataset['upcoming_exams']
3467
+ # ======================================================================= #
3468
+ # === n_exams_in_this_topic meta_cellbiology
3469
+ #
3470
+ # Everything related to cell biology is stored here.
3471
+ # ======================================================================= #
3472
+ when /meta(_|-| |,)?cellbiology/, # ← metacellbio
3473
+ /^cellbiology$/,
3474
+ /^cellbio$/
3475
+ return_this = dataset['cellbiology']
3476
+ # ======================================================================= #
3477
+ # === n_exams_in_this_topic meta_bioinformatics
3478
+ #
3479
+ # Everything related to bioinformatics is stored here.
3480
+ # ======================================================================= #
3481
+ when /^meta(_|-| |,)?bioinformatics$/i,
3482
+ /^bioinformatics$/i
3483
+ return_this = dataset['bioinformatics']
3484
+ # ======================================================================= #
3485
+ # === n_exams_in_this_topic statistics
3486
+ # ======================================================================= #
3487
+ when /meta(_|-| |,)?statistics$/i,
3488
+ /^statistics$/
3489
+ return_this = dataset['statistics']
3490
+ # ======================================================================= #
3491
+ # === n_exams_in_this_topic metabolic_pathways
3492
+ # ======================================================================= #
3493
+ when /meta(_|-| |,)?metabolic(_|-| |,)?pathways/,
3494
+ /^metabolic(_|-| |,)?pathways/
3495
+ return_this = dataset['metabolic_pathways']
3496
+ # ======================================================================= #
3497
+ # === n_exams_in_this_topic meta_biotechnology
3498
+ #
3499
+ # Everything related to biotechnology.
3500
+ # ======================================================================= #
3501
+ when /^meta(_|-| |,)?biotechnology$/, # ← metabiotechnology
3502
+ /^meta(_|-| |,)?biotech$/,
3503
+ /^biotechnology$/
3504
+ return_this = dataset['biotechnology']
3505
+ # ======================================================================= #
3506
+ # === n_exams_in_this_topic meta_immunology
3507
+ #
3508
+ # Everything related to Immunology.
3509
+ # ======================================================================= #
3510
+ when /meta(_|-| |,)?immunology$/,
3511
+ /meta(_|-| |,)?immuno$/,
3512
+ /meta(_|-| |,)?imm$/,
3513
+ /meta7/,
3514
+ /^immunology$/
3515
+ return_this = dataset['immunology']
3516
+ # ======================================================================= #
3517
+ # === n_exams_in_this_topic meta_vectors
3518
+ #
3519
+ # Topics that may belong to the "metatopic" virology.
3520
+ #
3521
+ # Invocation example:
3522
+ #
3523
+ # n_exams_in_this_topic meta_virology
3524
+ #
3525
+ # ======================================================================= #
3526
+ when /meta(_|-| |,)?virology$/,
3527
+ /meta(_|-| |,)?virologie$/,
3528
+ /meta(_|-| |,)?vectors$/,
3529
+ /^virology$/
3530
+ return_this = dataset['virology']
3531
+ # ======================================================================= #
3532
+ # === n_exams_in_this_topic meta_chemistry
3533
+ #
3534
+ # Everything related to chemistry is stored here.
3535
+ # ======================================================================= #
3536
+ when /^meta(_|-| |,)?chemistry/, # ← metachem
3537
+ /^meta(_|-| |,)?chem$/,
3538
+ /^chemistry$/,
3539
+ /^meta6/
3540
+ return_this = dataset['chemistry']
3541
+ # ======================================================================= #
3542
+ # === n_exams_in_this_topic meta_biochem
3543
+ #
3544
+ # All topics related to biochemistry are gathered here.
3545
+ # ======================================================================= #
3546
+ when /^-?-?meta(_|-| |,)?biochemistry$/i,
3547
+ /^-?-?meta(_|-| |,)?biochem$/i,
3548
+ /^-?-?meta(_|-| |,)?biochemistry2/,
3549
+ /^-?-?meta(_|-| |,)?biochem2/,
3550
+ /^-?-?meta(_|-| |,)?advanced(_|-| |,)?biochemistry/,
3551
+ /^biochemistry$/,
3552
+ /^-?-?meta1$/i
3553
+ return_this = dataset['biochemistry']
3554
+ # ======================================================================= #
3555
+ # === n_exams_in_this_topic meta_chemistry
3556
+ #
3557
+ # Everything related to informatics/programming is stored here.
3558
+ # ======================================================================= #
3559
+ when /^meta(_|-| |,)?informatics?$/i, # ← metainformatics
3560
+ /^meta(_|-| |,)?programming$/,
3561
+ /^programming$/
3562
+ return_this = dataset['programming']
3563
+ # ======================================================================= #
3564
+ # === n_exams_in_this_topic meta_gentechnik
3565
+ # ======================================================================= #
3566
+ when /meta(_|-| |,)?gentechnik$/i,
3567
+ /meta(_|-| |,)?gentech$/i,
3568
+ /^genetechnology$/
3569
+ return_this = dataset['genetechnology']
3570
+ # ======================================================================= #
3571
+ # === n_exams_in_this_topic meta_genetics
3572
+ #
3573
+ # Everything related to genes is stored here.
3574
+ # ======================================================================= #
3575
+ when /^meta(_|-| |,)?genetics/, # ← metagen
3576
+ /^genetics$/
3577
+ return_this = dataset['genetics']
3578
+ # ======================================================================= #
3579
+ # === n_exams_in_this_topic meta_microbiology
3580
+ #
3581
+ # Everything related to microbiology is stored here.
3582
+ # ======================================================================= #
3583
+ when /^meta(_|-| |,)?microbiology$/i,
3584
+ /^meta(_|-| |,)?mikrobiologie$/i,
3585
+ /^meta(_|-| |,)?micro$/i,
3586
+ /^microbiology$/i
3587
+ return_this = dataset['microbiology']
3588
+ # ======================================================================= #
3589
+ # === n_exams_in_this_topic meta_molecular_biology
3590
+ #
3591
+ # Everything related to molecular biology is stored here.
3592
+ # ======================================================================= #
3593
+ when /^meta(_|-| |,)?molecular(_|-| |,)?biology$/i,
3594
+ /^molecular(_|-| |,)?biology$/i
3595
+ return_this = dataset['molecular_biology']
3596
+ # ======================================================================= #
3597
+ # === n_exams_in_this_topic protein_engineering
3598
+ # ======================================================================= #
3599
+ when /^meta(_|-| |,)?protein(_|-| |,)?engineering$/i,
3600
+ /^protein(_|-| |,)?engineering$/i
3601
+ return_this = dataset['microbiology']
3602
+ # ======================================================================= #
3603
+ # === n_exams_in_this_topic meta_zoology
3604
+ # ======================================================================= #
3605
+ when /meta(_|-| |,)?zoology/,
3606
+ /^zoology$/
3607
+ return_this = dataset['zoology']
3608
+ # ======================================================================= #
3609
+ # === n_exams_in_this_topic meta_plants
3610
+ # ======================================================================= #
3611
+ when /meta(_|-| |,)?plants/,
3612
+ /meta5/,
3613
+ /^plants$/
3614
+ return_this = dataset['plants']
3615
+ else
3616
+ if dataset.has_key?(i)
3617
+ return_this = dataset[i]
3618
+ end
3619
+ end
3620
+ if return_this.is_a? Array
3621
+ return_this = return_this.map {|inner_line|
3622
+ find_corresponding_exam_topic(inner_line)
3623
+ }
3624
+ else
3625
+ find_corresponding_exam_topic(return_this)
3626
+ end
3627
+ return return_this
3628
+ end
3629
+
3630
+ # ========================================================================= #
3631
+ # === Studium.obtain_random_topic
3632
+ #
3633
+ # This may be used like so:
3634
+ #
3635
+ # Studium.obtain_random_topic # => "rna_and_dna"
3636
+ #
3637
+ # ========================================================================= #
3638
+ def self.obtain_random_topic
3639
+ Studium.find_corresponding_exam_topic(:random)
3640
+ end
3641
+
3642
+ # ========================================================================= #
3643
+ # === Studium.is_this_exam_topic_registered?(this_topic)
3644
+ #
3645
+ # This method can be used to find out whether the given input is
3646
+ # a registered exam topic or not.
3647
+ #
3648
+ # Usage example:
3649
+ #
3650
+ # Studium.is_this_exam_topic_registered?('rbroken')
3651
+ #
3652
+ # ========================================================================= #
3653
+ def self.is_this_exam_topic_registered?(this_topic)
3654
+ Studium.find_corresponding_exam_topic(this_topic, :be_quiet)
3655
+ end
3656
+
3657
+ # ========================================================================= #
3658
+ # === Studium.is_this_an_exam_topic?
3659
+ #
3660
+ # This method will determine whether the given input to this method
3661
+ # is a valid exam topic or whether it is not.
3662
+ #
3663
+ # Usage examples:
3664
+ #
3665
+ # Studium.is_this_an_exam_topic?('rbroken') # => false
3666
+ # Studium.is_this_an_exam_topic?('amg1') # => true
3667
+ # Studium.is_this_an_exam_topic?('amg11') # => false
3668
+ #
3669
+ # ========================================================================= #
3670
+ def self.is_this_an_exam_topic?(i = :amg)
3671
+ expanded = find_corresponding_exam_topic(i, :be_quiet)
3672
+ return true if expanded
3673
+ return false
3674
+ end; self.instance_eval { alias is_this_exam_topic_available? is_this_an_exam_topic? } # === is_this_exam_topic_available?
3675
+
3676
+ # ========================================================================= #
3677
+ # === Studium.return_location_to_this_exam_topic
3678
+ #
3679
+ # This method can be used to return the location to an exam topic.
3680
+ # ========================================================================= #
3681
+ def self.return_location_to_this_exam_topic(i)
3682
+ i = i.first if i.is_a? Array
3683
+ i = ::Studium.find_corresponding_exam_topic(i.to_s)
3684
+ return "#{::Studium.directory_to_the_exam_topics?}#{i}"
3685
+ end; self.instance_eval { alias return_location_to_this_exam return_location_to_this_exam_topic } # === Studium.return_location_to_this_exam_topic
3686
+
3687
+ # ========================================================================= #
3688
+ # === Studium.sanitize_this_theme_topic
3689
+ #
3690
+ # This method will take input such as 'math' and sanitize it towards
3691
+ # the longer (and correct) name called 'mathematics'.
3692
+ # ========================================================================= #
3693
+ def self.sanitize_this_theme_topic(topic)
3694
+ case topic # Add some aliases (case tag, aliases tag, alias tag)
3695
+ # ======================================================================= #
3696
+ # === theoretische_informatik
3697
+ # ======================================================================= #
3698
+ when 'theoretische_informatik'
3699
+ topic = 'theoretical informatics'
3700
+ # ======================================================================= #
3701
+ # === mathematik
3702
+ # ======================================================================= #
3703
+ when 'mathematik',
3704
+ 'mathematic',
3705
+ 'maths',
3706
+ 'math'
3707
+ topic = 'mathematics'
3708
+ # ======================================================================= #
3709
+ # === plants
3710
+ # ======================================================================= #
3711
+ when 'plants'
3712
+ topic = 'plant sciences'
3713
+ # ======================================================================= #
3714
+ # === bioprocess
3715
+ # ======================================================================= #
3716
+ when 'bioprocess',
3717
+ 'bioprozess'
3718
+ topic = 'bioprocess technology'
3719
+ # ======================================================================= #
3720
+ # === biochemie
3721
+ # ======================================================================= #
3722
+ when 'biochemie','biochem'
3723
+ topic = 'biochemistry'
3724
+ # ======================================================================= #
3725
+ # === chemie
3726
+ # ======================================================================= #
3727
+ when 'chemie',
3728
+ 'chem'
3729
+ topic = 'chemistry'
3730
+ # ======================================================================= #
3731
+ # === patho
3732
+ # ======================================================================= #
3733
+ when 'patho',
3734
+ 'pathologie'
3735
+ topic = 'pathology'
3736
+ # ======================================================================= #
3737
+ # === organic_chemistry
3738
+ # ======================================================================= #
3739
+ when 'organic_chemistry'
3740
+ topic = 'organic chemistry'
3741
+ # ======================================================================= #
3742
+ # === mikrobiologie
3743
+ # ======================================================================= #
3744
+ when 'mikrobiologie'
3745
+ topic = 'microbiology'
3746
+ # ======================================================================= #
3747
+ # === biotech
3748
+ # ======================================================================= #
3749
+ when 'biotech'
3750
+ topic = 'biotechnology'
3751
+ # ======================================================================= #
3752
+ # === immuno
3753
+ # ======================================================================= #
3754
+ when 'immuno',
3755
+ 'imuno',
3756
+ 'immunologie'
3757
+ topic = 'immunology'
3758
+ # ======================================================================= #
3759
+ # === diseases
3760
+ # ======================================================================= #
3761
+ when 'diseases'
3762
+ topic = 'disease'
3763
+ # ======================================================================= #
3764
+ # === genetik
3765
+ # ======================================================================= #
3766
+ when 'genetik'
3767
+ topic = 'genetics'
3768
+ # ======================================================================= #
3769
+ # === bioinformatik
3770
+ # ======================================================================= #
3771
+ when 'bioinformatik',
3772
+ 'bioinfo'
3773
+ topic = 'bioinformatics'
3774
+ # ======================================================================= #
3775
+ # === botany
3776
+ # ======================================================================= #
3777
+ when 'botany',
3778
+ 'pflants',
3779
+ 'pflanzen'
3780
+ topic = 'plants'
3781
+ # ======================================================================= #
3782
+ # === cellbio
3783
+ # ======================================================================= #
3784
+ when 'cellbio',
3785
+ 'cell'
3786
+ topic = 'cellbiology'
3787
+ # ======================================================================= #
3788
+ # === virus
3789
+ # ======================================================================= #
3790
+ when 'virus',
3791
+ 'viruses'
3792
+ topic = 'virology'
3793
+ end
3794
+ return topic
3795
+ end
3796
+
3797
+ end
3798
+
3799
+ if __FILE__ == $PROGRAM_NAME
3800
+ alias e puts
3801
+ p Studium.find_corresponding_exam_topic 1
3802
+ p Studium.find_corresponding_exam_topic :rand
3803
+ p Studium.find_corresponding_exam_title 'am'
3804
+ p Studium.find_corresponding_exam_title 'hor'
3805
+ pp Studium.map_meta_exam_theme_to_corresponding_exam_themes('meta_biochem')
3806
+ e Studium.sanitize_this_theme_topic('math') # ← Just for testing.
3807
+ end # findcorrespondingexamtopic amg