studium 0.18.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (821) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3310 -0
  3. data/bin/all_passed_exams +14 -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/d150 +7 -0
  11. data/bin/d20 +7 -0
  12. data/bin/d25 +7 -0
  13. data/bin/d3 +7 -0
  14. data/bin/d30 +7 -0
  15. data/bin/d5 +7 -0
  16. data/bin/determine_curricula +7 -0
  17. data/bin/display_lecture_url +7 -0
  18. data/bin/exam_registration_at +7 -0
  19. data/bin/exam_statistics +7 -0
  20. data/bin/exams_per_month +9 -0
  21. data/bin/finished_exams_at_this_university +7 -0
  22. data/bin/flashcards +7 -0
  23. data/bin/from_curriculum_id_to_university +9 -0
  24. data/bin/location_to_this_exam_topic.rb +7 -0
  25. data/bin/mandatory_continuous_assessment +7 -0
  26. data/bin/mandatory_upcoming_courses +10 -0
  27. data/bin/n_ECTS +7 -0
  28. data/bin/n_exam_questions_already_answered +15 -0
  29. data/bin/names_of_all_solved_exams +7 -0
  30. data/bin/not_completed_exams +7 -0
  31. data/bin/nquestions +7 -0
  32. data/bin/nsolved +7 -0
  33. data/bin/open_last_exam_question_asked_file +7 -0
  34. data/bin/passed_exams +7 -0
  35. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  36. data/bin/passed_this_exam_on +10 -0
  37. data/bin/pdf_for +7 -0
  38. data/bin/question_answer +7 -0
  39. data/bin/random_exam_topic +7 -0
  40. data/bin/registered_for_this_exam +15 -0
  41. data/bin/report_solved_topics +7 -0
  42. data/bin/return_n_ects_from_this_file +7 -0
  43. data/bin/return_n_questions_solved_in_total +7 -0
  44. data/bin/rti_conflict +7 -0
  45. data/bin/search_for_n_ects +7 -0
  46. data/bin/show_lectures_on_the_commandline +7 -0
  47. data/bin/show_passed_exams_having_this_grade +7 -0
  48. data/bin/show_themes +7 -0
  49. data/bin/solved +9 -0
  50. data/bin/solved_ects +7 -0
  51. data/bin/studienkennzahl +7 -0
  52. data/bin/studium +7 -0
  53. data/bin/studium_actions +7 -0
  54. data/bin/studium_skeleton +7 -0
  55. data/bin/ufind +7 -0
  56. data/bin/upcoming_exams +7 -0
  57. data/bin/week_parser +7 -0
  58. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +85 -0
  59. 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
  60. data/doc/README.gen +3263 -0
  61. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  62. data/doc/deprecated_components/deprecated_components.md +46 -0
  63. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  64. data/doc/elegant_colours/elegant_colours.md +21 -0
  65. data/doc/statistics/yearly_statistics.md +8 -0
  66. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  67. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  68. data/img/STUDIES.png +0 -0
  69. data/lib/studium/actions/actions.rb +134 -0
  70. data/lib/studium/autoinclude.rb +7 -0
  71. data/lib/studium/base/base.rb +3554 -0
  72. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  73. data/lib/studium/base/html_colours_module.rb +632 -0
  74. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  75. data/lib/studium/c/README.md +2 -0
  76. data/lib/studium/c/a.out +0 -0
  77. data/lib/studium/c/obtain_random_entry.c +11 -0
  78. data/lib/studium/check_and_sanitize/README.md +15 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  81. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  82. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  83. data/lib/studium/check_and_sanitize/check_important_exams.rb +138 -0
  84. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  85. data/lib/studium/check_and_sanitize/correct_all_dates_in_the_file_lecture_information.rb +115 -0
  86. data/lib/studium/check_and_sanitize/date_sanitizer.rb +350 -0
  87. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  88. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  89. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +434 -0
  90. data/lib/studium/colours/colours.rb +1711 -0
  91. data/lib/studium/commandline/commandline.rb +1848 -0
  92. data/lib/studium/constants/constants.rb +2063 -0
  93. data/lib/studium/css/project.css +273 -0
  94. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  95. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  96. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  97. data/lib/studium/curricula/curriculum.rb +213 -0
  98. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  100. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  101. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  102. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  103. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  104. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  107. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  108. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  109. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  110. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  111. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  112. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  113. data/lib/studium/curricula/determine_curricula/report.rb +141 -0
  114. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  115. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  116. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  117. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  118. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  119. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +99 -0
  120. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  121. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  122. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  123. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  124. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +73 -0
  125. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  126. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  127. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  128. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  129. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  130. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  131. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  132. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  133. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  134. data/lib/studium/ects/ects_scanner.rb +141 -0
  135. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  136. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  137. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  138. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +47 -0
  139. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  140. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  141. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  142. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +245 -0
  143. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  144. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  145. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  146. data/lib/studium/ects/solved_ects/reset.rb +50 -0
  147. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  148. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  149. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +116 -0
  150. data/lib/studium/ects/still_missing.rb +129 -0
  151. data/lib/studium/ects/sum_of_ects.rb +144 -0
  152. data/lib/studium/encoding/encoding.rb +109 -0
  153. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  154. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  155. data/lib/studium/exam_topics/advanced_biochemistry +937 -0
  156. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  157. data/lib/studium/exam_topics/advanced_cellbiology +251 -0
  158. data/lib/studium/exam_topics/advanced_chemistry +547 -0
  159. data/lib/studium/exam_topics/advanced_immunology +225 -0
  160. data/lib/studium/exam_topics/advanced_microbiology +49 -0
  161. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +117 -0
  162. data/lib/studium/exam_topics/advanced_virology +273 -0
  163. data/lib/studium/exam_topics/ageing +154 -0
  164. data/lib/studium/exam_topics/agrar_ecology +67 -0
  165. data/lib/studium/exam_topics/agrarmarkt +73 -0
  166. data/lib/studium/exam_topics/agrarphysik +35 -0
  167. data/lib/studium/exam_topics/alcohols +30 -0
  168. data/lib/studium/exam_topics/algorithms +104 -0
  169. data/lib/studium/exam_topics/allergie +76 -0
  170. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  171. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1012 -0
  172. data/lib/studium/exam_topics/aminoacids +469 -0
  173. data/lib/studium/exam_topics/analytische_chemie_1 +134 -0
  174. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  175. data/lib/studium/exam_topics/anatomie +378 -0
  176. data/lib/studium/exam_topics/anorganische_chemie +357 -0
  177. data/lib/studium/exam_topics/anthropologie +239 -0
  178. data/lib/studium/exam_topics/antibodies_and_antigens +790 -0
  179. data/lib/studium/exam_topics/apoptosis +35 -0
  180. data/lib/studium/exam_topics/archaea +112 -0
  181. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  182. data/lib/studium/exam_topics/archaeology +5 -0
  183. data/lib/studium/exam_topics/architecture +8 -0
  184. data/lib/studium/exam_topics/artificial_intelligence +90 -0
  185. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  186. data/lib/studium/exam_topics/audio +11 -0
  187. data/lib/studium/exam_topics/bacteriophages +266 -0
  188. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  189. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  190. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  191. data/lib/studium/exam_topics/basic_virology +1008 -0
  192. data/lib/studium/exam_topics/bauwesen +6 -0
  193. data/lib/studium/exam_topics/betriebssysteme +128 -0
  194. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  195. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +451 -0
  196. data/lib/studium/exam_topics/biochips +80 -0
  197. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  198. data/lib/studium/exam_topics/biofilms +58 -0
  199. data/lib/studium/exam_topics/bioinformatics +523 -0
  200. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  201. data/lib/studium/exam_topics/biologie +152 -0
  202. data/lib/studium/exam_topics/biomarkers +137 -0
  203. data/lib/studium/exam_topics/biomaterials +90 -0
  204. data/lib/studium/exam_topics/biomedical_studies +16 -0
  205. data/lib/studium/exam_topics/biomembranes +6 -0
  206. data/lib/studium/exam_topics/bionik +65 -0
  207. data/lib/studium/exam_topics/biophysik +34 -0
  208. data/lib/studium/exam_topics/biopolymers +10 -0
  209. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  210. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  211. data/lib/studium/exam_topics/birds +5 -0
  212. data/lib/studium/exam_topics/bodenkunde +384 -0
  213. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  214. data/lib/studium/exam_topics/cancerbiology +488 -0
  215. data/lib/studium/exam_topics/cell_cultures +229 -0
  216. data/lib/studium/exam_topics/cellbiology +1011 -0
  217. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  218. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  219. data/lib/studium/exam_topics/cellulose +6 -0
  220. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +210 -0
  221. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  222. data/lib/studium/exam_topics/chemisches_labor +60 -0
  223. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  224. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  225. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  226. data/lib/studium/exam_topics/clinical_microbiology +520 -0
  227. data/lib/studium/exam_topics/computer_science +309 -0
  228. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +15 -0
  229. data/lib/studium/exam_topics/crispr +51 -0
  230. data/lib/studium/exam_topics/cyanobacteria +45 -0
  231. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +598 -0
  232. data/lib/studium/exam_topics/databases_and_sql +126 -0
  233. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +186 -0
  234. data/lib/studium/exam_topics/dna_replication +80 -0
  235. data/lib/studium/exam_topics/ecogenetics +26 -0
  236. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  237. data/lib/studium/exam_topics/ecology +332 -0
  238. data/lib/studium/exam_topics/economy +226 -0
  239. data/lib/studium/exam_topics/electron_microscopy +7 -0
  240. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  241. data/lib/studium/exam_topics/elektrophorese +132 -0
  242. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  243. data/lib/studium/exam_topics/elisa +55 -0
  244. data/lib/studium/exam_topics/embryologie_und_entwicklung +657 -0
  245. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  246. data/lib/studium/exam_topics/enzymes_and_cofactors +395 -0
  247. data/lib/studium/exam_topics/epigenetik +188 -0
  248. data/lib/studium/exam_topics/erste_hilfe +414 -0
  249. data/lib/studium/exam_topics/ethik +143 -0
  250. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +372 -0
  251. data/lib/studium/exam_topics/excel +7 -0
  252. data/lib/studium/exam_topics/fish +19 -0
  253. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  254. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  255. data/lib/studium/exam_topics/forensik +65 -0
  256. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  257. data/lib/studium/exam_topics/fortgeschrittene_genetik +692 -0
  258. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +221 -0
  259. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  260. data/lib/studium/exam_topics/fungi +119 -0
  261. data/lib/studium/exam_topics/genetische_krankheiten +209 -0
  262. data/lib/studium/exam_topics/genexpression +1008 -0
  263. data/lib/studium/exam_topics/genomics_and_metagenomics +290 -0
  264. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +961 -0
  265. data/lib/studium/exam_topics/geochemistry +67 -0
  266. data/lib/studium/exam_topics/geography +9 -0
  267. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  268. data/lib/studium/exam_topics/geometrie +56 -0
  269. data/lib/studium/exam_topics/geschichte +95 -0
  270. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  271. data/lib/studium/exam_topics/glycogen +45 -0
  272. data/lib/studium/exam_topics/glycolysis +118 -0
  273. data/lib/studium/exam_topics/glykomik +131 -0
  274. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  275. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  276. data/lib/studium/exam_topics/hormone +152 -0
  277. data/lib/studium/exam_topics/html +8 -0
  278. data/lib/studium/exam_topics/human_ecology +8 -0
  279. data/lib/studium/exam_topics/hygiene +224 -0
  280. data/lib/studium/exam_topics/imaging_and_microscopy +270 -0
  281. data/lib/studium/exam_topics/immunanalytik +94 -0
  282. data/lib/studium/exam_topics/immunologie +1011 -0
  283. data/lib/studium/exam_topics/informatik +117 -0
  284. data/lib/studium/exam_topics/innate_immunity +52 -0
  285. data/lib/studium/exam_topics/insekten +66 -0
  286. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  287. data/lib/studium/exam_topics/java +624 -0
  288. data/lib/studium/exam_topics/javascript +29 -0
  289. data/lib/studium/exam_topics/klima +6 -0
  290. data/lib/studium/exam_topics/kryptographie +10 -0
  291. data/lib/studium/exam_topics/landtechnik +26 -0
  292. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +224 -0
  293. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  294. data/lib/studium/exam_topics/light_microscopy +19 -0
  295. data/lib/studium/exam_topics/linux_and_unix +36 -0
  296. data/lib/studium/exam_topics/lipids +145 -0
  297. data/lib/studium/exam_topics/macroeconomics +39 -0
  298. data/lib/studium/exam_topics/marketing +53 -0
  299. data/lib/studium/exam_topics/mathematics +311 -0
  300. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  301. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +441 -0
  302. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  303. data/lib/studium/exam_topics/metabolismus +482 -0
  304. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  305. data/lib/studium/exam_topics/microbial_ecology +37 -0
  306. data/lib/studium/exam_topics/microcontrollers +11 -0
  307. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +58 -0
  308. data/lib/studium/exam_topics/mikrobielle_physiologie +313 -0
  309. data/lib/studium/exam_topics/mitochondria +57 -0
  310. data/lib/studium/exam_topics/mixed +287 -0
  311. data/lib/studium/exam_topics/molecular_biology_of_plants +281 -0
  312. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  313. data/lib/studium/exam_topics/nanotechnologie +456 -0
  314. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +247 -0
  315. data/lib/studium/exam_topics/naturstoffe +9 -0
  316. data/lib/studium/exam_topics/netzwerke +63 -0
  317. data/lib/studium/exam_topics/neuroanatomie +25 -0
  318. data/lib/studium/exam_topics/neurobiology +356 -0
  319. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  320. data/lib/studium/exam_topics/nutztierethologie +11 -0
  321. data/lib/studium/exam_topics/object_oriented_modeling +15 -0
  322. data/lib/studium/exam_topics/obstbau +249 -0
  323. data/lib/studium/exam_topics/organische_chemie +1007 -0
  324. data/lib/studium/exam_topics/organische_chemie_2 +137 -0
  325. data/lib/studium/exam_topics/paleobiology +39 -0
  326. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  327. data/lib/studium/exam_topics/patent_law +55 -0
  328. data/lib/studium/exam_topics/pathologie +761 -0
  329. data/lib/studium/exam_topics/pcr +155 -0
  330. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  331. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  332. data/lib/studium/exam_topics/pflanzenanatomie +262 -0
  333. data/lib/studium/exam_topics/pflanzenbau +24 -0
  334. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  335. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  336. data/lib/studium/exam_topics/pharmaceutical_biotechnology +252 -0
  337. data/lib/studium/exam_topics/physik +449 -1
  338. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  339. data/lib/studium/exam_topics/physiology_and_histology +592 -0
  340. data/lib/studium/exam_topics/phytochemie +33 -0
  341. data/lib/studium/exam_topics/plant_biotechnology +132 -0
  342. data/lib/studium/exam_topics/plant_breeding +64 -0
  343. data/lib/studium/exam_topics/plant_development +50 -0
  344. data/lib/studium/exam_topics/populationsgenetik +143 -0
  345. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +198 -0
  346. data/lib/studium/exam_topics/programming +41 -0
  347. data/lib/studium/exam_topics/projektmanagement +226 -0
  348. data/lib/studium/exam_topics/prokaryote_genetics +587 -0
  349. data/lib/studium/exam_topics/protein_engineering +35 -0
  350. data/lib/studium/exam_topics/proteolyse +39 -0
  351. data/lib/studium/exam_topics/proteomik +42 -0
  352. data/lib/studium/exam_topics/protozoans +24 -0
  353. data/lib/studium/exam_topics/prozesstechnik +95 -0
  354. data/lib/studium/exam_topics/psychologie +21 -0
  355. data/lib/studium/exam_topics/python +391 -0
  356. data/lib/studium/exam_topics/quality_management +266 -0
  357. data/lib/studium/exam_topics/rechtsgrundlagen +126 -0
  358. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  359. data/lib/studium/exam_topics/rna_and_dna +535 -0
  360. data/lib/studium/exam_topics/rna_seq +13 -0
  361. data/lib/studium/exam_topics/robotics +12 -0
  362. data/lib/studium/exam_topics/ruby +240 -0
  363. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  364. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  365. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  366. data/lib/studium/exam_topics/sexualbiologie +327 -0
  367. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +215 -0
  368. data/lib/studium/exam_topics/sozialbiologie +17 -0
  369. data/lib/studium/exam_topics/soziologie +5 -0
  370. data/lib/studium/exam_topics/splicing_exons_and_introns +67 -0
  371. data/lib/studium/exam_topics/sport_und_sportverletzungen +6 -0
  372. data/lib/studium/exam_topics/statistik +306 -0
  373. data/lib/studium/exam_topics/stemcells +182 -0
  374. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  375. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  376. data/lib/studium/exam_topics/strukturbiologie +445 -0
  377. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  378. data/lib/studium/exam_topics/systematische_zoologie +446 -0
  379. data/lib/studium/exam_topics/technical_ecology +144 -0
  380. data/lib/studium/exam_topics/technik +5 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +43 -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 +102 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +40 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +32 -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 +508 -0
  398. data/lib/studium/exam_topics/transcription +188 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +155 -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 +253 -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 +79 -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 +144 -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 +338 -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_topic_question.rb +112 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  422. data/lib/studium/exams/ask_random_question.rb +195 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/average_grade/average_grade.rb +404 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  426. data/lib/studium/exams/cycle.rb +291 -0
  427. data/lib/studium/exams/dataset/dataset.rb +126 -0
  428. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  429. data/lib/studium/exams/exam/exam.rb +130 -0
  430. data/lib/studium/exams/exam_bubble/exam_bubble.rb +444 -0
  431. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  432. data/lib/studium/exams/exam_question/README.md +3 -0
  433. data/lib/studium/exams/exam_question/exam_question.rb +434 -0
  434. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  435. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  436. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  437. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  438. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  439. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  440. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  441. data/lib/studium/exams/exam_topics.rb +194 -0
  442. data/lib/studium/exams/exams.rb +20 -0
  443. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2442 -0
  444. data/lib/studium/exams/exams_this_week.rb +182 -0
  445. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  446. data/lib/studium/exams/frozen.rb +36 -0
  447. data/lib/studium/exams/last_exams/last_exams.rb +479 -0
  448. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  449. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1358 -0
  450. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  451. 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
  452. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  453. data/lib/studium/exams/next_exam.rb +106 -0
  454. data/lib/studium/exams/next_exams.rb +378 -0
  455. data/lib/studium/exams/not_completed/README.md +5 -0
  456. data/lib/studium/exams/not_completed/not_completed.rb +143 -0
  457. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  460. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  461. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  462. data/lib/studium/exams/question_answer/question_answer.rb +2936 -0
  463. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +379 -0
  464. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  465. data/lib/studium/exams/repeat_last_question.rb +78 -0
  466. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  467. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  468. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +114 -0
  469. data/lib/studium/exams/show_exams_for/show_exams_for.rb +172 -0
  470. data/lib/studium/exams/show_themes/constants.rb +28 -0
  471. data/lib/studium/exams/show_themes/menu.rb +61 -0
  472. data/lib/studium/exams/show_themes/misc.rb +538 -0
  473. data/lib/studium/exams/show_themes/reset.rb +62 -0
  474. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  475. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1537 -0
  476. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  477. data/lib/studium/exams/solved/solved.rb +434 -0
  478. data/lib/studium/exams/timetable/constants.rb +142 -0
  479. data/lib/studium/exams/timetable/timetable.rb +448 -0
  480. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  481. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +555 -0
  482. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  483. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  484. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  485. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  486. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  487. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  488. data/lib/studium/graphviz/README.md +4 -0
  489. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  490. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  491. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +40 -0
  492. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +191 -0
  493. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  494. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  495. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  496. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  497. data/lib/studium/gui/jruby/exam_trainer/exam_trainer.rb +637 -0
  498. data/lib/studium/gui/jruby/show_upcoming_exams/show_upcoming_exams.rb +85 -0
  499. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +347 -0
  500. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +305 -0
  501. data/lib/studium/gui/shared_code/exam_trainer/exam_trainer_widget_module.rb +0 -0
  502. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +0 -0
  503. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +129 -0
  504. data/lib/studium/gui/universal_widgets/curriculum_viewer/curriculum_viewer.rb +549 -0
  505. data/lib/studium/gui/universal_widgets/ects_per_university/ects_per_university.rb +302 -0
  506. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.config +6 -0
  507. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.rb +3266 -0
  508. data/lib/studium/gui/universal_widgets/exam_trainer/manifest.yml +12 -0
  509. data/lib/studium/gui/universal_widgets/expand_time_range/expand_time_range.rb +309 -0
  510. data/lib/studium/gui/universal_widgets/information_about_a_lecture/information_about_a_lecture.rb +242 -0
  511. data/lib/studium/gui/universal_widgets/show_upcoming_exams/show_upcoming_exams.rb +252 -0
  512. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  513. data/lib/studium/images/outdated.png +0 -0
  514. data/lib/studium/images/small_logos/DNA.png +0 -0
  515. data/lib/studium/images/small_logos/README.md +2 -0
  516. data/lib/studium/images/small_logos/solved.png +0 -0
  517. data/lib/studium/images/studies_favicon.png +0 -0
  518. data/lib/studium/java/README.md +5 -0
  519. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  520. data/lib/studium/java/studium/Base.java +123 -0
  521. data/lib/studium/java/studium/Constants.java +122 -0
  522. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  523. data/lib/studium/java/studium/Mkdir.java +13 -0
  524. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  525. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  526. data/lib/studium/java/studium/Solved.java +112 -0
  527. data/lib/studium/java/studium/Test.java +60 -0
  528. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  529. data/lib/studium/java/studium/studium/Base.class +0 -0
  530. data/lib/studium/java/studium/studium/Constants.class +0 -0
  531. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  532. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  533. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  534. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  535. data/lib/studium/java/studium/studium/Solved.class +0 -0
  536. data/lib/studium/java/studium/studium/Test.class +0 -0
  537. data/lib/studium/jobs/jobs.rb +80 -0
  538. data/lib/studium/logging/README.md +2 -0
  539. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  540. data/lib/studium/logging/html_log_directory.rb +42 -0
  541. data/lib/studium/logging/log_directory.rb +112 -0
  542. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  543. data/lib/studium/parsers/README.md +2 -0
  544. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  545. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  546. data/lib/studium/project/project.rb +88 -0
  547. data/lib/studium/requires/common_popular_requires.rb +37 -0
  548. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  549. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  550. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  551. data/lib/studium/requires/require_encoding.rb +7 -0
  552. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  553. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  554. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  555. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  556. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  557. data/lib/studium/requires/require_the_parsers.rb +28 -0
  558. data/lib/studium/requires/require_the_studium_constants.rb +7 -0
  559. data/lib/studium/requires/require_the_studium_project.rb +72 -0
  560. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  561. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  562. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  563. data/lib/studium/requires/require_yaml.rb +7 -0
  564. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  565. data/lib/studium/requires/with_GUI.rb +13 -0
  566. data/lib/studium/requires/www_mode.rb +17 -0
  567. data/lib/studium/statistics/README.md +4 -0
  568. data/lib/studium/statistics/best_exam_months.rb +92 -0
  569. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +423 -0
  570. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  571. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +117 -0
  572. data/lib/studium/statistics/max_stats.rb +169 -0
  573. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  574. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  575. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  576. data/lib/studium/statistics/show_exam_statistics.rb +75 -0
  577. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  578. data/lib/studium/statistics/top_stats.rb +126 -0
  579. data/lib/studium/toplevel_methods/e_and_esystem.rb +34 -0
  580. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3986 -0
  581. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +31 -0
  582. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11611 -0
  583. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  584. data/lib/studium/toplevel_methods/roebe.rb +16 -0
  585. data/lib/studium/toplevel_methods/runmode.rb +45 -0
  586. data/lib/studium/toplevel_methods/toplevel_methods.rb +7295 -0
  587. data/lib/studium/universities_in_austria/README.md +2 -0
  588. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  589. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  590. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  591. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  592. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  593. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  594. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  595. data/lib/studium/university_course/university_course.rb +409 -0
  596. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  597. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  598. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  599. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  600. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  601. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  602. data/lib/studium/utility_scripts/autogeneration/autogeneration.rb +158 -0
  603. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +100 -0
  604. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +153 -0
  605. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  606. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  607. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  608. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  609. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  610. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  611. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  612. data/lib/studium/utility_scripts/create/README.md +2 -0
  613. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  614. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  615. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  616. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  617. data/lib/studium/utility_scripts/create_database/create_database.rb +126 -0
  618. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  619. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  620. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  621. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  622. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +171 -0
  623. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  624. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  625. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  626. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  627. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  628. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  629. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  630. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  631. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +353 -0
  632. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  633. data/lib/studium/utility_scripts/holidays/holidays.rb +154 -0
  634. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  635. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  636. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  637. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +427 -0
  638. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  639. data/lib/studium/utility_scripts/moodle/moodle.rb +214 -0
  640. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  641. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  642. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  643. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  644. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  645. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  646. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  647. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  648. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +352 -0
  649. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  650. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  651. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  652. data/lib/studium/utility_scripts/priority_points/priority_points.rb +261 -0
  653. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  654. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  655. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  656. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  657. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  658. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  659. 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 +129 -0
  660. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  661. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  662. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  663. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  664. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +373 -0
  665. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  666. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +96 -0
  667. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  668. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  669. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  670. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  671. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  672. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  673. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  674. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  675. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +906 -0
  676. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  677. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  678. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3160 -0
  679. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  680. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  681. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  682. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  683. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  684. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  685. data/lib/studium/utility_scripts/steop/README.md +4 -0
  686. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  687. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  688. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  689. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  690. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +241 -0
  691. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  692. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  693. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  694. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  695. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  696. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  697. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  698. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  699. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  700. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  701. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  702. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  703. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  704. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  705. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  706. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  707. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  708. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  709. data/lib/studium/version/version.rb +46 -0
  710. data/lib/studium/www/exams/exams.cgi +54 -0
  711. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  712. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  713. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  714. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  715. data/lib/studium/www/sinatra/app.rb +231 -0
  716. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  717. data/lib/studium/www/sinatra/misc.rb +115 -0
  718. data/lib/studium/www/statistics/statistics.cgi +82 -0
  719. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  720. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  721. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  722. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  723. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  724. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  725. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  726. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  727. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  728. data/lib/studium/yaml/current_exams.yml +30 -0
  729. data/lib/studium/yaml/curricula/README.md +39 -0
  730. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  731. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  732. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  733. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  734. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  735. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  736. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  737. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  738. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  739. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  740. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  741. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +134 -0
  742. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  743. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  744. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  745. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  746. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  747. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  748. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  749. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  750. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  751. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  752. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  753. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  754. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  755. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  756. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  757. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  758. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  759. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  760. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  761. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  762. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  763. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  764. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  765. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  766. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  767. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  768. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  769. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  770. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  771. data/lib/studium/yaml/curricula.yml +562 -0
  772. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +2019 -0
  773. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml~ +1983 -0
  774. data/lib/studium/yaml/default_delay.yml +4 -0
  775. data/lib/studium/yaml/default_encoding.yml +1 -0
  776. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  777. data/lib/studium/yaml/editor.yml +1 -0
  778. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  779. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  780. data/lib/studium/yaml/german/README.md +2 -0
  781. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  782. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +264 -0
  783. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  784. data/lib/studium/yaml/important_exams.yml +286 -0
  785. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  786. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  787. data/lib/studium/yaml/lecture_information/lecture_information.yml +66145 -0
  788. data/lib/studium/yaml/log_dir.yml +1 -0
  789. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  790. data/lib/studium/yaml/max_stats/max_stats.yml +262 -0
  791. data/lib/studium/yaml/max_stats.yml +263 -0
  792. data/lib/studium/yaml/meta_themes +1 -0
  793. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  794. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  795. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  796. data/lib/studium/yaml/n_total_questions.yml +1 -0
  797. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  798. data/lib/studium/yaml/roebe/ad_hoc_exam_topics.md +19 -0
  799. data/lib/studium/yaml/roebe/sommersemester_2024_opportunities.md +441 -0
  800. data/lib/studium/yaml/semester_planner/README.md +4 -0
  801. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  802. data/lib/studium/yaml/show_topic.yml +1 -0
  803. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  804. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  805. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  806. data/lib/studium/yaml/week/01_monday.yml +25 -0
  807. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  808. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  809. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  810. data/lib/studium/yaml/week/05_friday.yml +31 -0
  811. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  812. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  813. data/lib/studium/yaml/week/README.md +10 -0
  814. data/lib/studium.rb +5 -0
  815. data/studium.gemspec +82 -0
  816. data/test/testing_colourized_question_and_answer.rb +18 -0
  817. data/test/testing_studium.rb +244 -0
  818. data/test/testing_studium_base_class.rb +31 -0
  819. data/test/testing_the_file_lecture_information.rb +18 -0
  820. data/test/testing_time_component.rb +29 -0
  821. metadata +1042 -0
@@ -0,0 +1,3986 @@
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
+
12
+ module Exams # === Studium::Exams
13
+
14
+ # ========================================================================= #
15
+ # === Studium::Exams.n_topics_available?
16
+ #
17
+ # This method will return a number, which tells us how many topics
18
+ # are available. We "cheat" here a little bit in that we will simply
19
+ # count the amount of files in the exam_topics/ directory.
20
+ # ========================================================================= #
21
+ def self.n_topics_available?
22
+ Dir["#{Studium.exam_topics?}*"].size
23
+ end
24
+
25
+ end
26
+
27
+ # ========================================================================= #
28
+ # === Studium.is_this_an_exam_topic?
29
+ #
30
+ # This method will determine whether the given input to this method
31
+ # is a valid exam topic or whether it is not.
32
+ #
33
+ # Usage examples:
34
+ #
35
+ # Studium.is_this_an_exam_topic?('rbroken') # => false
36
+ # Studium.is_this_an_exam_topic?('amg1') # => true
37
+ # Studium.is_this_an_exam_topic?('amg11') # => false
38
+ # Studium.is_this_an_exam_topic?('bioinf') # => true
39
+ #
40
+ # ========================================================================= #
41
+ def self.is_this_an_exam_topic?(i = :amg)
42
+ expanded = find_corresponding_exam_topic(i, :be_quiet)
43
+ return true if expanded
44
+ return false
45
+ end; self.instance_eval { alias is_this_exam_topic_available? is_this_an_exam_topic? } # === is_this_exam_topic_available?
46
+
47
+ # ========================================================================= #
48
+ # === Studium.find_corresponding_exam_topic
49
+ #
50
+ # This method will expand from any input towards a (hopefully) locally
51
+ # existing file under the exam_topics/ directory.
52
+ #
53
+ # The match that will be returned, must be downcased, because all the
54
+ # files in the exam_topics/ directory are also downcased.
55
+ #
56
+ # Do not forget that when you add an entry here, to also add the
57
+ # title in the same file.
58
+ #
59
+ # You can also use a Symbol, as the last example shows in the
60
+ # Usage examples that come next.
61
+ #
62
+ # Usage examples:
63
+ #
64
+ # x = Studium.find_corresponding_exam_topic('imm') # => "immunologie"
65
+ # x = Studium.find_corresponding_exam_topic('mphysio') # => "mikrobielle_physiologie"
66
+ # x = Studium.find_corresponding_exam_topic('bioinformatics') # => "bioinformatics"
67
+ # x = Studium.find_corresponding_exam_topic(:bioinformatics) # => "bioinformatics"
68
+ # x = Studium.find_corresponding_exam_topic('anachem2') # => analytische_chemie_2
69
+ # x = Studium.find_corresponding_exam_topic('bioinf') # => "bioinformatics"
70
+ # x = Studium.find_corresponding_exam_topic(:amg1) # => "allgemeine_genetik"
71
+ #
72
+ # ========================================================================= #
73
+ def self.find_corresponding_exam_topic(
74
+ i,
75
+ be_verbose = true,
76
+ &block
77
+ )
78
+ case be_verbose
79
+ # ======================================================================= #
80
+ # === :be_verbose
81
+ # ======================================================================= #
82
+ when :be_verbose
83
+ be_verbose = true
84
+ # ======================================================================= #
85
+ # === :be_quiet
86
+ # ======================================================================= #
87
+ when :be_quiet
88
+ be_verbose = false
89
+ end
90
+ # ======================================================================= #
91
+ # === Handle blocks given to this method
92
+ # ======================================================================= #
93
+ if block_given?
94
+ yielded = yield
95
+ case yielded
96
+ # ===================================================================== #
97
+ # === :be_quiet
98
+ # ===================================================================== #
99
+ when :be_quiet
100
+ be_verbose = false
101
+ end
102
+ end
103
+ if i.is_a?(Array) and i.empty? # Assume ARGV Array given here.
104
+ i = :rand # Use a default assignment for random input in this case.
105
+ end
106
+ begin
107
+ i = i.first if i.is_a? Array
108
+ i = i.to_s.downcase # Always work with Strings past this point.
109
+ rescue ArgumentError => error
110
+ e 'An error was encountered on line 55, in the file '+
111
+ __FILE__
112
+ pp error
113
+ pp i
114
+ e i.encoding.to_s
115
+ exit # ← We exit here so that we can debug this situation.
116
+ end
117
+ # ======================================================================= #
118
+ # We chop away from input that contains ' ('.
119
+ # ======================================================================= #
120
+ if i.include? ' ('
121
+ i = i[0, i.index(' (')]
122
+ end
123
+ i = DEFAULT_TOPIC if i == 'def' # This constant is defined in the file constants.rb.
124
+ i = i.chomp.delete('?') # Make the input a bit prettier.
125
+ case i # (Case tag, case tag)
126
+ when 'rand',
127
+ 'random',
128
+ 'random_question',
129
+ 'random_topic' # Fetch a random question here.
130
+ # ===================================================================== #
131
+ # We semi-"cheat" here by simply reading in the available files.
132
+ # ===================================================================== #
133
+ i = File.basename(
134
+ Dir[directory_to_the_exam_topics?+'*'].sample
135
+ ) # We need the constant EXAM_TOPICS here.
136
+ end
137
+ i =
138
+ case i # case tag
139
+ # ======================================================================= #
140
+ # === allgemeine_genetik
141
+ # ======================================================================= #
142
+ when '1',
143
+ 'schweyen',
144
+ 'schw',
145
+ 's',
146
+ 'amg',
147
+ 'mg',
148
+ 'genetik',
149
+ 'gen',
150
+ 'fragen_amg',
151
+ 'allgemeine_genetik',
152
+ 'amg1',
153
+ 'am',
154
+ 'genetics',
155
+ /^allgemeine(-|_| |,)?genetik$/i,
156
+ 'agm'
157
+ 'allgemeine_genetik'
158
+ # ======================================================================= #
159
+ # === basic_chemistry
160
+ # ======================================================================= #
161
+ when '2',
162
+ 'chem',
163
+ 'chemie',
164
+ 'chemi',
165
+ 'chem1',
166
+ 'chemie1',
167
+ /^-?-?basic(_|-| |,)?chemistry/,
168
+ 'basic chemistry',
169
+ /^chemistry\??$/i
170
+ 'basic_chemistry'
171
+ # ======================================================================= #
172
+ # === mixed
173
+ # ======================================================================= #
174
+ when '3',
175
+ 'misc',
176
+ 'mixed',
177
+ 'misc?',
178
+ /^-?-?qamisc(_|-| |,)?$/i
179
+ 'mixed'
180
+ # ======================================================================= #
181
+ # === mikrobiologie1
182
+ # ======================================================================= #
183
+ when '4','wagner','w',
184
+ 'mikrobio?',
185
+ 'mikrobio',
186
+ 'mikrobiologie',
187
+ 'mo',
188
+ 'witte',
189
+ 'allgemeine_mikrobiologie',
190
+ 'allgemeinemikrobiologie',
191
+ 'moll',
192
+ 'amm',
193
+ 'amm1',
194
+ 'allgemeine mikrobiologie',
195
+ 'microbiology1',
196
+ 'mikrobiologie1',
197
+ /^witte1?\??$/i,
198
+ /^bacteria$/i,
199
+ /^basic(_|-| |,)?microbiology$/i
200
+ 'allgemeine_mikrobiologie'
201
+ # ======================================================================= #
202
+ # === entwicklungsbiologie
203
+ # ======================================================================= #
204
+ when '5',
205
+ 'entwicklungsbiologie','embryologie_und_entwicklung',
206
+ 'embryologie','emb','entwicklung',
207
+ 'entw',
208
+ 'devel',
209
+ 'embroy',
210
+ /embryo?/,
211
+ 'devbio',
212
+ /^developmental(_|-| |,)?biology$/i,
213
+ 'entwicklungsgenetik',
214
+ 'ebio',
215
+ 'dev',
216
+ 'embryologieundentwicklung',
217
+ 'embryologie und entwicklung',
218
+ 'modellorganismen'
219
+ 'embryologie_und_entwicklung'
220
+ # ======================================================================= #
221
+ # === computer
222
+ # ======================================================================= #
223
+ when '6','computer','computer_fragen',
224
+ 'fragenübercomputer',
225
+ 'fragen über computer',
226
+ 'computerfragen',
227
+ 'computer fragen',
228
+ 'compu',
229
+ /^computer(_|-| |,)?science$/i
230
+ 'computer_science'
231
+ # ======================================================================= #
232
+ # === pflanzenwissenschaften
233
+ # ======================================================================= #
234
+ when '7','plant',
235
+ 'ab2',
236
+ 'pflanzen',
237
+ 'fragen_ab2',
238
+ 'plants',
239
+ 'pflanzenwissenschaft',
240
+ 'pflanzenwissenschaften',
241
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der(_|-| |,)?pflanzen?$/i,
242
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der$/i,
243
+ /^qa(_|-| |,)?ab2$/i,
244
+ /^pflanze1$/i,
245
+ 'ab',
246
+ 'strukturundfunktionderpflanzen',
247
+ /^botanik\??$/i
248
+ 'pflanzenwissenschaften'
249
+ # ======================================================================= #
250
+ # === immunologie
251
+ # ======================================================================= #
252
+ when '8',
253
+ 'immuno',
254
+ 'fragen_immunologie',
255
+ 'immunologie',
256
+ 'imm',
257
+ 'immunology',
258
+ 'imuno',
259
+ 'immuno1',
260
+ 'imm1',
261
+ 'immun',
262
+ /^basic(_|-| |,)?immunology$/i,
263
+ /^qa(_|-| |,)?imm1?$/i
264
+ 'immunologie'
265
+ # ======================================================================= #
266
+ # === virologie
267
+ # ======================================================================= #
268
+ when '9','virologie','vir','virus',
269
+ 'viruses',
270
+ 'v',
271
+ 'vi',
272
+ 'viros',
273
+ 'virologieallgemein',
274
+ 'basic_virology',
275
+ 'basicvirology',
276
+ 'bvirus',
277
+ 'vir1',
278
+ 'basic virology',
279
+ 'virology1',
280
+ 'virus1',
281
+ /^Virologie(-|_| |,)?Allgemein$/i,
282
+ /^basic(-|_| |,)?virology$/i,
283
+ /^qavirus\??$/i
284
+ 'basic_virology'
285
+ # ======================================================================= #
286
+ # === genexpression
287
+ # ======================================================================= #
288
+ when '10',
289
+ 'genexpression',
290
+ /^genexo?$/i,
291
+ 'genx',
292
+ 'fragen_genex',
293
+ 'def',
294
+ 'default',
295
+ 'genexpresse',
296
+ 'genex1',
297
+ 'enex',
298
+ 'gneex'
299
+ 'genexpression'
300
+ # ======================================================================= #
301
+ # === basic_biotechnology
302
+ # ======================================================================= #
303
+ when '11',
304
+ 'biotech',
305
+ 'bio',
306
+ 'btech',
307
+ 'biotechnologie_tu_wien',
308
+ 'biotechnologietuwien',
309
+ 'fragen_biotechnologie_tu_wien',
310
+ /^basic(_|-| |,)?biotech$/i,
311
+ /^basic(_|-| |,)?biotechnology$/i,
312
+ /^biotechnologie$/i,
313
+ 'biotech1',
314
+ 'biotehc',
315
+ 'bech1',
316
+ 'biotechnology1',
317
+ 'bach1'
318
+ 'basic_biotechnology'
319
+ # ======================================================================= #
320
+ # === bioinformatik
321
+ # ======================================================================= #
322
+ when '12',
323
+ 'bioinformatik',
324
+ 'bioinf',
325
+ 'bioinfo',
326
+ 'bioinformatics',
327
+ 'binf',
328
+ 'bioinfor',
329
+ 'bioinformatic',
330
+ /bioinf1$/i
331
+ 'bioinformatics'
332
+ # ======================================================================= #
333
+ # === verhalten
334
+ # ======================================================================= #
335
+ when '13',
336
+ 'neuro',
337
+ 'neurobiologie',
338
+ 'neruo',
339
+ 'neurobiology',
340
+ 'neuron',
341
+ /neurologie\??$/i,
342
+ /cognitive\??$/i
343
+ 'neurobiology'
344
+ # ======================================================================= #
345
+ # === physics
346
+ # ======================================================================= #
347
+ when '14',
348
+ /physi(k|c)?$/,
349
+ 'array_fragen_physik',
350
+ 'fragen_physik',
351
+ 'physics',
352
+ /^qaphysik\??$/i,
353
+ /^physik1$/i
354
+ 'physik'
355
+ # ======================================================================= #
356
+ # === mathematics
357
+ # ======================================================================= #
358
+ when '15','math',
359
+ 'mat',
360
+ 'mathematik',
361
+ 'mathematic',
362
+ 'array_math',
363
+ 'mathematics',
364
+ 'basic_math',
365
+ /^qa?math\??$/,
366
+ /mathematik1$/i,
367
+ /math1$/i,
368
+ 'mathe'
369
+ 'mathematics'
370
+ # ======================================================================= #
371
+ # === zoology
372
+ # ======================================================================= #
373
+ when '16',
374
+ 'zoologie','ab4',
375
+ 'zoo',
376
+ 'tiere',
377
+ 'array_zoologie',
378
+ 'zoology',
379
+ /^allgemeine(_|-| |,)?zoologie$/i,
380
+ /^animals?$/i
381
+ 'zoologie'
382
+ # ======================================================================= #
383
+ # === nanotech
384
+ # ======================================================================= #
385
+ when '17',
386
+ 'nanotech',
387
+ 'nanotechnologie',
388
+ 'nanotechnology',
389
+ 'nanobiotechnologie',
390
+ 'array_fragen_nanotechnologie',
391
+ /^fragen_?nanotechnologie/,
392
+ 'nano',
393
+ 'anno',
394
+ 'nanobiotech',
395
+ 'nanomedicine',
396
+ /^qa?(_|-| |,)?nano\??$/i
397
+ 'nanotechnologie'
398
+ # ======================================================================= #
399
+ # === medizin
400
+ # ======================================================================= #
401
+ when '18',
402
+ 'medizin',
403
+ 'fragen_medizin',
404
+ 'medicine',
405
+ 'biomed',
406
+ 'biomedizin',
407
+ 'biomedicine',
408
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinische(_|-| |,)?technik$/i,
409
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinisc$/i,
410
+ /^qamedizin$/i
411
+ 'medizin_und_biomedizinische_technik'
412
+ # ======================================================================= #
413
+ # === organische_chemie
414
+ # ======================================================================= #
415
+ when '19','orgc',
416
+ 'organische_chemie',
417
+ 'org',
418
+ 'fragen_organische_chemie',
419
+ 'organische chemie',
420
+ 'orgc1',
421
+ 'org1',
422
+ 'organischechemie',
423
+ 'orgch',
424
+ 'organic_chemistry1',
425
+ 'ogc',
426
+ /^organic(_|-| |,)?chemistry$/i
427
+ 'organische_chemie'
428
+ # ======================================================================= #
429
+ # === analytische_chemie
430
+ # ======================================================================= #
431
+ when '20',
432
+ 'ana',
433
+ 'analytische_chemie',
434
+ 'analyt',
435
+ 'analytischechemie',
436
+ 'fragen_analytische_chemie',
437
+ 'analytik',
438
+ /analytische(_|-| |,)?chemie(_|-| |,)?1$/,
439
+ 'analytische chemie',
440
+ 'analytical_chemistry',
441
+ 'analyticchemistry',
442
+ 'analytical_chem',
443
+ 'anachem'
444
+ 'analytische_chemie_1'
445
+ # ======================================================================= #
446
+ # === ökologie
447
+ # ======================================================================= #
448
+ when '21','ecology','fragen_ecology','e',
449
+ 'ecology?',
450
+ 'öko',
451
+ 'ökologie',
452
+ 'ecol',
453
+ 'eco',
454
+ 'Ökologie'
455
+ 'ecology'
456
+ # ======================================================================= #
457
+ # === physiologie
458
+ # ======================================================================= #
459
+ when '22',
460
+ 'ab3',
461
+ 'physiologie',
462
+ 'phys',
463
+ 'fragen_physiologie',
464
+ 'physio','physiology',
465
+ 'histologie',
466
+ 'histology',
467
+ 'physi',
468
+ /^physiology(_|-| |,)?and(_|-| |,)?histology/i,
469
+ /^qapysio\??$/i,
470
+ /^qaphysio\??$/i
471
+ 'physiology_and_histology'
472
+ # ======================================================================= #
473
+ # === vektor
474
+ # ======================================================================= #
475
+ when '23',
476
+ 'vektor',
477
+ 'vector','vectors','vektoren',
478
+ 'fragen_vektoren',
479
+ 'genetherapy',
480
+ 'gentherapie',
481
+ 'vektorenindergentechnologie',
482
+ 'genthera',
483
+ 'vektoren in der gentechnologie',
484
+ 'vektors',
485
+ 'gene_therapy',
486
+ 'viral_vectors',
487
+ 'gentherapy',
488
+ 'viralvectors',
489
+ /^vektoren(_|-| |,)?in(_|-| |,)?der(_|-| |,)?gentechnologie$/i,
490
+ /^vektoren(_|-| |,)?in(_|-| |,)?der(_|-| |,)?gentechno$/i,
491
+ /^vectors(_|-| |,)?and(_|-| |,)?gene(_|-| |,)?therapy$/i
492
+ 'vectors_and_gene_therapy'
493
+ # ======================================================================= #
494
+ # === phytochemie
495
+ # ======================================================================= #
496
+ when '24','fragen_phytochemie','phytochem','phytochemie'
497
+ 'phytochemie'
498
+ # ======================================================================= #
499
+ # === aging
500
+ # ======================================================================= #
501
+ when '25',
502
+ 'aging',
503
+ 'age',
504
+ 'ageing'
505
+ 'ageing'
506
+ # ======================================================================= #
507
+ # === bioprozesstechnik
508
+ # ======================================================================= #
509
+ when '26',
510
+ 'bioprozesstechnik',
511
+ 'bioprozess',
512
+ 'bioverfahren',
513
+ 'bioverfahrenstechnik',
514
+ 'bioprocess'
515
+ 'bioprozesstechnik'
516
+ # ======================================================================= #
517
+ # === mikrobio_tuwien
518
+ # ======================================================================= #
519
+ when '27',
520
+ 'tuwien_microbiology','microbiology',
521
+ 'tuwien',
522
+ 'mikrobio_tuwien',
523
+ 'micro',
524
+ 'tuwien_microbio',
525
+ 'tuwienmicrobiology',
526
+ 'tuwien_micro',
527
+ 'technische_mikrobiologie',
528
+ 'technischemikrobiologie',
529
+ 'tu wien microbiology',
530
+ 'technische mikrobiologie',
531
+ 'tumicrobiologie',
532
+ 'tumicro',
533
+ 'tuwienmikro',
534
+ 'tuwien_mikrobiologie',
535
+ 'tuwienmikrobiologie',
536
+ /^tu(_|-| |,)?microbiology$/,
537
+ /^tu(_|-| |,)?microbio$/,
538
+ /^tu(_|-| |,)?wien(_|-| |,)?microbiology$/
539
+ 'technische_mikrobiologie'
540
+ # ======================================================================= #
541
+ # === cellbiology
542
+ # ======================================================================= #
543
+ when '28',
544
+ 'cellbiology','cell','cellbio','zell',
545
+ 'clel',
546
+ 'zellbiologietierischersysteme',
547
+ 'methodeninderzellbiologie',
548
+ 'cel',
549
+ 'cell1',
550
+ 'cellbio1'
551
+ 'cellbiology'
552
+ # ======================================================================= #
553
+ # === physikalische_chemie
554
+ # ======================================================================= #
555
+ when '29','physikalische_chemie','physchemie','pchemie',
556
+ 'physikalischechemie',
557
+ 'physikalische chemie',
558
+ /^physchem$/i
559
+ 'physikalische_chemie'
560
+ # ======================================================================= #
561
+ # === verfahrenstechnik
562
+ # ======================================================================= #
563
+ when '30',
564
+ 'verfahrenstechnik'
565
+ 'verfahrenstechnik'
566
+ # ======================================================================= #
567
+ # === analytische_chemie_2
568
+ # ======================================================================= #
569
+ when '31',
570
+ 'ana2',
571
+ /^analytische(_|-| |,)chemie(_|-| |,)2$/i,
572
+ /^ana(_|-| |,)chem2$/i,
573
+ 'anachem2'
574
+ 'analytische_chemie_2'
575
+ # ======================================================================= #
576
+ # === gentechnik
577
+ # ======================================================================= #
578
+ when '32',
579
+ 'gentechnik',
580
+ 'gentechnik1',
581
+ /^gene?tech?$/,
582
+ /^gene?tech1?$/,
583
+ /^gene?tehc?$/,
584
+ /^praktische(_|-| |,)?biochemie$/,
585
+ /^gentechnik(_|-| |,)?und(_|-| |,)?praktische(_|-| |,)?biochemie$/,
586
+ /^gentechnik(_|-| |,)?und(_|-| |,)?praktische(_|-| |,)?$/,
587
+ /^gentechnik(_|-| |,)?und(_|-| |,)?praktische\??$/
588
+ 'gentechnik_und_praktische_biochemie'
589
+ # ======================================================================= #
590
+ # === economy
591
+ # ======================================================================= #
592
+ when '33',
593
+ 'economy',
594
+ 'ökonomie',
595
+ 'ökonom',
596
+ 'ökonomie?',
597
+ 'ecomoy',
598
+ /^qaeconomy\??$/i
599
+ 'economy'
600
+ # ======================================================================= #
601
+ # === geschichte
602
+ # ======================================================================= #
603
+ when '34','geschichte',
604
+ 'history',
605
+ /^qa(_|-| |,)?geschichte\??$/
606
+ 'geschichte'
607
+ # ======================================================================= #
608
+ # === festkörperchemie
609
+ # ======================================================================= #
610
+ when '35','festkoerper_chemie',
611
+ 'fest',
612
+ 'festkoerper',
613
+ 'festkörper_chemie',
614
+ 'festkörper chemie',
615
+ 'festkoerperchemie',
616
+ 'festkoerper chemie',
617
+ 'festkörperchemie',
618
+ 'festkÖrperchemie',
619
+ 'geochemistry',
620
+ 'geochem',
621
+ 'geochemist',
622
+ 'festkörper',
623
+ /^festkörperchemie(_|-| |,)?und(_|-| |,)?geochemie$/i,
624
+ /^festkörper(_|-| |,)?chemie(_|-| |,)?und(_|-| |,)?geochemie$/i,
625
+ /^festkörper(_|-| |,)?chemie(_|-| |,)?und(_|-| |,)?geo$/i
626
+ 'geochemistry'
627
+ # ======================================================================= #
628
+ # === geologie
629
+ # ======================================================================= #
630
+ when '36','geologie',
631
+ 'array_geologie',
632
+ 'array_fragen_geologie',
633
+ 'geo',
634
+ /^geologie(_|-| |,)?und(_|-| |,)?mineralogie$/i,
635
+ /^geology\??$/i,
636
+ /^fragen_?geologie/,'mineralogie',
637
+ 'mineral',
638
+ 'ego',
639
+ /^qageo\??/
640
+ 'geologie_und_mineralogie'
641
+ # ======================================================================= #
642
+ # === anorganische_chemie
643
+ # ======================================================================= #
644
+ when '37','ano','anorganische_chemie','anorganischechemie',
645
+ 'anorganisch','achem','array_anorganische_chemie',
646
+ 'anon',
647
+ /anon1$/,
648
+ 'anorganische chemie',
649
+ 'anon_chem',
650
+ 'anorg',
651
+ /anon_?chemie$/,
652
+ /anonchem/
653
+ 'anorganische_chemie'
654
+ # ======================================================================= #
655
+ # === law
656
+ # ======================================================================= #
657
+ when '38','array_law','law','arraylaw','lawandorder',
658
+ 'law and order',
659
+ 'recht',
660
+ 'rechtsgrundlagen'
661
+ 'rechtsgrundlagen'
662
+ # ======================================================================= #
663
+ # === organische_chemie2
664
+ # ======================================================================= #
665
+ when '39','orgc2','organische_chemie2','org2',
666
+ 'fragen_organische_chemie2',
667
+ 'organischechemie2',
668
+ 'organische_chemie_2',
669
+ 'organische chemie 2',
670
+ 'organic_chemistry2'
671
+ 'organische_chemie_2'
672
+ # ======================================================================= #
673
+ # === wasserkunde
674
+ # ======================================================================= #
675
+ when '40','wasserkunde',
676
+ 'biologie_des_wasser',
677
+ 'biologiedeswasser',
678
+ 'water',
679
+ 'wasser',
680
+ 'watter',
681
+ 'biologiedeswassers',
682
+ 'biologie des wassers',
683
+ 'biologie des wasser'
684
+ 'wasserkunde'
685
+ # ======================================================================= #
686
+ # === technische_chemie
687
+ # ======================================================================= #
688
+ when '41',
689
+ /^-?-?technische(_|-| |,)?chemi?e?$/i,
690
+ /^-?-?qa(_|-| |,)?technische(_|-| |,)?chemi?e?$/i,
691
+ 'tech',
692
+ 'technologie_chemie',
693
+ /tu_?chem/
694
+ 'technische_chemie'
695
+ # ======================================================================= #
696
+ # === biologie
697
+ # ======================================================================= #
698
+ when '42',
699
+ 'biologie',
700
+ 'biology',
701
+ /^-?-?qa(_|-| |,)?biologie$/i
702
+ 'biologie'
703
+ # ======================================================================= #
704
+ # === umwelt
705
+ # ======================================================================= #
706
+ when '43','umwelt','umweltchemie','uchem'
707
+ 'umweltchemie'
708
+ # ======================================================================= #
709
+ # === signal_transduction
710
+ # ======================================================================= #
711
+ when '44','signal','ldigc',
712
+ 'signaling',
713
+ 'laser',
714
+ /^signal(_|-| |,)?transduction$/i,
715
+ /^signal(_|-| |,)?transduction(_|-| |,)?and(_|-| |,)?laser(_|-| |,)?systems$/i,
716
+ /^signal(_|-| |,)?transduktion(_|-| |,)?und(_|-| |,)?lasersysteme$/i,
717
+ /^signal(_|-| |,)?transduktion(_|-| |,)?und(_|-| |,)?la$/i
718
+ 'signal_transduction_and_laser_systems'
719
+ # ======================================================================= #
720
+ # === paläobiologie
721
+ # ======================================================================= #
722
+ when '45',
723
+ 'paleo',
724
+ 'paläobiology',
725
+ 'paleobiology',
726
+ 'paläo',
727
+ 'paläobiologie'
728
+ 'paleobiology'
729
+ # ======================================================================= #
730
+ # === lebensmittel
731
+ # ======================================================================= #
732
+ when '46',
733
+ 'lebensmittel',
734
+ 'food',
735
+ 'foodsies',
736
+ /^lebensmittel(_|-| |,)?und(_|-| |,)?getränke$/i,
737
+ /^ern\??$/i
738
+ 'lebensmittel_und_getränke'
739
+ # ======================================================================= #
740
+ # === medchem
741
+ # ======================================================================= #
742
+ when '47',
743
+ 'medchem',
744
+ 'medchems',
745
+ 'main',
746
+ /^medizinische(_| )?chemie$/i,
747
+ /^medizinische(_| )?chemie(_| )?und(_| )?pharmazie$/i,
748
+ /^medizinische(_| )?chemie(_| )?und(_| )?p$/i
749
+ 'medizinische_chemie_und_pharmazie'
750
+ # ======================================================================= #
751
+ # === cancerbiology
752
+ # ======================================================================= #
753
+ when '48','cancer','krebs','cancerbiology',
754
+ 'tumor',
755
+ 'oncology',
756
+ 'onkologie',
757
+ 'onco',
758
+ 'cacner',
759
+ /^qacancer\??$/i
760
+ 'cancerbiology'
761
+ # ======================================================================= #
762
+ # === cytogenetik
763
+ # ======================================================================= #
764
+ when '49',
765
+ 'cytogenetik',
766
+ 'cyto',
767
+ 'cgen',
768
+ 'cytobio',
769
+ 'chromo',
770
+ 'chromosomenbiologie',
771
+ 'cytogen',
772
+ 'cytogenetics',
773
+ 'chromosomen',
774
+ 'cytologie',
775
+ 'cytology',
776
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromosome(_|-| |,)?biology$/i,
777
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromoso$/i
778
+ 'cytogenetics_and_chromosome_biology'
779
+ # ======================================================================= #
780
+ # === biostatistik
781
+ # ======================================================================= #
782
+ when '50','biostatistik','biostat',
783
+ 'stats',
784
+ 'stat',
785
+ 'statistik',
786
+ 'statistic',
787
+ 'statistics',
788
+ 'statistk?',
789
+ /^qastat\??$/i,
790
+ /^qastatistik\??$/i
791
+ 'statistik'
792
+ # ======================================================================= #
793
+ # === biochemie
794
+ # ======================================================================= #
795
+ when '51',
796
+ 'biochemie',
797
+ 'biochem',
798
+ 'bchem',
799
+ 'biochemistry',
800
+ 'einfuehrung_biochemie',
801
+ 'basic_biochemistry',
802
+ 'biochem1',
803
+ 'bem1',
804
+ 'basicbiochemistry',
805
+ 'basic biochemistry',
806
+ 'bem',
807
+ 'grundlagenderbiochemie',
808
+ 'ebm',
809
+ 'bme',
810
+ /^basic(_|-| |,)?biochemistry\??$/i
811
+ 'basic_biochemistry'
812
+ # ======================================================================= #
813
+ # === advanced_biochemistry
814
+ # ======================================================================= #
815
+ when '52','biochemie2',
816
+ /biochem2\??$/i,
817
+ 'bchem2',
818
+ 'biochemistry2',
819
+ 'biochemie_ii','biochemie_master','bem2',
820
+ /advanced(_|-| |,)?biochemistry\??$/i,
821
+ 'bemchem2',
822
+ 'biochemiefürbiologen'
823
+ 'advanced_biochemistry'
824
+ # ======================================================================= #
825
+ # === fortgeschrittene_physik
826
+ # ======================================================================= #
827
+ when '53',
828
+ 'physik2',
829
+ 'fortgeschrittene_physik',
830
+ /fortgeschrittene(_|-| |,)?physik/
831
+ 'fortgeschrittene_physik'
832
+ # ======================================================================= #
833
+ # === bioelektrochemie
834
+ # ======================================================================= #
835
+ when '54',
836
+ 'bioelektrochemie',
837
+ 'bioele',
838
+ 'bioelek'
839
+ 'bioelektrochemie'
840
+ # ======================================================================= #
841
+ # === advanced_biotechnology
842
+ # ======================================================================= #
843
+ when '55',
844
+ /^biotech2$/,
845
+ /^advanced(_|-| |,)?biotechnology$/,
846
+ /^advanced(_|-| |,)?biotechn$/,
847
+ 'bech2',
848
+ 'biotechnology2'
849
+ 'advanced_biotechnology'
850
+ # ======================================================================= #
851
+ # === epigenetik
852
+ # ======================================================================= #
853
+ when '56','epigenetik','epi','epigenetics',
854
+ /epigen/ # <-- This should suffice for now.
855
+ 'epigenetik'
856
+ # ======================================================================= #
857
+ # === bioanalytik
858
+ # ======================================================================= #
859
+ when '57',
860
+ 'bioanalytik',
861
+ 'bioana',
862
+ 'bioanalytics',
863
+ 'bioanalytic',
864
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensoren?$/,
865
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensor$/
866
+ 'bioanalytik_und_biosensoren'
867
+ # ======================================================================= #
868
+ # === genomics
869
+ # ======================================================================= #
870
+ when '58',
871
+ 'genomics',
872
+ 'genomik',
873
+ 'genome',
874
+ 'genom',
875
+ 'genomes',
876
+ 'metagenomics',
877
+ /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/,
878
+ /^genomik(_|-| |,)?und(_|-| |,)?metagenomik$/,
879
+ /^genomies$/
880
+ 'genomics_and_metagenomics'
881
+ # ======================================================================= #
882
+ # === clinical_microbiology
883
+ # ======================================================================= #
884
+ when '59','clinical_microbiology','clinicalbac','clinical_micro',
885
+ 'clinicalmicrobiology','clinical',
886
+ 'clinic',
887
+ 'clinical microbiology',
888
+ 'clini',
889
+ 'clinci',
890
+ 'clinical_microscopy',
891
+ /^clinical(_|-| |,)?microbiologie\??$/i,
892
+ /^medmikro\??$/i
893
+ 'clinical_microbiology'
894
+ # ======================================================================= #
895
+ # === mikrobielle_physiologie
896
+ # ======================================================================= #
897
+ when '60',
898
+ /^mikrobielle_?physiologie/i,
899
+ 'mikphysio',
900
+ 'mikphysiologie',
901
+ 'mphysio',
902
+ 'molekulare_physiologie_industrieller_mikroorganismen',
903
+ 'molekulare_physiologie',
904
+ 'molphysio',
905
+ 'molekularephysiologieindustriellermikroorganismen',
906
+ 'molekulare physiologie industrieller mikroorganismen',
907
+ 'mikphys',
908
+ 'mpyhs',
909
+ 'mphys',
910
+ 'mphysiologie',
911
+ /^-?-?mikrobielle(_|-| |,)?physiologie\??$/i,
912
+ /^-?-?mphyi?s?io?$/i,
913
+ /^-?-?mphyios$/i
914
+ 'mikrobielle_physiologie'
915
+ # ======================================================================= #
916
+ # === molekulare_medizin
917
+ # ======================================================================= #
918
+ when '61',
919
+ /^-?-?molekulare(_|-| |,)?medizin$/i,
920
+ 'molmed',
921
+ 'molmed1',
922
+ 'molekularemedizin',
923
+ 'molmed2'
924
+ 'molekulare_medizin'
925
+ # ======================================================================= #
926
+ # === evolution
927
+ # ======================================================================= #
928
+ when '62','evolution',
929
+ 'evo',
930
+ 'eov',
931
+ 'ev',
932
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionary(_|-| |,)?genetics$/i,
933
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionary?$/i,
934
+ /^qaevo\??$/i
935
+ 'evolution_and_evolutionary_genetics'
936
+ # ======================================================================= #
937
+ # === artificial_intelligence
938
+ # ======================================================================= #
939
+ when '63',
940
+ /^artificial$/i,
941
+ /^artificial(_|-| |,)?intelligence\??$/i,
942
+ /^AI$/i
943
+ 'artificial_intelligence'
944
+ # ======================================================================= #
945
+ # === ethik
946
+ # ======================================================================= #
947
+ when '64',
948
+ 'ethik',
949
+ 'ethics',
950
+ 'ethic',
951
+ 'umweltethik',
952
+ 'bioethik'
953
+ 'ethik'
954
+ # ======================================================================= #
955
+ # === hygiene
956
+ # ======================================================================= #
957
+ when '65',
958
+ 'hygiene',
959
+ 'hyg',
960
+ 'hyge',
961
+ 'hy'
962
+ 'hygiene'
963
+ # ======================================================================= #
964
+ # === rna
965
+ # ======================================================================= #
966
+ when '66','rna','dna','rna_and_dna','rna and dna',
967
+ 'rnaanddna',/^mRNA$/i,
968
+ /^qarna\??$/i,
969
+ /^dna(_|-| |,)?und(_|-| |,)?rna$/i,
970
+ /^tRNA$/i
971
+ 'rna_and_dna'
972
+ # ======================================================================= #
973
+ # === research_topics_in_immunobiology
974
+ # ======================================================================= #
975
+ when '67',
976
+ 'research',
977
+ /^research(_|-| |,)?topics$/i,
978
+ /^research(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?immuno?b?i?o?l?o?g?y$/i
979
+ 'research_topics_in_immunobiology'
980
+ # ======================================================================= #
981
+ # === fungi
982
+ # ======================================================================= #
983
+ when '68',
984
+ 'pilz',
985
+ 'pilze',
986
+ 'fungus',
987
+ /^fungi$/i,
988
+ /^qa(_|-| |,)?fungi$/i
989
+ 'fungi'
990
+ # ======================================================================= #
991
+ # === prok
992
+ # ======================================================================= #
993
+ when '69',
994
+ 'prokaryotes',
995
+ 'prokarya',
996
+ 'prokaryote_genetics',
997
+ 'prokaryotegenetics',
998
+ 'bac',
999
+ 'prok',
1000
+ 'prokaryote genetics',
1001
+ 'ecoli',
1002
+ 'pgenetics',
1003
+ 'prokaroytic_genetics',
1004
+ /^prokaryote(_|-| |,)?genetics$/i,
1005
+ /^prok(_|-| |,)?genetics$/i,
1006
+ /^prok(_|-| |,)?gen$/i,
1007
+ /^prok1$/i,
1008
+ /^qaprok\??$/i
1009
+ 'prokaryote_genetics'
1010
+ # ======================================================================= #
1011
+ # === wissenschaft
1012
+ # ======================================================================= #
1013
+ when '70','wissenschaft','science','sci'
1014
+ 'wissenschaft'
1015
+ # ======================================================================= #
1016
+ # === anthropologie
1017
+ # ======================================================================= #
1018
+ when '71','anthropologie','anthro','ant','an'
1019
+ 'anthropologie'
1020
+ # ======================================================================= #
1021
+ # === fortgeschrittene_gentechnik
1022
+ # ======================================================================= #
1023
+ when '72',
1024
+ 'gentech2',
1025
+ 'gentechnik2',
1026
+ 'fortgeschrittene_gentechnik',
1027
+ 'fortgeschrittenegentechnik',
1028
+ 'fortgeschrittene gentechnik',
1029
+ 'methoden',
1030
+ /^fortgeschrittene(_|-| |,)?gentechn$/i
1031
+ 'fortgeschrittene_gentechnik'
1032
+ # ======================================================================= #
1033
+ # === fortgeschrittene_genetik
1034
+ # ======================================================================= #
1035
+ when '73',
1036
+ 'amg2',
1037
+ 'fortgeschrittene_genetik',
1038
+ 'mg2',
1039
+ 'fortgeschrittenegenetik',
1040
+ 'fortgeschrittene genetik',
1041
+ 'genetics2',
1042
+ 'dna2',
1043
+ 'am2',
1044
+ 'agm2'
1045
+ 'fortgeschrittene_genetik'
1046
+ # ======================================================================= #
1047
+ # === pcr
1048
+ # ======================================================================= #
1049
+ when '74','pcr'
1050
+ 'pcr'
1051
+ # ======================================================================= #
1052
+ # === sex
1053
+ # ======================================================================= #
1054
+ when '75',
1055
+ 'sex',
1056
+ 'fortpflanzung',
1057
+ 'sexualbiologie',
1058
+ /^-?-?sexbio\??$/i
1059
+ 'sexualbiologie'
1060
+ # ======================================================================= #
1061
+ # === populationsgenetik
1062
+ # ======================================================================= #
1063
+ when '76','populationsgenetik','popgen','evolutionsgenetik',
1064
+ 'population',
1065
+ 'population_genetics'
1066
+ 'populationsgenetik'
1067
+ # ======================================================================= #
1068
+ # === ökogenetik
1069
+ # ======================================================================= #
1070
+ when '77','ökogenetik','ökogen','ecogen','ecogenetics',
1071
+ 'ECOGENETICS','Ökogenetik'
1072
+ 'ecogenetics'
1073
+ # ======================================================================= #
1074
+ # === pathologie
1075
+ # ======================================================================= #
1076
+ when '78','pathologie',
1077
+ 'patho','pathos','PATHOLOGIE',
1078
+ 'pathology',
1079
+ 'pathophysio',
1080
+ 'pathophysiologie',
1081
+ /^qapatho\??$/i,
1082
+ /^pathophysiology\??$/i
1083
+ 'pathologie'
1084
+ # ======================================================================= #
1085
+ # === allergie
1086
+ # ======================================================================= #
1087
+ when '79',
1088
+ 'allergie',
1089
+ 'allergy',
1090
+ 'allergien',
1091
+ 'allergen',
1092
+ 'allergies',
1093
+ /^allerge$/i
1094
+ 'allergie'
1095
+ # ======================================================================= #
1096
+ # === structural_biology
1097
+ # ======================================================================= #
1098
+ when '80','proteinstruktur',
1099
+ 'struktur',
1100
+ 'strukturbiologie',
1101
+ 'strukturbio',
1102
+ 'strukt',
1103
+ 'struct',
1104
+ 'struk',
1105
+ 'strubi',
1106
+ 'struktbio',
1107
+ 'strubio',
1108
+ 'strub',
1109
+ /^structure\??$/i,
1110
+ /^structural(_|-| |,)?biology/,
1111
+ /^struktur(_|-| |,)?biologie\??$/i
1112
+ 'strukturbiologie'
1113
+ # ======================================================================= #
1114
+ # === chemisches_labor
1115
+ # ======================================================================= #
1116
+ when '81',
1117
+ /^chemisches(_|-| |,)?labor$/i,
1118
+ 'labor',
1119
+ 'chemisches labor',
1120
+ 'chemlabor',
1121
+ 'chemlabor?',
1122
+ 'safety'
1123
+ 'chemisches_labor'
1124
+ # ======================================================================= #
1125
+ # === theoretische_chemie
1126
+ # ======================================================================= #
1127
+ when '82','theoretische_chemie','theoretische chemie labor',
1128
+ 'theoretischechemie','theoretische chemie',
1129
+ 'theochem'
1130
+ 'theoretische_chemie'
1131
+ # ======================================================================= #
1132
+ # === plant_biotechnology
1133
+ # ======================================================================= #
1134
+ when '83',
1135
+ 'plant_biotech',
1136
+ 'plant_biotechnology',
1137
+ 'plant biotechnology',
1138
+ 'plantbiotechnology',
1139
+ 'pbtech',
1140
+ 'pbio',
1141
+ 'plantbiotech',
1142
+ /^pflanzen(_|-| |,)?biotech$/i
1143
+ 'plant_biotechnology'
1144
+ # ======================================================================= #
1145
+ # === bodenkunde
1146
+ # ======================================================================= #
1147
+ when '84',
1148
+ 'boden',
1149
+ 'bodne',
1150
+ /^bodenkunden?$/i
1151
+ 'bodenkunde'
1152
+ # ======================================================================= #
1153
+ # === advanced_virology
1154
+ # ======================================================================= #
1155
+ when '85',/advanced_?virology/,
1156
+ 'vir2',
1157
+ 'virology2',
1158
+ 'large_viruses',
1159
+ 'largeviruses',
1160
+ 'large viruses',
1161
+ 'virus2',
1162
+ /^advanced(_|-| |,)?virology$/i
1163
+ 'advanced_virology'
1164
+ # ======================================================================= #
1165
+ # === microbial_ecology
1166
+ # ======================================================================= #
1167
+ when '86',
1168
+ 'microbial_ecology','miceco',
1169
+ 'mikrobielleökologie',
1170
+ 'mikrobielle ökologie',
1171
+ 'mikrobielle Ökologie',
1172
+ 'microbialecology',
1173
+ 'mikrobielleÖkologie',
1174
+ 'microbial ecology',
1175
+ 'meco',
1176
+ /^mikrobielle(_|-| |,)?ökologie$/i
1177
+ 'microbial_ecology'
1178
+ # ======================================================================= #
1179
+ # === metabolismus
1180
+ # ======================================================================= #
1181
+ when '87','metabolismus','met','meta','metabolism',
1182
+ /^metabolismus\??$/i
1183
+ 'metabolismus'
1184
+ # ======================================================================= #
1185
+ # === the_cellcycle
1186
+ # ======================================================================= #
1187
+ when '88','cellcycle','cellcyc','cycle?','the_cellcycle',
1188
+ 'the cellcyle',
1189
+ 'thecellcyle',
1190
+ /^cycle$/i,
1191
+ /^the(_|-| |,)?cell(_|-| |,)?cycle$/i,
1192
+ /^the(_|-| |,)?cellcycle$/i,
1193
+ /^the(_|-| |,)?cellcyle$/i,
1194
+ /^cell(_|-| |,)?cycle$/i
1195
+ 'the_cellcycle'
1196
+ # ======================================================================= #
1197
+ # === bioressourcenmanagement
1198
+ # ======================================================================= #
1199
+ when '89',
1200
+ 'bioressourcenmanagement',
1201
+ 'ubrm',
1202
+ 'UBRM',
1203
+ 'ubr',
1204
+ 'ubm',
1205
+ 'bioress',
1206
+ 'bioressourcen'
1207
+ 'bioressourcenmanagement'
1208
+ # ======================================================================= #
1209
+ # === technische_ökologie
1210
+ # ======================================================================= #
1211
+ when '90',
1212
+ 'technical_ecology',
1213
+ 'technische_ökologie',
1214
+ 'technische ökologie',
1215
+ 'tueco',
1216
+ 'technischeÖkologie',
1217
+ 'technische Ökologie',
1218
+ 'technicalecology',
1219
+ 'technical ecology',
1220
+ 'nachhaltigkeit',
1221
+ /^technische(_|-| |,)?ökologie$/i
1222
+ 'technical_ecology'
1223
+ # ======================================================================= #
1224
+ # === agrarökologie
1225
+ # ======================================================================= #
1226
+ when '91',
1227
+ 'agrarökologie',
1228
+ 'agrar',
1229
+ 'agrarwissenschaften',
1230
+ 'agrarwissenschaft',
1231
+ 'agrarÖkologie',
1232
+ 'agrar_ecology',
1233
+ 'agraröko',
1234
+ 'agrarecology',
1235
+ 'agrar ecology'
1236
+ 'agrar_ecology'
1237
+ # ======================================================================= #
1238
+ # === anatomie
1239
+ # ======================================================================= #
1240
+ when '92',
1241
+ 'anatomie',
1242
+ 'anatomy',
1243
+ 'anat',
1244
+ 'anatom',
1245
+ /^-?-?qanatomie\??$/
1246
+ 'anatomie'
1247
+ # ======================================================================= #
1248
+ # === obst_und_weinbau
1249
+ # ======================================================================= #
1250
+ when '93','obst','obstbau',
1251
+ 'obst_und_weinbau','obst und weinbau',
1252
+ 'obstundweinbau'
1253
+ 'obstbau'
1254
+ # ======================================================================= #
1255
+ # === veterinärmedizin
1256
+ # ======================================================================= #
1257
+ when '94','vetmed','vet','veterinarymedicine',
1258
+ 'veterinärmedizin','veterinary medicine',
1259
+ 'veterinary_medicine'
1260
+ 'veterinary_medicine'
1261
+ # ======================================================================= #
1262
+ # === advanced_chemistry
1263
+ # ======================================================================= #
1264
+ when '95','chemie2',
1265
+ 'advanced_chemistry',
1266
+ 'advancedchemistry',
1267
+ 'basicchemistry',
1268
+ 'chemistry2',
1269
+ 'chem2',
1270
+ 'ch2m',
1271
+ 'advanced chemistry'
1272
+ 'advanced_chemistry'
1273
+ # ======================================================================= #
1274
+ # === landtechnik
1275
+ # ======================================================================= #
1276
+ when '96',
1277
+ 'landtechnik',
1278
+ 'grundlagenderlandtechnik',
1279
+ /^grundlagen(_|-| |,)?der(_|-| |,)?landtechnik$/i,
1280
+ /^grundlagen(_|-| |,)?der(_|-| |,)?landtechni$/i
1281
+ 'landtechnik'
1282
+ # ======================================================================= #
1283
+ # === agrarmärkte
1284
+ # ======================================================================= #
1285
+ when '97',
1286
+ 'agrarmärkte',
1287
+ 'agrarmarkt',
1288
+ 'agrarm',
1289
+ 'agrarmarkte'
1290
+ 'agrarmarkt'
1291
+ # ======================================================================= #
1292
+ # === agrarphysik
1293
+ # ======================================================================= #
1294
+ when '98',
1295
+ 'agrarphysik'
1296
+ 'agrarphysik'
1297
+ # ======================================================================= #
1298
+ # === humanökologie
1299
+ # ======================================================================= #
1300
+ when '99','humanökologie',
1301
+ 'humaneco',
1302
+ 'humanecology',
1303
+ 'human ecology',
1304
+ 'human_ecology'
1305
+ 'human_ecology'
1306
+ # ======================================================================= #
1307
+ # === quality_management
1308
+ # ======================================================================= #
1309
+ when '100',
1310
+ /^quality(_|-| |,)?management$/,
1311
+ /^qmanagement\??$/,
1312
+ /^qualitätsmanagement$/,
1313
+ 'quality',
1314
+ 'qual',
1315
+ 'management',
1316
+ 'qman'
1317
+ 'quality_management'
1318
+ # ======================================================================= #
1319
+ # === translational_control
1320
+ # ======================================================================= #
1321
+ when '101',
1322
+ 'translational_control',
1323
+ 'transcon',
1324
+ 'translationalcontrol',
1325
+ 'transcon?',
1326
+ 'translational control',
1327
+ 'translation',
1328
+ /^translation(_|-| |,)?(_|-| |,)?ribosomes(_|-| |,)?and(_|-| |,)?translational(_|-| |,)?control$/,
1329
+ /^translation(_|-| |,)?(_|-| |,)?ribosomes(_|-| |,)?an$/,
1330
+ /^translation(_|-| |,)?(_|-| |,)?ribosomes(_|-| |,)?and(_|-| |,)?$/,
1331
+ /^ribosomes?$/i
1332
+ 'translation_ribosomes_and_translational_control'
1333
+ # ======================================================================= #
1334
+ # === audio
1335
+ # ======================================================================= #
1336
+ when '102','audio','audio?'
1337
+ 'audio'
1338
+ # ======================================================================= #
1339
+ # === umweltbiotechnologie
1340
+ # ======================================================================= #
1341
+ when '103',
1342
+ 'umweltbio',
1343
+ 'umweltbiotechnologie',
1344
+ 'umweltbiotech',
1345
+ 'ubiotech'
1346
+ 'umweltbiotechnologie'
1347
+ # ======================================================================= #
1348
+ # === posttranslationale_modifikation_von_proteinen
1349
+ # ======================================================================= #
1350
+ when '104','posttrans',
1351
+ 'posttranslational','genex2',
1352
+ 'post',
1353
+ 'posttranslationalemodifikationvonproteinen',
1354
+ 'posttranslationale modifikation von proteinen',
1355
+ 'posttranslationale_modifikation_von_proteinen',
1356
+ /^PTMs?\??$/i,
1357
+ /^posttranslationale(_|-| |,)?modifi\??$/i,
1358
+ /^posttranslational(_|-| |,)?modification(_|-| |,)?of(_|-| |,)?_proteins$/i,
1359
+ /^posttranslationale(_|-| |,)?modifik$/i
1360
+ 'posttranslationale_modifikation_von_proteinen'
1361
+ # ======================================================================= #
1362
+ # === bodenmikrobiologie
1363
+ # ======================================================================= #
1364
+ when '105',
1365
+ 'bodenmikrobiologie','boden_mikrobiologie',
1366
+ 'soil_biology',
1367
+ 'soil_microbiology'
1368
+ 'bodenmikrobiologie'
1369
+ # ======================================================================= #
1370
+ # === pflanzenschutz
1371
+ # ======================================================================= #
1372
+ when '106','pflanzenschutz','pflanzenschutz?',
1373
+ 'pschutz'
1374
+ 'pflanzenschutz'
1375
+ # ======================================================================= #
1376
+ # === stammzellen
1377
+ # ======================================================================= #
1378
+ when '107','stem','ste','stem_cells','stemcells',
1379
+ 'stammzellen','stamm','stem_cells?','stemcell'
1380
+ 'stemcells'
1381
+ # ======================================================================= #
1382
+ # === plant_breeding
1383
+ # ======================================================================= #
1384
+ when '108',
1385
+ 'pflanzenzüchtung',
1386
+ 'pflanzenzuechtung',
1387
+ 'plant_breeding',
1388
+ 'plant_zucht',
1389
+ /pflanzenzÜchtung/i,
1390
+ 'pflanzenzucht',
1391
+ 'pzucht',
1392
+ /^-?-?plant(_|-| |,)?breeding$/i
1393
+ 'plant_breeding'
1394
+ # ======================================================================= #
1395
+ # === insects
1396
+ # ======================================================================= #
1397
+ when '109','insects','insekten','insect','ins',
1398
+ 'schmetterlinge','schmetterling'
1399
+ 'insekten'
1400
+ # ======================================================================= #
1401
+ # === mikroskopie
1402
+ # ======================================================================= #
1403
+ when '110',
1404
+ 'microscope',
1405
+ 'mikros',
1406
+ 'mikroskop',
1407
+ 'mikroskope',
1408
+ 'mscope',
1409
+ 'mikroskopie',
1410
+ 'microscop',
1411
+ 'microscopy',
1412
+ 'mopy',
1413
+ 'moby',
1414
+ 'imaging',
1415
+ /^microscopes$/i,
1416
+ /^imaging(_|-| |,)?and(_|-| |,)?microscopy$/i,
1417
+ /^imaging\??$/i,
1418
+ /^imagining\??$/i,
1419
+ /^qa(_|-| |,)?mopy\??$/i
1420
+ 'imaging_and_microscopy'
1421
+ # ======================================================================= #
1422
+ # === aminoacids
1423
+ # ======================================================================= #
1424
+ when '111','aminoacids','aminosäuren','aminoacid',
1425
+ 'amino_acids','Amino Acids','aa','amino',
1426
+ 'amino acids',
1427
+ /^aminoacids\??$/i
1428
+ 'aminoacids'
1429
+ # ======================================================================= #
1430
+ # === enzymes
1431
+ # ======================================================================= #
1432
+ when '112','enzymes','enzyme','enzym','ee','Enzymes',
1433
+ 'enz','ezn',
1434
+ /^enzymes(_|-| |,)?and(_|-| |,)?cofactors\??$/i
1435
+ 'enzymes_and_cofactors'
1436
+ # ======================================================================= #
1437
+ # === proteomik
1438
+ # ======================================================================= #
1439
+ when '113','proteomik','proteomic','proteomics',
1440
+ 'proteome','proteom'
1441
+ 'proteomik'
1442
+ # ======================================================================= #
1443
+ # === advanced_microbiology
1444
+ # ======================================================================= #
1445
+ when '114',
1446
+ 'schäffer_mikrobiologie',
1447
+ 'schäffermikrobiologie',
1448
+ 'schäffer mikrobiologie',
1449
+ 'schäffer','schäff',
1450
+ 'schäffer?',
1451
+ 'schÄffermikrobiologie',
1452
+ 'advanced_microbiology',
1453
+ 'advancedmicrobiology',
1454
+ 'advanced microbiology',
1455
+ 'amm2',
1456
+ 'mikrobiologie2',
1457
+ 'witte2',
1458
+ /^microbiology2\??$/i
1459
+ 'advanced_microbiology'
1460
+ # ======================================================================= #
1461
+ # === plant_anatomy
1462
+ # ======================================================================= #
1463
+ when '115',
1464
+ 'pflanzenanatomie',
1465
+ 'plant_anatomy?',
1466
+ 'panatomy',
1467
+ 'plantanatomy?',
1468
+ 'plant_anatomy',
1469
+ 'plantanatomy',
1470
+ 'panatomie',
1471
+ 'pflanzenphysiologie',
1472
+ 'plantphysiologie',
1473
+ 'ab2anatomie',
1474
+ 'plantanatomie',
1475
+ /^panatome$/i,
1476
+ /^qa(_|-| |,)?plant(_|-| |,)?anatomy$/i
1477
+ 'pflanzenanatomie'
1478
+ # ======================================================================= #
1479
+ # === antibodies_and_antigens
1480
+ # ======================================================================= #
1481
+ when '116','antibodies','anti','antibody',
1482
+ /^abody?$/i,
1483
+ 'body',
1484
+ 'antikörper','antigens',
1485
+ /^antibodies(_|-| |,)?and(_|-| |,)?antigens$/i,
1486
+ /^antigens\??$/i,
1487
+ /^antibodies\??$/i,
1488
+ 'abodies'
1489
+ 'antibodies_and_antigens'
1490
+ # ======================================================================= #
1491
+ # === molecular_biology_of_plants
1492
+ # ======================================================================= #
1493
+ when '117',
1494
+ 'molecular_biology_of_plant',
1495
+ 'molecular_biology_of_plants',
1496
+ 'molecularbiologyofplants',
1497
+ 'molplants?',
1498
+ 'molplants',
1499
+ 'plantmol?',
1500
+ 'plantmol',
1501
+ 'plantmolbio',
1502
+ 'molecular biology of plants',
1503
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the_?$/i,
1504
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the(_|-| |,)?plants?$/i,
1505
+ /^qa(_|-| |,)?molplants?$/i
1506
+ 'molecular_biology_of_plants'
1507
+ # ======================================================================= #
1508
+ # === lebensmitteltechnologie
1509
+ # ======================================================================= #
1510
+ when '118',
1511
+ /^lebensmitteltechnologie/i
1512
+ 'lebensmitteltechnologie'
1513
+ # ======================================================================= #
1514
+ # === advanced_cell_biology
1515
+ # ======================================================================= #
1516
+ when '119',
1517
+ /^advanced(_|-| |,)?cell(_|-| |,)?biology$/,
1518
+ 'cell2',
1519
+ 'cellbiology2',
1520
+ 'cellbio2'
1521
+ 'advanced_cellbiology'
1522
+ # ======================================================================= #
1523
+ # === insulin
1524
+ # ======================================================================= #
1525
+ when '120','insulin','insuline','insulin?','diabetes',
1526
+ /^insulin(_|-| |,)?and(_|-| |,)?diabetes$/i
1527
+ 'insulin_and_diabetes'
1528
+ # ======================================================================= #
1529
+ # === microarray
1530
+ # ======================================================================= #
1531
+ when '121','microarray','microarrays',
1532
+ 'biochips',
1533
+ 'biochip',
1534
+ /^biochips(_|-| |,)?and(_|-| |,)?microarray$/i
1535
+ 'biochips'
1536
+ # ======================================================================= #
1537
+ # === rna_seq
1538
+ # ======================================================================= #
1539
+ when '122','rnaseq','rna_seq','rna_seq?','rna seq'
1540
+ 'rna_seq'
1541
+ # ======================================================================= #
1542
+ # === innate_immunity
1543
+ # ======================================================================= #
1544
+ when '123',
1545
+ /^innate$/i,
1546
+ /^innate(_|-| |,)?immunity\??$/i,
1547
+ /^innate(_|-| |,)?immunology$/i,
1548
+ /^innate(_|-| |,)?immuno$/i
1549
+ 'innate_immunity'
1550
+ # ======================================================================= #
1551
+ # === psychologie
1552
+ # ======================================================================= #
1553
+ when '124','psychologie',
1554
+ 'psychology',
1555
+ /^-?-?qa(_|-| |,)?psychologie\??$/i
1556
+ 'psychologie'
1557
+ # ======================================================================= #
1558
+ # === genetische_krankheiten
1559
+ # ======================================================================= #
1560
+ when '125','genetische_krankheiten','genetischekrankheiten',
1561
+ 'genetic_diseases',
1562
+ 'geneticdiseases','genetic_disease',
1563
+ 'gendisease',
1564
+ 'disease',
1565
+ 'digene',
1566
+ 'disgene',
1567
+ 'gendis',
1568
+ 'geneticdisease',
1569
+ /^genetische(_|-| |,)?krankheiten?$/i,
1570
+ /^gen(_|-| |,)?disease\??$/i,
1571
+ /^gen(_|-| |,)?dise?$/i
1572
+ 'genetische_krankheiten'
1573
+ # ======================================================================= #
1574
+ # === hormone
1575
+ # ======================================================================= #
1576
+ when '126','hormone','hormon','hormones','hor'
1577
+ 'hormone'
1578
+ # ======================================================================= #
1579
+ # === systematische_zoologie
1580
+ # ======================================================================= #
1581
+ when '127',
1582
+ /^systematische(_|-| |,)?zoologie?$/i,
1583
+ /^qa(_|-| |,)?syszoo?$/i,
1584
+ 'syszoo','sys_zoo',
1585
+ 'szoo',
1586
+ 'syszo',
1587
+ 'sysz',
1588
+ 'syzoo'
1589
+ 'systematische_zoologie'
1590
+ # ======================================================================= #
1591
+ # === betriebssysteme
1592
+ # ======================================================================= #
1593
+ when '128',
1594
+ /^betriebssysteme?$/i,
1595
+ /^OS\??$/i,
1596
+ /^operating(_|-| |,)?systems?$/i
1597
+ 'betriebssysteme'
1598
+ # ======================================================================= #
1599
+ # === informatik
1600
+ # ======================================================================= #
1601
+ when '129','informatik','informatics',
1602
+ 'informatic',
1603
+ /^qainf\??$/i
1604
+ 'informatik'
1605
+ # ======================================================================= #
1606
+ # === c_programming
1607
+ # ======================================================================= #
1608
+ when '130','c','c_programming',
1609
+ /^the(_|-| |,)?c(_|-| |,)?programming(_|-| |,)?language?$/i,
1610
+ 'cprog',
1611
+ 'cprogramming',
1612
+ /^qaC\??$/i
1613
+ 'the_c_programming_language'
1614
+ # ======================================================================= #
1615
+ # === abfall
1616
+ # ======================================================================= #
1617
+ when '131',
1618
+ 'abfall',
1619
+ /^abfall(_|-| |,)?als(_|-| |,)?ressource$/i
1620
+ 'abfall_als_ressource'
1621
+ # ======================================================================= #
1622
+ # === fish
1623
+ # ======================================================================= #
1624
+ when '132',
1625
+ 'fish',
1626
+ /^fish(_|-| |,)?(_|-| |,)?(_|-| |,)?fluorescence(_|-| |,)?in(_|-| |,)?si$/i,
1627
+ /^fish(_|-| |,)?(_|-| |,)?(_|-| |,)?fluorescence(_|-| |,)?in(_|-| |,)?situ(_|-| |,)?hybridization$/i
1628
+ 'fish'
1629
+ # ======================================================================= #
1630
+ # === ruby_on_rails
1631
+ # ======================================================================= #
1632
+ when '133','ruby_on_rails','ror',
1633
+ 'rubyonrails',
1634
+ 'ruby-on-rails',
1635
+ /rails$/
1636
+ 'ruby_on_rails'
1637
+ # ======================================================================= #
1638
+ # === chemische_technologie_anorganischer_stoff
1639
+ # ======================================================================= #
1640
+ when '134',
1641
+ 'chemtech',
1642
+ 'chemtech1',
1643
+ 'chemt',
1644
+ 'materialkunde',
1645
+ 'material_sciences',
1646
+ /^chem(_|-| |,)?anorg\??$/i,
1647
+ 'chemanon',
1648
+ /^chemische(_|-| |,)?technologie(_|-| |,)?anorganischer(_|-| |,)?stoffe$/,
1649
+ /^chemische(_|-| |,)?technologie(_|-| |,)?anor$/,
1650
+ /^techchem1$/i
1651
+ 'chemische_technologie_anorganischer_stoffe'
1652
+ # ======================================================================= #
1653
+ # === biophysik
1654
+ # ======================================================================= #
1655
+ when '135',
1656
+ /^biophysik$/,
1657
+ /^biophysics?$/i
1658
+ 'biophysik'
1659
+ # ======================================================================= #
1660
+ # === pflanzenbau
1661
+ # ======================================================================= #
1662
+ when '136',
1663
+ /pflanzenba?u?/,'pbau'
1664
+ 'pflanzenbau'
1665
+ # ======================================================================= #
1666
+ # === plant_development
1667
+ # ======================================================================= #
1668
+ when '137',
1669
+ /^plant(_|-| |,)?development$/,
1670
+ /^plant_?dev\??/,
1671
+ 'pdev',
1672
+ /^devbio(_|-| |,)?plants$/i
1673
+ 'plant_development'
1674
+ # ======================================================================= #
1675
+ # === glykomik
1676
+ # ======================================================================= #
1677
+ when '138',
1678
+ /^-?-?glykomik$/i,
1679
+ /^-?-?glycomics$/i,
1680
+ /^-?-?sugar/,
1681
+ /^-?-?glykans\??$/,
1682
+ 'zucker'
1683
+ 'glykomik'
1684
+ # ======================================================================= #
1685
+ # === Grünlandbewirtschaftung
1686
+ # ======================================================================= #
1687
+ when '139',
1688
+ /^Grünlandbewirtschaftung$/i,
1689
+ /^grassland(_|-| |,)?cultivation$/,
1690
+ /^grünlandwirtschaft$/i,
1691
+ /^grünlandbewirtschaftung(_|-| |,)?\(?$/i,
1692
+ 'grün',
1693
+ 'grünland'
1694
+ 'grassland_cultivation'
1695
+ # ======================================================================= #
1696
+ # === ökologische_landwirtschaft
1697
+ # ======================================================================= #
1698
+ when '140',
1699
+ /^Ökologische ?Landwirtschaft$/i,'ökoland',
1700
+ 'ökologische_landwirtschaft',
1701
+ /ecological_?agriculture/,
1702
+ /^ökologische(_|-| |,)?landwirtschaf$/
1703
+ 'ecological_agriculture'
1704
+ # ======================================================================= #
1705
+ # === the_european_union
1706
+ # ======================================================================= #
1707
+ when '141',
1708
+ /^the(_|-| |,)?european(_|-| |,)?union$/i,
1709
+ 'european_union',
1710
+ 'europeanunion',
1711
+ 'eu?',
1712
+ 'eu',
1713
+ /^the(_|-| |,)?eu$/
1714
+ 'the_european_union'
1715
+ # ======================================================================= #
1716
+ # === lipids
1717
+ # ======================================================================= #
1718
+ when '142',
1719
+ 'lipids',
1720
+ 'lipid','fett',
1721
+ 'lipide'
1722
+ 'lipids'
1723
+ # ======================================================================= #
1724
+ # === nucleotide_sequencing
1725
+ # ======================================================================= #
1726
+ when '143',
1727
+ /^nucleotide(_|-| |,)?sequencing$/i,
1728
+ /^NGS\??$/i,
1729
+ 'sequencing',
1730
+ 'sequenzierung','nucleotideseq','seq2',
1731
+ 'nusequencing'
1732
+ 'nucleotide_sequencing'
1733
+ # ======================================================================= #
1734
+ # === databases
1735
+ # ======================================================================= #
1736
+ when '144',
1737
+ /^databases\??$/i,
1738
+ /^datenbanken\??$/i,
1739
+ /^databases(_|-| |,)?and(_|-| |,)?sql$/i,
1740
+ /database/,
1741
+ /^qasql\??$/,
1742
+ 'datenbank',
1743
+ /^sql$/i
1744
+ 'databases_and_sql'
1745
+ # ======================================================================= #
1746
+ # === tierzucht
1747
+ # ======================================================================= #
1748
+ when '145','tierzucht'
1749
+ 'tierzucht'
1750
+ # ======================================================================= #
1751
+ # === biological_therapeutics
1752
+ # ======================================================================= #
1753
+ when '146',/^biological(_|-| |,)?therapeutics$/i,
1754
+ 'biologics','biologica','biologika','ther',
1755
+ 'therapeutics',
1756
+ 'thera',
1757
+ 'biothera',
1758
+ 'kunert'
1759
+ 'biological_therapeutics'
1760
+ # ======================================================================= #
1761
+ # === forstwirtschaft
1762
+ # ======================================================================= #
1763
+ when '147',/forstwirtschaft/i,'forst?','forst'
1764
+ 'forstwirtschaft'
1765
+ # ======================================================================= #
1766
+ # === alcohols
1767
+ # ======================================================================= #
1768
+ when '148','alcohols','alcohol','alkohol','alk',
1769
+ /^alkohole$/i
1770
+ 'alcohols'
1771
+ # ======================================================================= #
1772
+ # === klima
1773
+ # ======================================================================= #
1774
+ when '149','klima'
1775
+ 'klima'
1776
+ # ======================================================================= #
1777
+ # === elektrotechnik
1778
+ # ======================================================================= #
1779
+ when '150',
1780
+ 'elektrotechnik',
1781
+ 'elektrizität',
1782
+ 'echem',
1783
+ 'elektro',
1784
+ 'strom',
1785
+ /^elektrotechnik(_|-| |,)?und(_|-| |,)?elektrizität$/i
1786
+ 'elektrotechnik_und_elektrizität'
1787
+ # ======================================================================= #
1788
+ # === weinbau
1789
+ # ======================================================================= #
1790
+ when '151','weinbau','wein'
1791
+ 'weinbau'
1792
+ # ======================================================================= #
1793
+ # === technische_grundlagen_der_informatik
1794
+ # ======================================================================= #
1795
+ when '152',
1796
+ 'technische_grundlagen_der_informatik',
1797
+ /^technische(_|-| |,)?informatik$/i,
1798
+ /^technische(_|-| |,)?grundlagen(_|-| |,)?der$/i,
1799
+ /^technische(_|-| |,)?grundlagen(_|-| |,)?der(_|-| |,)?informatik$/i,
1800
+ /^tech(_|-| |,)?computer\??$/i
1801
+ 'technische_grundlagen_der_informatik'
1802
+ # ======================================================================= #
1803
+ # === c++
1804
+ # ======================================================================= #
1805
+ when '153',
1806
+ 'c++',
1807
+ 'the_c_plus_plus_programming_language',
1808
+ 'cpp',
1809
+ 'cepp',
1810
+ 'qacpp',
1811
+ /^qaCpp\??$/i,
1812
+ /^qaC\+\+\??$/i,
1813
+ /^the(_|-| |,)?c\+\+(_|-| |,)?programming(_|-| |,)?language$/i,
1814
+ /^the(_|-| |,)?c\+\+(_|-| |,)?programming(_|-| |,)?langu?$/i
1815
+ 'the_c_plus_plus_programming_language'
1816
+ # ======================================================================= #
1817
+ # === semisynthese
1818
+ # ======================================================================= #
1819
+ when '154',
1820
+ 'semisynthese',
1821
+ 'semisynthese_proteinen',
1822
+ 'semisynth',
1823
+ 'semi',
1824
+ /^semisynthese(_|-| |,)?von(_|-| |,)?proteinen(_|-| |,)?und(_|-| |,)?nukleotiden$/i,
1825
+ /^semisynthese(_|-| |,)?von(_|-| |,)?proteinen?$/i
1826
+ 'semisynthese_von_proteinen_und_nukleotiden'
1827
+ # ======================================================================= #
1828
+ # === biomaterials
1829
+ # ======================================================================= #
1830
+ when '155','biomaterials','biomaterial','biomat','biom'
1831
+ 'biomaterials'
1832
+ # ======================================================================= #
1833
+ # === naturschutz
1834
+ # ======================================================================= #
1835
+ when '156','naturschutz',
1836
+ 'natur',
1837
+ 'nature',
1838
+ /^nature(_|-| |,)?conservation(_|-| |,)?and(_|-| |,)?biodiversity(_|-| |,)?$/i,
1839
+ /^naturschutz(_|-| |,)?und(_|-| |,)?biodivers$/i,
1840
+ /^naturschutz(_|-| |,)?und(_|-| |,)?biodiversität$/i,
1841
+ /^qanatur\??$/i
1842
+ 'nature_conservation_and_biodiversity'
1843
+ # ======================================================================= #
1844
+ # === biomembranes
1845
+ # ======================================================================= #
1846
+ when '157','biomembranes','biomembrane',
1847
+ /^membranes?$/
1848
+ 'biomembranes'
1849
+ # ======================================================================= #
1850
+ # === vitamine
1851
+ # ======================================================================= #
1852
+ when '158','vitamine','vitamin','vitamins','vitamines'
1853
+ 'vitamine'
1854
+ # ======================================================================= #
1855
+ # === python
1856
+ # ======================================================================= #
1857
+ when '159','python','pthon','pytho',
1858
+ 'pyhton',
1859
+ 'pythn',
1860
+ 'qapy',
1861
+ 'qapy?',
1862
+ 'qpay',
1863
+ /^qa?python\??$/i
1864
+ 'python'
1865
+ # ======================================================================= #
1866
+ # === archaea
1867
+ # ======================================================================= #
1868
+ when '160',
1869
+ 'archaea'
1870
+ 'archaea'
1871
+ # ======================================================================= #
1872
+ # === cyanobacteria
1873
+ # ======================================================================= #
1874
+ when '161','cyanobacteria','cyano'
1875
+ 'cyanobacteria'
1876
+ # ======================================================================= #
1877
+ # === naturstoffe
1878
+ # ======================================================================= #
1879
+ when '162','naturstoffe'
1880
+ 'naturstoffe'
1881
+ # ======================================================================= #
1882
+ # === biopolymers
1883
+ # ======================================================================= #
1884
+ when '163','biopolymers','biopolymer'
1885
+ 'biopolymers'
1886
+ # ======================================================================= #
1887
+ # === bionik
1888
+ # ======================================================================= #
1889
+ when '164','bionik'
1890
+ 'bionik'
1891
+ # ======================================================================= #
1892
+ # === urbanism
1893
+ # ======================================================================= #
1894
+ when '165','urbanism',/^urbanism(_|-| |,)?and(_|-| |,)?traffic$/
1895
+ 'urbanism_and_traffic'
1896
+ # ======================================================================= #
1897
+ # === vaccination
1898
+ # ======================================================================= #
1899
+ when '166','vaccination',
1900
+ 'vaccine',
1901
+ 'vaccines',
1902
+ 'vacca',
1903
+ 'vakzin',
1904
+ 'vacine',
1905
+ 'vacc',
1906
+ /^vaccines(_|-| |,)?and(_|-| |,)?vaccination$/,
1907
+ /^vakzinierung$/,
1908
+ 'vakzine',
1909
+ /^antigene\??$/
1910
+ 'vaccines_and_vaccination'
1911
+ # ======================================================================= #
1912
+ # === crispr
1913
+ # ======================================================================= #
1914
+ when '167','crispr','crisp'
1915
+ 'crispr'
1916
+ # ======================================================================= #
1917
+ # === java
1918
+ # ======================================================================= #
1919
+ when '168','java','qajava',
1920
+ /^qjava\??$/i
1921
+ 'java'
1922
+ # ======================================================================= #
1923
+ # === yeast
1924
+ # ======================================================================= #
1925
+ when '169','yeast','ye'
1926
+ 'yeast'
1927
+ # ======================================================================= #
1928
+ # === ruby
1929
+ # ======================================================================= #
1930
+ when '170',
1931
+ 'ruby',
1932
+ /^qa?ruby\??$/i
1933
+ 'ruby'
1934
+ # ======================================================================= #
1935
+ # === technisches_zeichnen
1936
+ # ======================================================================= #
1937
+ when '171',
1938
+ /^technisches(_|-| |,)?zeichnen$/i,
1939
+ 'CAD',
1940
+ 'cad'
1941
+ 'technisches_zeichnen'
1942
+ # ======================================================================= #
1943
+ # === prozesstechnik
1944
+ # ======================================================================= #
1945
+ when '172',
1946
+ 'prozesstechnik',
1947
+ 'prozesstechnologie',
1948
+ 'prozesskunde',
1949
+ 'prozess',
1950
+ 'prozess?'
1951
+ 'prozesstechnik'
1952
+ # ======================================================================= #
1953
+ # === glykolyse
1954
+ # ======================================================================= #
1955
+ when '173',
1956
+ 'glykolyse',
1957
+ 'glycolysis',
1958
+ 'glycolyse',
1959
+ 'gly',
1960
+ 'glyk',
1961
+ 'gl',
1962
+ 'glyc',
1963
+ 'glyco',
1964
+ 'glyko',
1965
+ /^glycolysis\??$/i,
1966
+ /^die(_|-| |,)?glykolyse$/i,
1967
+ /^glykolysis$/i
1968
+ 'glycolysis'
1969
+ # ======================================================================= #
1970
+ # === rnai
1971
+ # ======================================================================= #
1972
+ when '174',
1973
+ /^RNAi$/i,
1974
+ /^miRNA$/i,
1975
+ /^siRNA$/i,
1976
+ /^RNAi(_|-| |,)?(_|-| |,)?siRNA(_|-| |,)?and(_|-| |,)?miRNA$/i
1977
+ 'RNAi_siRNA_and_miRNA'
1978
+ # ======================================================================= #
1979
+ # === mikrobielle_lebensgemeinschaften
1980
+ # ======================================================================= #
1981
+ when '175',
1982
+ 'mikrob_lebensgemeinschaften',
1983
+ 'mikb',
1984
+ /^Lebensgemeinschaften$/i,
1985
+ /^Mikrobielle(_|-| |,)?Lebensgemeinschaften$/i,
1986
+ /^Mikrobielle(_|-| |,)?Lebensgemeins$/i
1987
+ 'mikrobielle_lebensgemeinschaften'
1988
+ # ======================================================================= #
1989
+ # === theoretische_informatik
1990
+ # ======================================================================= #
1991
+ when '176',/^theoretische(_|-| |,)?informatik\??$/i,
1992
+ 'theore',
1993
+ 'theoinf',/^theo(_|-| |,)?inf/i,
1994
+ 'tinf'
1995
+ 'theoretische_informatik'
1996
+ # ======================================================================= #
1997
+ # === algorithms
1998
+ # ======================================================================= #
1999
+ when '177',/algorithms/,'algo','algorithm',
2000
+ 'algorithmus',
2001
+ 'alg'
2002
+ 'algorithms'
2003
+ # ======================================================================= #
2004
+ # === javascript
2005
+ # ======================================================================= #
2006
+ when '178',
2007
+ 'javascript'
2008
+ 'javascript'
2009
+ # ======================================================================= #
2010
+ # === elektronenmikroskopie
2011
+ # ======================================================================= #
2012
+ when '179',
2013
+ 'elektronenmikroskopie',
2014
+ 'emopy',
2015
+ 'tem'
2016
+ 'elektronenmikroskopie'
2017
+ # ======================================================================= #
2018
+ # === bauwesen
2019
+ # ======================================================================= #
2020
+ when '180',
2021
+ 'bauwesen'
2022
+ 'bauwesen'
2023
+ # ======================================================================= #
2024
+ # === system_biology
2025
+ # ======================================================================= #
2026
+ when '181',
2027
+ /^system(_|-| |,)?biology$/,
2028
+ /systems?/i,
2029
+ 'sysbio',
2030
+ 'systemb',
2031
+ 'sysbi',
2032
+ 'systembio',
2033
+ 'systembio?',
2034
+ /^systems(_|-| |,)?biology/i,
2035
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthetic(_|-| |,)?biology$/,
2036
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthe$/,
2037
+ /^synth$/i,
2038
+ /^systembiologie$/i,
2039
+ /^synthetic$/i,
2040
+ /^synthetic(_|-| |,)?biology$/i,
2041
+ /^synth(_|-| |,)?bio$/i
2042
+ 'system_biology_and_synthetic_biology'
2043
+ # ======================================================================= #
2044
+ # === architektur
2045
+ # ======================================================================= #
2046
+ when '182',/^architektur$/,/^architecture$/
2047
+ 'architecture'
2048
+ # ======================================================================= #
2049
+ # === biofilms
2050
+ # ======================================================================= #
2051
+ when '183',
2052
+ 'biofilms',
2053
+ 'biofilm',
2054
+ 'biofilme'
2055
+ 'biofilms'
2056
+ # ======================================================================= #
2057
+ # === dna_replikation
2058
+ # ======================================================================= #
2059
+ when '184',
2060
+ /^dna(_|-| |,)?repli(c|k)ation$/i,
2061
+ 'replication',
2062
+ /^dna(_|-| |,)?repl?$/i
2063
+ 'dna_replication'
2064
+ # ======================================================================= #
2065
+ # === immunanalytik
2066
+ # ======================================================================= #
2067
+ when '185',/^immunanalyti(c|k)$/i,
2068
+ 'immunoanalytik',
2069
+ 'immunoana',
2070
+ 'immunana',
2071
+ 'immuna',
2072
+ 'immunoassay',
2073
+ /^immunoanalytics$/i
2074
+ 'immunanalytik'
2075
+ # ======================================================================= #
2076
+ # === elektrophorese
2077
+ # ======================================================================= #
2078
+ when '186',
2079
+ /^elektrophorese$/i,
2080
+ /^electrophoresis\??$/i,
2081
+ /^gelele(c|k)?trophorese\??$/i,
2082
+ 'gelelectrophoresis',
2083
+ 'elektrophoresis',
2084
+ 'gel',
2085
+ 'sds','gele'
2086
+ 'elektrophorese'
2087
+ # ======================================================================= #
2088
+ # === endospores
2089
+ # ======================================================================= #
2090
+ when '187',
2091
+ /^endospores(_|-| |,)?and(_|-| |,)?spores$/i,
2092
+ /^endosporen(_|-| |,)?und(_|-| |,)?sporen$/i,
2093
+ 'endospores','spores',
2094
+ 'endo',
2095
+ 'endospore',
2096
+ 'endosporen',
2097
+ /^spore\??$/i,
2098
+ /^endospores\??$/i
2099
+ 'endospores_and_spores'
2100
+ # ======================================================================= #
2101
+ # === the_bacterial_cell_wall
2102
+ # ======================================================================= #
2103
+ when '188',/^the(_|-| |,)?bacterial(_|-| |,)?cell(_|-| |,)?wall$/i,
2104
+ 'bacterial_cell_wall?',
2105
+ /^bacterial(_|-| |,)?cell(_|-| |,)?wall\??$/,
2106
+ /^cell(_|-| |,)?well$/,
2107
+ /^cell(_|-| |,)?wall$/
2108
+ 'the_bacterial_cell_wall'
2109
+ # ======================================================================= #
2110
+ # === bacteriophages
2111
+ #
2112
+ # Everything about bacteriophages/phages.
2113
+ # ======================================================================= #
2114
+ when '189',
2115
+ 'bacteriophages',
2116
+ 'phages',
2117
+ 'bakteriophagen',
2118
+ 'phag',
2119
+ /^pha?gen?$/
2120
+ 'bacteriophages'
2121
+ # ======================================================================= #
2122
+ # === mutation
2123
+ # ======================================================================= #
2124
+ when '190',
2125
+ /^mutation$/i,
2126
+ /^dna(_|-| |,)?repair$/i,
2127
+ /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repair$/i,
2128
+ /^dna(_|-| |,)?repair(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?mutation$/i,
2129
+ /^dna(_|-| |,)?mutations(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repair$/i,
2130
+ /^dna(_|-| |,)?mutations(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa$/i,
2131
+ /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa$/i,
2132
+ /^dna(_|-| |,)?mutations?$/i
2133
+ 'dna_mutation_and_dna_repair'
2134
+ # ======================================================================= #
2135
+ # === apoptosis
2136
+ # ======================================================================= #
2137
+ when '191',
2138
+ 'apoptosis',
2139
+ 'aptoptosis',
2140
+ 'apoptose',
2141
+ 'zelltod'
2142
+ 'apoptosis'
2143
+ # ======================================================================= #
2144
+ # === interferon
2145
+ # ======================================================================= #
2146
+ when '192','interferon','ifn','interferone',
2147
+ /^the(_|-| |,)?interferon(_|-| |,)?system$/i
2148
+ 'the_interferon_system'
2149
+ # ======================================================================= #
2150
+ # === pharmazeutische_biotechnologie
2151
+ # ======================================================================= #
2152
+ when '193',
2153
+ 'pharmabiotech',
2154
+ /^pharmazeutische(_|-| |,)?biotechnologie1$/i,
2155
+ /^pharmazeutische(_|-| |,)?biotechnologie$/i,
2156
+ /^pharmaceutical(_|-| |,)?biotechnology$/i,
2157
+ /^pharmaceutical(_|-| |,)?biotechnol$/i,
2158
+ /^pharma(_|-| |,)?biotech\??$/i,
2159
+ 'pbiotech',
2160
+ 'pharma',
2161
+ 'parma',
2162
+ /^pbiotechnologie$/i,
2163
+ 'pharmatech'
2164
+ 'pharmaceutical_biotechnology'
2165
+ # ======================================================================= #
2166
+ # === molekulare_infektionsbiologie
2167
+ # ======================================================================= #
2168
+ when '194',
2169
+ 'infektionsbiologie',
2170
+ 'infektion',
2171
+ 'infekt',
2172
+ 'infek',
2173
+ 'molinfekt',
2174
+ 'molinf',
2175
+ 'parasit',
2176
+ 'parasiten',
2177
+ 'parasitologie',
2178
+ /^molekulare(_|-| |,)?infektionsbiologie$/i,
2179
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?molecular(_|-| |,)?infection(_|-| |,)?biology$/i,
2180
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?mo$/i,
2181
+ /^parasites?$/i,
2182
+ /^infections?$/i,
2183
+ /^molecular(_|-| |,)?infection(_|-| |,)?biology$/i
2184
+ 'parasitic_diseases_and_molecular_infection_biology'
2185
+ # ======================================================================= #
2186
+ # === structural_bioinformatics
2187
+ # ======================================================================= #
2188
+ when '195',
2189
+ /^structural(_|-| |,)?bioinformatics$/i,
2190
+ 'struktbioinf',
2191
+ 'structbioinf',
2192
+ 'strubioinfo',
2193
+ 'strubinf',
2194
+ 'struktbioinfo',
2195
+ 'strubiinf',
2196
+ 'strubioinf',
2197
+ 'strubioinformatic',
2198
+ 'strubioinformatics',
2199
+ 'strukturinformatik',
2200
+ 'structbio',
2201
+ /^strukturbioinf\??$/,
2202
+ /bioinf2$/i # This variant may be changed eventually.
2203
+ 'structural_bioinformatics'
2204
+ # ======================================================================= #
2205
+ # === food_microbiology
2206
+ # ======================================================================= #
2207
+ when '196',
2208
+ /^food(_|-| |,)?microbiology$/i,
2209
+ /^food(_|-| |,)?biotechnology$/i,
2210
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?food(_|-| |,)?biotechnology$/i,
2211
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?foo$/i,
2212
+ /^food(_|-| |,)?biotech$/i
2213
+ 'food_microbiology_and_food_biotechnology'
2214
+ # ======================================================================= #
2215
+ # === projektmanagement
2216
+ # ======================================================================= #
2217
+ when '197',
2218
+ /^proje(c|k)tmanagement$/i,
2219
+ /^pmanagement$/i,
2220
+ 'pman'
2221
+ 'projektmanagement'
2222
+ # ======================================================================= #
2223
+ # === cell_cultures
2224
+ # ======================================================================= #
2225
+ when '198',
2226
+ /^cell(_|-| |,)?cultures?\??$/i,
2227
+ /^cell(_|-| |,)?culturing\??$/i,
2228
+ 'cellu',
2229
+ 'cellcu'
2230
+ 'cell_cultures'
2231
+ # ======================================================================= #
2232
+ # === chemotaxis_and_motility_in_prokaryotes
2233
+ # ======================================================================= #
2234
+ when '199',
2235
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
2236
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility$/i,
2237
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility_?$/i,
2238
+ /^chemotaxie?s,?(_|-| |,)?quorum(_|-| |,)?sensing(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
2239
+ /^chemotaxis\??$/i,
2240
+ /^quorum(_|-| |,)?sensing$/i,
2241
+ /^quorum\??$/i,
2242
+ 'chemo?',
2243
+ 'chemo',
2244
+ 'flagella',
2245
+ /^flag\??$/i
2246
+ 'chemotaxis_quorum_sensing_and_motility_in_prokaryotes'
2247
+ # ======================================================================= #
2248
+ # === cellular_transport_and_protein_secretion
2249
+ # ======================================================================= #
2250
+ when '200',
2251
+ /^cellular(_|-| |,)?transport$/i,
2252
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?protein(_|-| |,)?secretion$/i,
2253
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?pr$/i
2254
+ 'cellular_transport_and_protein_secretion'
2255
+ # ======================================================================= #
2256
+ # === elisa
2257
+ # ======================================================================= #
2258
+ when '201',
2259
+ /^elisa$/i
2260
+ 'elisa'
2261
+ # ======================================================================= #
2262
+ # === transcription
2263
+ # ======================================================================= #
2264
+ when '202',
2265
+ /^transc?ription$/i,
2266
+ /^transkription$/i,
2267
+ /^qa(_|-| |,)?transcription\??$/i
2268
+ 'transcription'
2269
+ # ======================================================================= #
2270
+ # === toxikologie
2271
+ # ======================================================================= #
2272
+ when '203',
2273
+ /^toxikologie$/i,
2274
+ /^toxiko$/i,
2275
+ /^qatox\??$/i,
2276
+ 'toxi',
2277
+ 'tox',
2278
+ 'toxin',
2279
+ 'toxic'
2280
+ 'toxikologie'
2281
+ # ======================================================================= #
2282
+ # === biomarkers
2283
+ # ======================================================================= #
2284
+ when '204',
2285
+ /^biomarkers?$/i,
2286
+ 'bioma'
2287
+ 'biomarkers'
2288
+ # ======================================================================= #
2289
+ # === fluorescence_microscopy
2290
+ # ======================================================================= #
2291
+ when '205',
2292
+ /^fluorescence(_|-| |,)?microscopy\??$/i,
2293
+ /^fluorescence(_|-| |,)?microscope\??$/i,
2294
+ 'fluor'
2295
+ 'fluorescence_microscopy'
2296
+ # ======================================================================= #
2297
+ # === html
2298
+ # ======================================================================= #
2299
+ when '206',
2300
+ /^html\??$/i
2301
+ 'html'
2302
+ # ======================================================================= #
2303
+ # === scientific_writing
2304
+ # ======================================================================= #
2305
+ when '207',
2306
+ /^scientific(_|-| |,)?writing$/i,
2307
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?publishing$/i,
2308
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?pu$/i,
2309
+ 'scientific'
2310
+ 'scientific_writing_and_publishing'
2311
+ # ======================================================================= #
2312
+ # === geography
2313
+ # ======================================================================= #
2314
+ when '208',
2315
+ /^geography$/i,
2316
+ /^geographie$/i
2317
+ 'geography'
2318
+ # ======================================================================= #
2319
+ # === excel
2320
+ # ======================================================================= #
2321
+ when '209',
2322
+ /^excel$/i
2323
+ 'excel'
2324
+ # ======================================================================= #
2325
+ # === splicing
2326
+ # ======================================================================= #
2327
+ when '210',
2328
+ /^splicing$/i,
2329
+ /^introns$/i,
2330
+ /^exons$/i,
2331
+ /^splice$/i,
2332
+ /^spliceosome$/i,
2333
+ /^splicing(_|-| |,)?(_|-| |,)?exons(_|-| |,)?and(_|-| |,)?introns$/i,
2334
+ /^splicing(_|-| |,)?(_|-| |,)?exons(_|-| |,)?and(_|-| |,)?intro$/i
2335
+ 'splicing_exons_and_introns'
2336
+ # ======================================================================= #
2337
+ # === the_microbiome
2338
+ # ======================================================================= #
2339
+ when '211',
2340
+ /^microbiome?$/i,
2341
+ /^the(_|-| |,)?microbiome$/i,
2342
+ /^human(_|-| |,)?microbiome\??$/i,
2343
+ 'mome'
2344
+ 'the_microbiome'
2345
+ # ======================================================================= #
2346
+ # === citratzyklus
2347
+ # ======================================================================= #
2348
+ when '212',
2349
+ 'citratzyklus',
2350
+ /^citric(_|-| |,)?acid(_|-| |,)?cycle$/i,
2351
+ /^citric(_|-| |,)?cycle$/i,
2352
+ /^the(_|-| |,)?citric(_|-| |,)?acid(_|-| |,)?cycle$/i,
2353
+ /^CAC\??$/i,
2354
+ 'citric',
2355
+ 'citrat'
2356
+ 'citric_acid_cycle'
2357
+ # ======================================================================= #
2358
+ # === peroxisomes
2359
+ # ======================================================================= #
2360
+ when '213',
2361
+ /^peroxisomes$/i,
2362
+ /^peroxisomes(_|-| |,)?(_|-| |,)?glycosomes(_|-| |,)?and(_|-| |,)?lysosomes$/i,
2363
+ /^peroxisomes(_|-| |,)?(_|-| |,)?glycosomes(_|-| |,)?a$/i
2364
+ 'peroxisomes_glycosomes_and_lysosomes'
2365
+ # ======================================================================= #
2366
+ # === messtechnik_und_regeltechnik
2367
+ # ======================================================================= #
2368
+ when '214',
2369
+ 'mess',
2370
+ /^messtechnik$/i,
2371
+ /^regeltechnik$/i,
2372
+ /^messtechnik(_|-| |,)?und(_|-| |,)?regeltechnik$/i,
2373
+ /^messtechnik(_|-| |,)?und(_|-| |,)?regeltech$/i
2374
+ 'messtechnik_und_regeltechnik'
2375
+ # ======================================================================= #
2376
+ # === betriebswirtschaftslehre
2377
+ # ======================================================================= #
2378
+ when '215',
2379
+ /^betriebswirtschaftslehre\??$/i,
2380
+ /^betriebswirtschaf\??$/i,
2381
+ /^betrieb\??$/i,
2382
+ /^betriebswirtschaft\??$/i,
2383
+ /^qabetrieb\??$/i
2384
+ 'betriebswirtschaftslehre'
2385
+ # ======================================================================= #
2386
+ # === forensik
2387
+ # ======================================================================= #
2388
+ when '216',
2389
+ /^forensik$/i
2390
+ 'forensik'
2391
+ # ======================================================================= #
2392
+ # === gluconeogenesis
2393
+ # ======================================================================= #
2394
+ when '217','gluco',
2395
+ 'gluconeo',
2396
+ 'gluconeogenese',
2397
+ /^gluconeogenesis\??$/i,
2398
+ /^-?-?Die(_|-| |,)?gluconeogenesis\??$/i
2399
+ 'gluconeogenesis'
2400
+ # ======================================================================= #
2401
+ # === netzwerke
2402
+ # ======================================================================= #
2403
+ when '218',
2404
+ /^netzwerke\??$/i,
2405
+ /^networks\??$/i,
2406
+ /^-?-?computer(_|-| |,)?networks$/
2407
+ 'netzwerke'
2408
+ # ======================================================================= #
2409
+ # === advanced_topics_in_plant_sciences
2410
+ # ======================================================================= #
2411
+ when '219',
2412
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant(_|-| |,)?sciences\??$/i,
2413
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant(_|-| |,)?s?$/i,
2414
+ /^advanced(_|-| |,)?plants$/i,
2415
+ 'pflanzen2',
2416
+ 'plant2',
2417
+ 'plant3',
2418
+ 'plants2',
2419
+ 'plants3'
2420
+ 'advanced_topics_in_plant_sciences'
2421
+ # ======================================================================= #
2422
+ # === macroeconomics
2423
+ # ======================================================================= #
2424
+ when '220',
2425
+ /^macro(_|-| |,)?economics\??$/i,
2426
+ 'macroeconomy',
2427
+ /^makroökonomie$/i
2428
+ 'macroeconomics'
2429
+ # ======================================================================= #
2430
+ # === linux
2431
+ # ======================================================================= #
2432
+ when '221',
2433
+ /^linux\??$/i,
2434
+ /^linux(_|-| |,)?and(_|-| |,)?unix\??$/i
2435
+ 'linux_and_unix'
2436
+ # ======================================================================= #
2437
+ # === object_oriented_modeling
2438
+ # ======================================================================= #
2439
+ when '222',
2440
+ /^object(_|-| |,)?oriented(_|-| |,)?modeling\??$/i,
2441
+ /^objekt(_|-| |,)?orientiertes(_|-| |,)?modellieren\??$/i,
2442
+ /^objekt(_|-| |,)?orientiertes(_|-| |,)?model\??$/i,
2443
+ /^OOP\??$/i
2444
+ 'object_oriented_modeling'
2445
+ # ======================================================================= #
2446
+ # === patent_law
2447
+ # ======================================================================= #
2448
+ when '223',
2449
+ /^patent(_|-| |,)?law\??$/i,
2450
+ 'plaw',
2451
+ 'patent'
2452
+ 'patent_law'
2453
+ # ======================================================================= #
2454
+ # === glyoxylatzyklus
2455
+ # ======================================================================= #
2456
+ when '224',
2457
+ /^glyoxylatzyklus\??$/i,
2458
+ /^glyoxylat\??$/i,
2459
+ 'glyoxy'
2460
+ 'glyoxylatzyklus'
2461
+ # ======================================================================= #
2462
+ # === the_universe
2463
+ # ======================================================================= #
2464
+ when '225',
2465
+ /^universe\??$/i,
2466
+ /^the(_|-| |,)?universe\??$/i
2467
+ 'the_universe'
2468
+ # ======================================================================= #
2469
+ # === computer_graphics
2470
+ # ======================================================================= #
2471
+ when '226',
2472
+ /^computer(_|-| |,)?graphics\??$/i,
2473
+ /^computer(_|-| |,)?vision(_|-| |,)?and(_|-| |,)?computer(_|-| |,)?graphics\??$/i,
2474
+ /^computer(_|-| |,)?vision$/i,
2475
+ /^visual$/i
2476
+ 'computer_vision_and_computer_graphics'
2477
+ # ======================================================================= #
2478
+ # === nutztierethologie
2479
+ # ======================================================================= #
2480
+ when '227',
2481
+ /^nutztierethologie\??$/i
2482
+ 'nutztierethologie'
2483
+ # ======================================================================= #
2484
+ # === chemische_technologie_organischer_stoffe
2485
+ # ======================================================================= #
2486
+ when '228',
2487
+ 'chemtech2',
2488
+ /^chem(_|-| |,)?org\??$/i,
2489
+ /^chemische(_|-| |,)?technologie(_|-| |,)?organischer(_|-| |,)?stoffe$/i,
2490
+ /^techorgc$/i,
2491
+ /^techchem2$/i
2492
+ 'chemische_technologie_organischer_stoffe'
2493
+ # ======================================================================= #
2494
+ # === cellulose
2495
+ # ======================================================================= #
2496
+ when '229',
2497
+ /^cellulose$/i
2498
+ 'cellulose'
2499
+ # ======================================================================= #
2500
+ # === microcontroller
2501
+ # ======================================================================= #
2502
+ when '230',
2503
+ /^mi(c|k)rocontrollers?$/i,
2504
+ /^electronics?$/i # <- This may be moved at a later point in time.
2505
+ 'microcontrollers'
2506
+ # ======================================================================= #
2507
+ # === mitochondria
2508
+ # ======================================================================= #
2509
+ when '231',
2510
+ /^mitochondria$/i,
2511
+ /^mitochondrien$/i,
2512
+ /^mtDNA$/i
2513
+ 'mitochondria'
2514
+ # ======================================================================= #
2515
+ # === stickstofffixierung
2516
+ # ======================================================================= #
2517
+ when '232',
2518
+ /^stickstofff?ixierung$/i,
2519
+ /^stickstofff?$/i
2520
+ 'stickstofffixierung'
2521
+ # ======================================================================= #
2522
+ # === Protein Engineering
2523
+ # ======================================================================= #
2524
+ when '233',
2525
+ /^protein(_|-| |,)?engineering\??$/i
2526
+ 'protein_engineering'
2527
+ # ======================================================================= #
2528
+ # === Cytokines
2529
+ # ======================================================================= #
2530
+ when '234',
2531
+ /^cytokines?\??$/i,
2532
+ /^chemokines?\??$/i,
2533
+ /^chemokines(_|-| |,)?and(_|-| |,)?cytokines$/i
2534
+ 'chemokines_and_cytokines'
2535
+ # ======================================================================= #
2536
+ # === Urea cycle
2537
+ # ======================================================================= #
2538
+ when '235',
2539
+ /^urea(_|-| |,)?cycle\??$/i,
2540
+ /^the(_|-| |,)?urea(_|-| |,)?cycle\??$/i,
2541
+ /^urea\??$/i
2542
+ 'urea_cycle'
2543
+ # ======================================================================= #
2544
+ # === Pentosephosphatweg
2545
+ # ======================================================================= #
2546
+ when '236',
2547
+ /^Pentosephosphatweg\??$/i,
2548
+ /^Pentosephosphat\??$/i,
2549
+ /^pentose$/,
2550
+ /^pentose(_|-| |,)?phospho?ate(_|-| |,)?pathway\??$/i
2551
+ 'pentosephosphatweg'
2552
+ # ======================================================================= #
2553
+ # === Glykogen
2554
+ # ======================================================================= #
2555
+ when '237',
2556
+ /^Glykogen\??$/i,
2557
+ /^Glycogen\??$/i
2558
+ 'glycogen'
2559
+ # ======================================================================= #
2560
+ # === Proteolyse
2561
+ # ======================================================================= #
2562
+ when '238',
2563
+ /^Proteolyse\??$/i,
2564
+ /^proteolysis\??$/i
2565
+ 'proteolyse'
2566
+ # ======================================================================= #
2567
+ # === Geometrie
2568
+ # ======================================================================= #
2569
+ when '239',
2570
+ /^geometrie\??$/i,
2571
+ /^geometry\??$/i
2572
+ 'geometrie'
2573
+ # ======================================================================= #
2574
+ # === Atomemissionsspektrometrie
2575
+ # ======================================================================= #
2576
+ when '240',
2577
+ /^atomemissionsspektrometrie\??$/i
2578
+ 'atomemissionsspektrometrie'
2579
+ # ======================================================================= #
2580
+ # === Kryptographie
2581
+ # ======================================================================= #
2582
+ when '241',
2583
+ /^kryptographie\??$/i
2584
+ 'kryptographie'
2585
+ # ======================================================================= #
2586
+ # === protozoans
2587
+ # ======================================================================= #
2588
+ when '242',
2589
+ /^protozoans?$/i,
2590
+ /^protista\??$/i,
2591
+ /^protists?$/i
2592
+ 'protozoans'
2593
+ # ======================================================================= #
2594
+ # === Thermodynamics
2595
+ # ======================================================================= #
2596
+ when '243',
2597
+ /^thermodynamics\??$/i,
2598
+ /^thermodynamik?$/i,
2599
+ /^thermodynamic$/i
2600
+ 'thermodynamics'
2601
+ # ======================================================================= #
2602
+ # === Cellular Vesicles
2603
+ # ======================================================================= #
2604
+ when '244',
2605
+ /^cellular(_|-| |,)?vesicles\??$/i
2606
+ 'cellular_vesicles'
2607
+ # ======================================================================= #
2608
+ # === Meteorologie
2609
+ # ======================================================================= #
2610
+ when '245',
2611
+ /^meteorologie(_|-| |,)?und(_|-| |,)?atmosphäre$/i,
2612
+ /^meteorologie\??$/i,
2613
+ /^wetter\??$/i
2614
+ 'meteorologie_und_atmosphäre'
2615
+ # ======================================================================= #
2616
+ # === erste_hilfe
2617
+ # ======================================================================= #
2618
+ when '246',
2619
+ /^erste(_|-| |,)?hilfe\??$/i,
2620
+ /^qaerste(_|-| |,)?hilfe\??$/i,
2621
+ /^erste$/i
2622
+ 'erste_hilfe'
2623
+ # ======================================================================= #
2624
+ # === marketing
2625
+ # ======================================================================= #
2626
+ when '247',
2627
+ /^marketing$/i
2628
+ 'marketing'
2629
+ # ======================================================================= #
2630
+ # === birds
2631
+ # ======================================================================= #
2632
+ when '248',
2633
+ /^birds$/i
2634
+ 'birds'
2635
+ # ======================================================================= #
2636
+ # === advanced_immunology
2637
+ # ======================================================================= #
2638
+ when '249',
2639
+ /^advanced(_|-| |,)?immunology$/i,
2640
+ /^advanced(_|-| |,)?immuno?$/i,
2641
+ 'imm2',
2642
+ /^qa(_|-| |,)?imm2?$/i
2643
+ 'advanced_immunology'
2644
+ # ======================================================================= #
2645
+ # === archaeo_viruses
2646
+ # ======================================================================= #
2647
+ when '250',
2648
+ /^archaeo(_|-| |,)?viruses$/i,
2649
+ /^viruses(_|-| |,)?of(_|-| |,)?archaea$/i
2650
+ 'archaeo_viruses'
2651
+ # ======================================================================= #
2652
+ # === light_microscopy
2653
+ # ======================================================================= #
2654
+ when '251',
2655
+ /^light(_|-| |,)?microscop(e|y)$/i,
2656
+ /^licht(_|-| |,)?mikroskop$/i
2657
+ 'light_microscopy'
2658
+ # ======================================================================= #
2659
+ # === verhaltensbiologie
2660
+ # ======================================================================= #
2661
+ when '252',
2662
+ /^verhaltensbiologie$/i,
2663
+ /^cognition\??$/i,
2664
+ 'verhalten',
2665
+ 'ethologie'
2666
+ 'verhaltensbiologie'
2667
+ # ======================================================================= #
2668
+ # === robotics
2669
+ # ======================================================================= #
2670
+ when '253',
2671
+ /^robotics?$/i,
2672
+ /^robotiks?$/i
2673
+ 'robotics'
2674
+ # ======================================================================= #
2675
+ # === electron_microscopy
2676
+ # ======================================================================= #
2677
+ when '254',
2678
+ /^electron(_|-| |,)?microscopy$/i
2679
+ 'electron_microscopy'
2680
+ # ======================================================================= #
2681
+ # === Sozialbiologie
2682
+ # ======================================================================= #
2683
+ when '255',
2684
+ /^Sozialbiologie$/i
2685
+ 'sozialbiologie'
2686
+ # ======================================================================= #
2687
+ # === Neuroanatomie
2688
+ # ======================================================================= #
2689
+ when '256',
2690
+ /^Neuroanatomie$/i,
2691
+ /^qa(_|-| |,)?neuroanatomie\??$/i
2692
+ 'neuroanatomie'
2693
+ # ======================================================================= #
2694
+ # === programming
2695
+ # ======================================================================= #
2696
+ when '257',
2697
+ /^programming\??$/i,
2698
+ /^qa(_|-| |,)?programming\??$/i
2699
+ 'programming'
2700
+ # ======================================================================= #
2701
+ # === technik
2702
+ # ======================================================================= #
2703
+ when '258',
2704
+ /^technik\??$/i,
2705
+ /^qa(_|-| |,)?technik\??$/i
2706
+ 'technik'
2707
+ # ======================================================================= #
2708
+ # === biomedical_studies
2709
+ # ======================================================================= #
2710
+ when '259',
2711
+ /^biomedical(_|-| |,)?studies\??$/i
2712
+ 'biomedical_studies'
2713
+ # ======================================================================= #
2714
+ # === soziologie
2715
+ # ======================================================================= #
2716
+ when '260',
2717
+ /^soziologie\??$/i
2718
+ 'soziologie'
2719
+ # ======================================================================= #
2720
+ # === sport-und-sportverletzungen
2721
+ # ======================================================================= #
2722
+ when '261',
2723
+ /^sport(_|-| |,)?und(_|-| |,)?sportverletzungen\??$/i
2724
+ 'sport_und_sportverletzungen'
2725
+ # ======================================================================= #
2726
+ # === Archaeology
2727
+ # ======================================================================= #
2728
+ when '262',
2729
+ 'archaeology',
2730
+ /^archaelogy\??$/i,
2731
+ /^archaelogie\??$/i,
2732
+ 'latest',
2733
+ 'last' # ← These two entries have to be adjusted manually to the last entry point. (last tag)
2734
+ 'archaeology'
2735
+ else
2736
+ if be_verbose and !i.to_s.empty?
2737
+ pp caller()
2738
+ puts "In the method Studium.find_corresponding_exam_topic(), we did "\
2739
+ "not find any match for:"
2740
+ puts " `#{i}` (Encoding: #{i.encoding.to_s}."
2741
+ end
2742
+ false # We did not find anything.
2743
+ end
2744
+ end; self.instance_eval { alias sanitize_topic find_corresponding_exam_topic } # === Studium.sanitize_topic
2745
+ self.instance_eval { alias sanitize_this_potential_exam_topic find_corresponding_exam_topic } # === Studium.sanitize_this_potential_exam_topic
2746
+ self.instance_eval { alias exam_topic_completion find_corresponding_exam_topic } # === Studium.exam_topic_completion
2747
+ self.instance_eval { alias expand_this_exam_topic find_corresponding_exam_topic } # === Studium.expand_this_exam_topic
2748
+ self.instance_eval { alias expand_exam_topic find_corresponding_exam_topic } # === Studium.expand_exam_topic
2749
+
2750
+ # ========================================================================= #
2751
+ # === Studium.find_corresponding_exam_title
2752
+ #
2753
+ # This will return the corresponding exam title. It will pass the input
2754
+ # through Studium.find_corresponding_exam_topic().
2755
+ #
2756
+ # Usage examples:
2757
+ #
2758
+ # title = Studium.find_corresponding_exam_title('technische_grundlagen_der_informatik') # => "Technische Grundlagen der Informatik"
2759
+ # title = Studium.find_corresponding_exam_title('mphysio') # => "Mikrobielle Physiologie"
2760
+ #
2761
+ # ========================================================================= #
2762
+ def self.find_corresponding_exam_title(
2763
+ i, be_verbose = true
2764
+ )
2765
+ i = i.to_s.downcase
2766
+ # ======================================================================= #
2767
+ # First, pass the input through a filter:
2768
+ # ======================================================================= #
2769
+ i = ::Studium.find_corresponding_exam_topic(i, be_verbose)
2770
+ # ======================================================================= #
2771
+ # Next we can pass it in via a simple menu here:
2772
+ # ======================================================================= #
2773
+ i = case i
2774
+ # ======================================================================= #
2775
+ # === basic_virology
2776
+ # ======================================================================= #
2777
+ when 'basic_virology'
2778
+ 'Virologie Allgemein'
2779
+ # ======================================================================= #
2780
+ # === advanced_topics_in_plant_sciences
2781
+ # ======================================================================= #
2782
+ when /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant(_|-| |,)?sciences\??$/i,
2783
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant$/i
2784
+ 'Advanced topics in plant sciences'
2785
+ # ======================================================================= #
2786
+ # === basic_chemistry
2787
+ # ======================================================================= #
2788
+ when 'basic_chemistry'
2789
+ 'Chemie'
2790
+ # ======================================================================= #
2791
+ # === allgemeine_mikrobiologie
2792
+ # ======================================================================= #
2793
+ when 'allgemeine_mikrobiologie'
2794
+ 'Allgemeine Mikrobiologie'
2795
+ # ======================================================================= #
2796
+ # === embryologie_und_entwicklung
2797
+ # ======================================================================= #
2798
+ when 'embryologie_und_entwicklung'
2799
+ 'Entwicklungsbiologie'
2800
+ # ======================================================================= #
2801
+ # === computer
2802
+ # ======================================================================= #
2803
+ when 'computer',
2804
+ /^computer(_|-| |,)?science$/i
2805
+ 'Computer Science'
2806
+ # ======================================================================= #
2807
+ # === Meteorologie und Atmosphäre
2808
+ # ======================================================================= #
2809
+ when /^meteorologie(_|-| |,)?und(_|-| |,)?atmosphäre$/i
2810
+ 'Meteorologie und Atmosphäre'
2811
+ # ======================================================================= #
2812
+ # === pflanzenwissenschaften
2813
+ # ======================================================================= #
2814
+ when 'pflanzenwissenschaften',
2815
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der$/i
2816
+ 'Struktur und Funktion der Pflanzen'
2817
+ when 'allgemeine_genetik'
2818
+ 'Allgemeine Genetik'
2819
+ # ======================================================================= #
2820
+ # === Basic Biotechnology
2821
+ # ======================================================================= #
2822
+ when 'basic_biotechnology',
2823
+ /^basic(_|-| |,)?biotechnology$/i
2824
+ 'Biotechnologie'
2825
+ # ======================================================================= #
2826
+ # === neurobiology
2827
+ # ======================================================================= #
2828
+ when 'neurobiology'
2829
+ 'Neurobiologie'
2830
+ when 'zoologie'
2831
+ 'Allgemeine Zoologie'
2832
+ # ======================================================================= #
2833
+ # === medizin
2834
+ # ======================================================================= #
2835
+ when 'medizin',
2836
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinische(_|-| |,)?technik$/i
2837
+ 'Medizin und biomedizinische Technik'
2838
+ # ======================================================================= #
2839
+ # === protein engineering
2840
+ # ======================================================================= #
2841
+ when 'protein_engineering'
2842
+ 'Protein Engineering'
2843
+ # ======================================================================= #
2844
+ # === organische_chemie
2845
+ # ======================================================================= #
2846
+ when 'organische_chemie'
2847
+ 'Organische Chemie'
2848
+ when 'analytische_chemie_1'
2849
+ 'Analytische Chemie'
2850
+ # ======================================================================= #
2851
+ # === ecology
2852
+ # ======================================================================= #
2853
+ when 'ecology'
2854
+ 'Ökologie'
2855
+ # ======================================================================= #
2856
+ # === physiologie
2857
+ # ======================================================================= #
2858
+ when 'physiologie',
2859
+ /^physiology(_|-| |,)?and(_|-| |,)?histology$/i
2860
+ 'Physiology and Histology'
2861
+ # ======================================================================= #
2862
+ # === vektoren
2863
+ # ======================================================================= #
2864
+ when 'vektoren',
2865
+ /^vectors(_|-| |,)?and(_|-| |,)?gene(_|-| |,)?therapy$/i
2866
+ 'Vektoren in der Gentechnologie'
2867
+ # ======================================================================= #
2868
+ # === ageing
2869
+ # ======================================================================= #
2870
+ when 'ageing'
2871
+ 'Aging'
2872
+ when 'bioprozesstechnik'
2873
+ 'Bioprozesstechnik'
2874
+ when 'technische_mikrobiologie'
2875
+ 'TU Wien Microbiology'
2876
+ # === cellbiology
2877
+ when 'cellbiology'
2878
+ 'Cellbiology'
2879
+ when 'physikalische_chemie'
2880
+ 'Physikalische Chemie'
2881
+ when 'analytische_chemie_2'
2882
+ 'Analytische Chemie 2'
2883
+ when 'gentechnik',/gentechnik_?und_?praktische_?biochemie$/
2884
+ 'Gentechnik und praktische Biochemie'
2885
+ when 'festkörperchemie','festkÖrperchemie',
2886
+ 'geochemistry',
2887
+ 'festkörper'
2888
+ 'Festkörper Chemie und Geochemie'
2889
+ when 'geologie',
2890
+ 'geologie_und_mineralogie'
2891
+ 'Geologie und Mineralogie'
2892
+ when 'anorganische_chemie'
2893
+ 'Anorganische Chemie'
2894
+ when 'law','rechtsgrundlagen'
2895
+ 'Rechtsgrundlagen'
2896
+ when 'organische_chemie_2'
2897
+ 'Organische Chemie 2'
2898
+ when 'biologie_des_wasser','wasserkunde'
2899
+ 'Wasserkunde'
2900
+ when 'technische_chemie'
2901
+ 'Technische Chemie'
2902
+ when 'signal_transduction',
2903
+ /^signal(_|-| |,)?transduction(_|-| |,)?and(_|-| |,)?laser(_|-| |,)?systems$/i
2904
+ 'Signaltransduktion und Lasersysteme'
2905
+ when 'paleobiology'
2906
+ 'Paläobiologie'
2907
+ when 'medizinische_chemie',
2908
+ /^medizinische(_| )?chemie(_| )?und(_| )?pharmazie$/
2909
+ 'Medizinische Chemie und Pharmazie'
2910
+ when 'cancerbiology'
2911
+ 'Cancer'
2912
+ # ======================================================================= #
2913
+ # === cytogenetik
2914
+ # ======================================================================= #
2915
+ when 'cytogenetik',
2916
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromosome(_|-| |,)?biology$/i
2917
+ 'Cytogenetics and Chromosome Biology'
2918
+ # ======================================================================= #
2919
+ # === urea_cycle
2920
+ # ======================================================================= #
2921
+ when /^urea(_|-| |,)?cycle\??$/i
2922
+ 'The Urea Cycle'
2923
+ # ======================================================================= #
2924
+ # === erste_hilfe
2925
+ # ======================================================================= #
2926
+ when /^erste(_|-| |,)?hilfe\??$/i
2927
+ 'Erste Hilfe'
2928
+ # ======================================================================= #
2929
+ # === statistik
2930
+ # ======================================================================= #
2931
+ when 'statistik',
2932
+ /^qastatistik\??$/i
2933
+ 'Statistik'
2934
+ when 'basic_biochemistry'
2935
+ 'Basic Biochemistry'
2936
+ when 'advanced_biochemistry'
2937
+ 'Advanced Biochemistry'
2938
+ when 'fortgeschrittene_physik'
2939
+ 'Fortgeschrittene Physik'
2940
+ # ======================================================================= #
2941
+ # === advanced_biotechnology
2942
+ # ======================================================================= #
2943
+ when 'advanced_biotechnology'
2944
+ 'Advanced Biotechnology'
2945
+ # ======================================================================= #
2946
+ # === bioanalytik
2947
+ # ======================================================================= #
2948
+ when 'bioanalytik',
2949
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensoren$/
2950
+ 'Bioanalytik und Biosensoren'
2951
+ # ======================================================================= #
2952
+ # === /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/
2953
+ # ======================================================================= #
2954
+ when 'genomics',
2955
+ /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/
2956
+ 'Genomik und Metagenomik'
2957
+ # ======================================================================= #
2958
+ # === netzwerke
2959
+ # ======================================================================= #
2960
+ when /^netzwerke\??$/i,
2961
+ /^-?-?computer(_|-| |,)?networks$/
2962
+ 'Computer networks'
2963
+ # ======================================================================= #
2964
+ # === clinical_microbiology
2965
+ # ======================================================================= #
2966
+ when /^clinical(_|-| |,)?microbiology$/
2967
+ 'Clinical Microbiology'
2968
+ # ======================================================================= #
2969
+ # === molekulare_medizin
2970
+ # ======================================================================= #
2971
+ when 'molekulare_medizin'
2972
+ 'Molekulare Medizin'
2973
+ # ======================================================================= #
2974
+ # === technisches_zeichnen
2975
+ # ======================================================================= #
2976
+ when /^technisches(_|-| |,)?zeichnen$/i
2977
+ 'Technisches Zeichnen'
2978
+ # ======================================================================= #
2979
+ # === evolution
2980
+ # ======================================================================= #
2981
+ when 'evolution',
2982
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionary(_|-| |,)?genetics$/i
2983
+ 'Evolution and Evolutionary Genetics'
2984
+ # ======================================================================= #
2985
+ # === rna_and_dna
2986
+ # ======================================================================= #
2987
+ when 'rna_and_dna'
2988
+ 'DNA und RNA'
2989
+ # ======================================================================= #
2990
+ # === research_topics_in_immunobiology
2991
+ # ======================================================================= #
2992
+ when 'research_topics_in_immunobiology'
2993
+ 'Research topics in Immunobiology'
2994
+ # ======================================================================= #
2995
+ # === prokaryote_genetics
2996
+ # ======================================================================= #
2997
+ when 'prokaryote_genetics'
2998
+ 'Prokaryote Genetics'
2999
+ when 'fortgeschrittene_gentechnik'
3000
+ 'Fortgeschrittene Gentechnik'
3001
+ when 'fortgeschrittene_genetik'
3002
+ 'Fortgeschrittene Genetik'
3003
+ when 'pcr'
3004
+ 'PCR'
3005
+ when 'populationsgenetik'
3006
+ 'Populationsgenetik'
3007
+ # ======================================================================= #
3008
+ # === ecogenetics
3009
+ # ======================================================================= #
3010
+ when 'ecogenetics'
3011
+ 'Ökogenetik'
3012
+ # ======================================================================= #
3013
+ # === chemisches_labor
3014
+ # ======================================================================= #
3015
+ when /^chemisches(_|-| |,)?labor$/i
3016
+ 'Chemisches Labor'
3017
+ # ======================================================================= #
3018
+ # === theoretische_chemie
3019
+ # ======================================================================= #
3020
+ when 'theoretische_chemie'
3021
+ 'Theoretische Chemie'
3022
+ # ======================================================================= #
3023
+ # === plant_biotechnology
3024
+ # ======================================================================= #
3025
+ when 'plant_biotechnology'
3026
+ 'Plant Biotechnology'
3027
+ when 'advanced_virology'
3028
+ 'Advanced Virology'
3029
+ when 'microbial_ecology'
3030
+ 'Mikrobielle Ökologie'
3031
+ # ======================================================================= #
3032
+ # === the_cellcycle
3033
+ # ======================================================================= #
3034
+ when 'the_cellcycle',
3035
+ /^the(_|-| |,)?cell(_|-| |,)?cycle$/i
3036
+ 'The Cellcycle'
3037
+ when 'bioressourcenmanagement'
3038
+ 'Bioressourcenmanagement'
3039
+ when /^object(_|-| |,)?oriented(_|-| |,)?modeling$/i
3040
+ 'Objekt-orientiertes Modellieren'
3041
+ when 'technical_ecology'
3042
+ 'Technische Ökologie'
3043
+ when 'agrar_ecology'
3044
+ 'Agrarökologie'
3045
+ when 'veterinary_medicine'
3046
+ 'Veterinärmedizin'
3047
+ when 'advanced_chemistry'
3048
+ 'Advanced Chemistry'
3049
+ when 'landtechnik'
3050
+ 'Grundlagen der Landtechnik'
3051
+ when 'agrarmarkt'
3052
+ 'Agrarmärkte'
3053
+ when 'human_ecology'
3054
+ 'Humanökologie'
3055
+ when 'quality_management'
3056
+ 'Quality Management'
3057
+ # ======================================================================= #
3058
+ # === artificial_intelligence
3059
+ # ======================================================================= #
3060
+ when 'artificial_intelligence'
3061
+ 'Artificial Intelligence'
3062
+ when 'translational_control',
3063
+ /^translation_?ribosomes_?and_?translational_?control$/
3064
+ 'Translation, Ribosomes and Translational Control'
3065
+ when 'posttranslationale_modifikation_von_proteinen'
3066
+ 'Posttranslationale Modifikation von Proteinen'
3067
+ when 'stemcells'
3068
+ 'Stammzellen'
3069
+ # ======================================================================= #
3070
+ # === plant_breeding
3071
+ # ======================================================================= #
3072
+ when 'plant_breeding'
3073
+ 'Pflanzenzüchtung (Plant Breeding)'
3074
+ when 'aminoacids'
3075
+ 'Amino Acids'
3076
+ # ======================================================================= #
3077
+ # === enzymes
3078
+ # ======================================================================= #
3079
+ when 'enzymes',
3080
+ /^enzymes(_|-| |,)?and(_|-| |,)?cofactors$/i
3081
+ 'Enzymes and Cofactors'
3082
+ when 'advanced_microbiology'
3083
+ 'Advanced Microbiology'
3084
+ when 'antibodies',/^antibodies(_|-| |,)?and(_|-| |,)?antigens$/
3085
+ 'Antibodies and Antigens'
3086
+ when 'molecular_biology_of_plants',
3087
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the$/i
3088
+ 'Molecular Biology of the Plant'
3089
+ when 'lebensmitteltechnologie'
3090
+ 'Lebensmitteltechnologie'
3091
+ when 'universe','the_universe'
3092
+ 'The Universe'
3093
+ when 'advanced_cellbiology'
3094
+ 'Advanced Cell Biology'
3095
+ # === insulin
3096
+ when 'insulin',
3097
+ /^insulin(_|-| |,)?and(_|-| |,)?diabetes$/
3098
+ 'Insulin and Diabetes'
3099
+ # === rna_seq
3100
+ when 'rna_seq'
3101
+ 'RNA Seq'
3102
+ # === innate_immunity
3103
+ when 'innate_immunity'
3104
+ 'Innate Immunity'
3105
+ when 'genetische_krankheiten'
3106
+ 'Genetische Krankheiten'
3107
+ when 'systematische_zoologie'
3108
+ 'Systematische Zoologie'
3109
+ when /^betriebssysteme?$/
3110
+ 'Betriebssysteme'
3111
+ when 'the_c_programming_language'
3112
+ 'The C Programming Language'
3113
+ when 'fish'
3114
+ 'FISH - Fluorescence in-situ hybridization'
3115
+ when 'ruby_on_rails'
3116
+ 'Ruby on Rails'
3117
+ when 'viral_vectors'
3118
+ 'Virale Vektoren'
3119
+ when 'plant_development'
3120
+ 'Plant Development'
3121
+ when 'grassland_cultivation','grünlandwirtschaft'
3122
+ 'Grünlandbewirtschaftung (Grassland cultivation)'
3123
+ when 'ecological_agriculture'
3124
+ 'Ökologische Landwirtschaft (Ecological Agriculture)'
3125
+ when 'the_european_union'
3126
+ 'The European Union'
3127
+ when 'lipids'
3128
+ 'Lipide'
3129
+ when 'nucleotide_sequencing'
3130
+ 'Nucleotide Sequencing'
3131
+ when 'databases','datenbanken','database',
3132
+ /^databases(_|-| |,)?and(_|-| |,)?sql$/
3133
+ 'Databases and SQL'
3134
+ when 'biological_therapeutics'
3135
+ 'Biological Therapeutics'
3136
+ # ======================================================================= #
3137
+ # === alcohols
3138
+ # ======================================================================= #
3139
+ when 'alcohols','alkohole'
3140
+ 'Alkohole'
3141
+ # ======================================================================= #
3142
+ # === mikrobielle_physiologie
3143
+ # ======================================================================= #
3144
+ when 'mikrobielle_physiologie'
3145
+ 'Mikrobielle Physiologie'
3146
+ # ======================================================================= #
3147
+ # === technische_grundlagen_der_informatik
3148
+ # ======================================================================= #
3149
+ when /^technische(_|-| |,)?grundlagen(_|-| |,)?der(_|-| |,)?informatik$/i
3150
+ 'Technische Grundlagen der Informatik'
3151
+ # ======================================================================= #
3152
+ # === patent_law
3153
+ # ======================================================================= #
3154
+ when /^patent(_|-| |,)?law\??$/i
3155
+ 'Patent Law'
3156
+ # ======================================================================= #
3157
+ # === the_c_plus_plus_programming_language
3158
+ # ======================================================================= #
3159
+ when 'the_c_plus_plus_programming_language'
3160
+ 'The C++ programming language'
3161
+ # ======================================================================= #
3162
+ # === semisynthese_von_proteinen_und_nukleotiden
3163
+ # ======================================================================= #
3164
+ when 'semisynthese_von_proteinen_und_nukleotiden',
3165
+ 'semisynthese_von_proteinen'
3166
+ 'Semisynthese von Proteinen und Nukleotiden'
3167
+ # ======================================================================= #
3168
+ # === naturschutz
3169
+ # ======================================================================= #
3170
+ when 'naturschutz',
3171
+ /^nature(_|-| |,)?conservation(_|-| |,)?and(_|-| |,)?biodiversity(_|-| |,)?$/i
3172
+ 'Naturschutz und Biodiversität'
3173
+ # ======================================================================= #
3174
+ # === biochips
3175
+ # ======================================================================= #
3176
+ when 'biochips',
3177
+ /^biochips(_|-| |,)?and(_|-| |,)?microarray$/i
3178
+ 'Biochips and Microarray'
3179
+ # ======================================================================= #
3180
+ # === urbanism
3181
+ # ======================================================================= #
3182
+ when 'urbanism','urbanism_and_traffic'
3183
+ 'Urbanism and Traffic'
3184
+ # ======================================================================= #
3185
+ # === vaccines_and_vaccination
3186
+ # ======================================================================= #
3187
+ when 'vaccines_and_vaccination'
3188
+ 'Vaccines and Vaccination'
3189
+ # ======================================================================= #
3190
+ # === glycolysis
3191
+ # ======================================================================= #
3192
+ when 'glycolysis',
3193
+ /^glycolysis\??$/i
3194
+ 'Die Glykolyse'
3195
+ # ======================================================================= #
3196
+ # === gluconeogenesis
3197
+ # ======================================================================= #
3198
+ when 'gluconeogenesis',
3199
+ 'gluco',
3200
+ /^gluconeogenesis\??$/i
3201
+ 'Die Gluconeogenesis'
3202
+ # ======================================================================= #
3203
+ # === rnai
3204
+ # ======================================================================= #
3205
+ when /^RNAi$/i,/^RNAi(_|-| |,)?siRNA(_|-| |,)?and(_|-| |,)?miRNA$/i,
3206
+ /^miRNA$/i
3207
+ 'RNAi, siRNA and miRNA'
3208
+ # ======================================================================= #
3209
+ # === mikrobielle_lebensgemeinschaften
3210
+ # ======================================================================= #
3211
+ when /^mikrobielle(_|-| |,)?lebensgemeinschaften$/
3212
+ 'Mikrobielle Lebensgemeinschaften'
3213
+ # ======================================================================= #
3214
+ # === theoretische_informatik
3215
+ # ======================================================================= #
3216
+ when /^theoretische(_|-| |,)?informatik$/
3217
+ 'Theoretische Informatik'
3218
+ # ======================================================================= #
3219
+ # === javascript
3220
+ # ======================================================================= #
3221
+ when 'javascript'
3222
+ 'JavaScript'
3223
+ # ======================================================================= #
3224
+ # === system_biology
3225
+ # ======================================================================= #
3226
+ when 'system_biology',
3227
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthetic(_|-| |,)?biology$/
3228
+ 'System Biology and Synthetic Biology'
3229
+ # ======================================================================= #
3230
+ # === architecture
3231
+ # ======================================================================= #
3232
+ when 'architecture',
3233
+ 'architektur'
3234
+ 'Architektur'
3235
+ # ======================================================================= #
3236
+ # === dna_replication
3237
+ # ======================================================================= #
3238
+ when 'dna_replication'
3239
+ 'DNA Replication'
3240
+ # ======================================================================= #
3241
+ # === endospores_and_spores
3242
+ # ======================================================================= #
3243
+ when 'endospores_and_spores',
3244
+ /^endosporen(_|-| |,)?und(_|-| |,)?sporen$/i
3245
+ 'Endosporen und Sporen'
3246
+ # ======================================================================= #
3247
+ # === the_bacterial_cell_wall
3248
+ # ======================================================================= #
3249
+ when 'the_bacterial_cell_wall'
3250
+ 'The bacterial cell wall'
3251
+ # ======================================================================= #
3252
+ # === biofilms
3253
+ # ======================================================================= #
3254
+ when 'biofilms'
3255
+ 'Biofilme'
3256
+ # ======================================================================= #
3257
+ # === bacteriophages
3258
+ # ======================================================================= #
3259
+ when 'bacteriophages','phages'
3260
+ 'Bakteriophagen'
3261
+ # ======================================================================= #
3262
+ # === dna_mutation_and_dna_repair
3263
+ # ======================================================================= #
3264
+ when /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa?i?r?$/,
3265
+ 'dna_mutation_and_dna_repair',
3266
+ 'mutation'
3267
+ 'DNA Mutation and DNA Repair'
3268
+ # ======================================================================= #
3269
+ # === the_interferon_system
3270
+ # ======================================================================= #
3271
+ when /^the(_|-| |,)?interferon(_|-| |,)?system$/i
3272
+ 'The Interferon system'
3273
+ # ======================================================================= #
3274
+ # === pharmazeutische_biotechnologie
3275
+ # ======================================================================= #
3276
+ when /^pharmazeutische(_|-| |,)?biotechnologie$/i,
3277
+ /^pharmaceutical(_|-| |,)?biotechnology$/i
3278
+ 'Pharmaceutical Biotechnology'
3279
+ # ======================================================================= #
3280
+ # === molekulare_infektionsbiologie
3281
+ # ======================================================================= #
3282
+ when /^molekulare(_|-| |,)?infektionsbiologie$/i,
3283
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?molecular(_|-| |,)?infection(_|-| |,)?biology$/i
3284
+ 'Parasitic Diseases and Molecular Infection Biology'
3285
+ # ======================================================================= #
3286
+ # === structural_bioinformatics
3287
+ # ======================================================================= #
3288
+ when /^structural(_|-| |,)?bioinformatics$/i
3289
+ 'Structural Bioinformatics'
3290
+ # ======================================================================= #
3291
+ # === computer_graphics
3292
+ # ======================================================================= #
3293
+ when /^computer(_|-| |,)?graphics$/i,
3294
+ /^computer(_|-| |,)?vision(_|-| |,)?and(_|-| |,)?computer(_|-| |,)?graphics$/i
3295
+ 'Computer Graphics'
3296
+ # ======================================================================= #
3297
+ # === food_microbiologiy
3298
+ # ======================================================================= #
3299
+ when /^food(_|-| |,)?microbiology$/i,
3300
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?food(_|-| |,)?biotechnology$/i
3301
+ 'Food Microbiology and Food Biotechnology'
3302
+ when 'chemische_technologie_anorganischer_stoffe'
3303
+ 'Chemische Technologie anorganischer Stoffe'
3304
+ # ======================================================================= #
3305
+ # === HTML
3306
+ # ======================================================================= #
3307
+ when 'html'
3308
+ 'HTML'
3309
+ # ======================================================================= #
3310
+ # === splicing_exons_and_introns
3311
+ # ======================================================================= #
3312
+ when /^splicing_exons_and_introns$/i
3313
+ 'Splicing, Exons and Introns'
3314
+ # ======================================================================= #
3315
+ # === cell_cultures
3316
+ # ======================================================================= #
3317
+ when /^cell(_|-| |,)?cultures$/i
3318
+ 'Cell cultures'
3319
+ # ======================================================================= #
3320
+ # === chemotaxis_and_motility_in_prokaryotes
3321
+ # ======================================================================= #
3322
+ when /^chemotaxis(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
3323
+ /^chemotaxie?s(_|-| |,)?quorum(_|-| |,)?sensing(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i
3324
+ 'Chemotaxis, Quorum sensing and motility in prokaryotes'
3325
+ # ======================================================================= #
3326
+ # === cellular_transport_and_protein_secretion
3327
+ # ======================================================================= #
3328
+ when /^cellular(_|-| |,)?transport/i,
3329
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?protein(_|-| |,)?secretion$/i
3330
+ 'Cellular transport and protein secretion'
3331
+ # ======================================================================= #
3332
+ # === elisa
3333
+ # ======================================================================= #
3334
+ when /^elisa$/i
3335
+ 'ELISA'
3336
+ # ======================================================================= #
3337
+ # === light_microscopy
3338
+ # ======================================================================= #
3339
+ when /^light(_|-| |,)?microscopy$/i
3340
+ 'Light Microscopy'
3341
+ # ======================================================================= #
3342
+ # === electron_microscopy
3343
+ # ======================================================================= #
3344
+ when /^electron(_|-| |,)?microscopy$/i
3345
+ 'Electron Microscopy'
3346
+ # ======================================================================= #
3347
+ # === mikroskopie
3348
+ # ======================================================================= #
3349
+ when 'mikroskope','mikroskopie',
3350
+ /^imaging(_|-| |,)?and(_|-| |,)?microscopy$/i
3351
+ 'Imaging and Microscopy'
3352
+ # ======================================================================= #
3353
+ # === scientific_writing
3354
+ # ======================================================================= #
3355
+ when /^scientific(_|-| |,)?writing$/i,
3356
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?publishing$/i
3357
+ 'Scientific writing and publishing'
3358
+ # ======================================================================= #
3359
+ # === peroxisomes
3360
+ # ======================================================================= #
3361
+ when /^peroxisomes$/i,
3362
+ /^peroxisomes(_|-| |,)?glycosomes(_|-| |,)?and(_|-| |,)?lysosomes\??$/i
3363
+ 'Peroxisomes, Glycosomes and Lysosomes'
3364
+ # ======================================================================= #
3365
+ # === the_microbiome
3366
+ # ======================================================================= #
3367
+ when /^the(_|-| |,)?microbiome$/i
3368
+ 'The Microbiome'
3369
+ # ======================================================================= #
3370
+ # === elektrotechnik
3371
+ # ======================================================================= #
3372
+ when /^elektrotechnik$/i,
3373
+ /^elektrotechnik(_|-| |,)?und(_|-| |,)?elektrizität$/i
3374
+ 'Elektrotechnik und Elektrizität'
3375
+ # ======================================================================= #
3376
+ # === cytokines
3377
+ # ======================================================================= #
3378
+ when /^cytokines$/i,
3379
+ /^chemokines(_|-| |,)?and(_|-| |,)?cytokines$/i
3380
+ 'Chemokines and Cytokines'
3381
+ # ======================================================================= #
3382
+ # === advanced_immunology
3383
+ # ======================================================================= #
3384
+ when /^advanced(_|-| |,)?immunology\??$/i
3385
+ 'Advanced Immunology'
3386
+ # ======================================================================= #
3387
+ # === archaeo-viruses
3388
+ # ======================================================================= #
3389
+ when /^archaeo(_|-| |,)?viruses\??$/i
3390
+ 'Viruses of Archaea'
3391
+ # ======================================================================= #
3392
+ # === fluorescence_microscopy
3393
+ # ======================================================================= #
3394
+ when /^fluorescence(_|-| |,)?microscopy\??$/i
3395
+ 'Fluorescence Microscopy'
3396
+ # ======================================================================= #
3397
+ # === sport_und_sportverletzungen
3398
+ # ======================================================================= #
3399
+ when /^sport(_|-| |,)?und(_|-| |,)?sportverletzungen$/i
3400
+ 'Sport und Sportverletzungen'
3401
+ # ======================================================================= #
3402
+ # === citric_acid_cycle
3403
+ # ======================================================================= #
3404
+ when /^citric(_|-| |,)?acid(_|-| |,)?cycle$/i
3405
+ 'Citric Acid Cycle'
3406
+ # ======================================================================= #
3407
+ # === mess_und_regeltechnik
3408
+ # ======================================================================= #
3409
+ when /^messtechnik(_|-| |,)?und(_|-| |,)?regeltechnik$/i
3410
+ 'Messtechnik und Regeltechnik'
3411
+ # ======================================================================= #
3412
+ # === cellular_vesicles
3413
+ # ======================================================================= #
3414
+ when /^cellular(_|-| |,)?vesicles$/i
3415
+ 'Cellular Vesicles'
3416
+ # ======================================================================= #
3417
+ # === lebensmittel_und_getränke
3418
+ # ======================================================================= #
3419
+ when /^lebensmittel(_|-| |,)?und(_|-| |,)?getränke$/i,
3420
+ /^lebensmittel$/i
3421
+ 'Lebensmittel und Getränke'
3422
+ # ======================================================================= #
3423
+ # === biomedical_studies
3424
+ # ======================================================================= #
3425
+ when /^biomedical(_|-| |,)?studies$/i
3426
+ 'Biomedical Studies'
3427
+ # ======================================================================= #
3428
+ # === abfall
3429
+ # ======================================================================= #
3430
+ when 'abfall',
3431
+ 'abfall_als_ressource'
3432
+ 'Abfall als Ressource'
3433
+ # ======================================================================= #
3434
+ # === linux_and_unix
3435
+ # ======================================================================= #
3436
+ when /^linux(_|-| |,)?and(_|-| |,)?unix\??$/i
3437
+ 'Linux and Unix'
3438
+ # ======================================================================= #
3439
+ # === python (and more)
3440
+ # ======================================================================= #
3441
+ when 'python','archaea','cyanobacteria','naturstoffe',
3442
+ 'biopolymers',
3443
+ 'bionik',
3444
+ 'vitamine',
3445
+ 'biomembranes',
3446
+ /^transcription$/,
3447
+ 'pflanzenanatomie',
3448
+ 'toxikologie',
3449
+ 'forensik',
3450
+ 'tierzucht',
3451
+ 'biomarkers',
3452
+ 'forstwirtschaft',
3453
+ 'java', # === java
3454
+ 'strukturbiologie',
3455
+ 'geschichte',
3456
+ 'wissenschaft',
3457
+ /^geography$/i,
3458
+ /^geographie$/i,
3459
+ 'informatik',
3460
+ /^excel$/i,
3461
+ 'sexualbiologie',
3462
+ 'betriebswirtschaftslehre',
3463
+ 'klima',
3464
+ 'macroeconomics',
3465
+ 'biomaterials',
3466
+ 'elektronenmikroskopie',
3467
+ 'allergie',
3468
+ 'prozesstechnik',
3469
+ 'glykomik',
3470
+ 'glyoxylatzyklus',
3471
+ 'weinbau',
3472
+ 'fungi',
3473
+ 'crispr',
3474
+ 'yeast',
3475
+ 'ruby',
3476
+ 'ethik',
3477
+ 'physik',
3478
+ 'anatomie',
3479
+ 'obstbau',
3480
+ 'hormone',
3481
+ 'nanotechnologie',
3482
+ 'management',
3483
+ 'bauwesen',
3484
+ 'economy',
3485
+ 'nutztierethologie',
3486
+ 'genexpression',
3487
+ 'apoptosis',
3488
+ 'immunologie',
3489
+ 'biophysik',
3490
+ 'pflanzenbau',
3491
+ 'elektrophorese',
3492
+ 'insekten',
3493
+ /^chemische(_|-| |,)?technologie(_|-| |,)?organischer(_|-| |,)?stoffe$/i,
3494
+ 'hygiene',
3495
+ 'cellulose',
3496
+ 'immunanalytik',
3497
+ 'immunoassay',
3498
+ 'microcontrollers',
3499
+ 'mitochondria',
3500
+ 'pflanzenschutz',
3501
+ /^projektmanagement$/i,
3502
+ 'mathematics',
3503
+ 'algorithms',
3504
+ 'psychologie',
3505
+ 'stickstofffixierung',
3506
+ 'epigenetik',
3507
+ 'pentosephosphatweg',
3508
+ 'bioelektrochemie',
3509
+ 'glycogen',
3510
+ 'proteolyse',
3511
+ 'proteomik',
3512
+ 'metabolismus',
3513
+ 'geometrie',
3514
+ 'audio',
3515
+ 'umweltbiotechnologie',
3516
+ 'parasitologie',
3517
+ 'bodenkunde',
3518
+ 'atomemissionsspektrometrie',
3519
+ 'bioinformatics',
3520
+ 'kryptographie',
3521
+ 'phytochemie',
3522
+ 'bodenmikrobiologie',
3523
+ 'pathologie',
3524
+ 'thermodynamics',
3525
+ 'verfahrenstechnik',
3526
+ 'anthropologie',
3527
+ 'marketing',
3528
+ 'biologie',
3529
+ 'birds',
3530
+ 'mixed',
3531
+ 'verhaltensbiologie',
3532
+ 'protozoans',
3533
+ 'agrarphysik',
3534
+ 'robotics',
3535
+ 'sozialbiologie',
3536
+ 'umweltchemie',
3537
+ 'neuroanatomie',
3538
+ 'programming',
3539
+ 'technik',
3540
+ 'soziologie',
3541
+ 'archaeology'
3542
+ i.capitalize
3543
+ end
3544
+ return i
3545
+ end; self.instance_eval { alias expand find_corresponding_exam_title } # === Studium.expand
3546
+ self.instance_eval { alias beautify_this_topic find_corresponding_exam_title } # === Studium.beautify_this_topic
3547
+ self.instance_eval { alias beautiful_topic find_corresponding_exam_title } # === Studium.beautiful_topic
3548
+ self.instance_eval { alias beautiful_topic find_corresponding_exam_title } # === Studium.beautiful_topic
3549
+ self.instance_eval { alias pretty_topic_name find_corresponding_exam_title } # === Studium.pretty_topic_name
3550
+
3551
+ # ========================================================================= #
3552
+ # === Studium.map_meta_exam_theme_to_corresponding_exam_themes
3553
+ #
3554
+ # The input to this method should be a String such as "meta_biochem" -
3555
+ # although if you know the direct name then you can omit the leading
3556
+ # "meta_" part; so, "biochemistry" is treated by this method exactly
3557
+ # like "meta_biochemistry" .
3558
+ #
3559
+ # This given input will then be split up into e. g. "aa", "bem1", "bem2"
3560
+ # and so forth, which correspond to exam topics such as "aminoacids",
3561
+ # "biochemistry1", "biochemistry" and so forth.
3562
+ #
3563
+ # Since as of 03.07.2020 this method depends on the yaml file
3564
+ # called grouped_themes.yml. Since as of 31.05.2023 the older
3565
+ # directory "meta_themes/" was fully integrated into this method,
3566
+ # and the directory "meta_themes/" was deleted.
3567
+ #
3568
+ # On my home system the file grouped_exams can be found here:
3569
+ #
3570
+ # bl $RUBY_STUDIUM/yaml/grouped_themes/grouped_themes.yml
3571
+ #
3572
+ # Usage examples of this method:
3573
+ #
3574
+ # Studium.map_meta_exam_theme_to_corresponding_exam_themes(:biotechnology)
3575
+ #
3576
+ # This would yield the following Array (last determined in May 2023):
3577
+ #
3578
+ # ["basic_biotechnology",
3579
+ # "advanced_biotechnology",
3580
+ # "gentechnik_und_praktische_biochemie",
3581
+ # "fortgeschrittene_gentechnik",
3582
+ # "nanotechnologie",
3583
+ # "plant_biotechnology",
3584
+ # "umweltbiotechnologie",
3585
+ # "nucleotide_sequencing",
3586
+ # "pharmaceutical_biotechnology",
3587
+ # "bioprozesstechnik"]
3588
+ #
3589
+ # :random also works as input as of May 2023. Usage example for this:
3590
+ #
3591
+ # Studium.map_meta_exam_theme_to_corresponding_exam_themes(:random)
3592
+ #
3593
+ # More usage examples:
3594
+ #
3595
+ # Studium.map_meta_exam_theme_to_corresponding_exam_themes(:meta_genetics)
3596
+ #
3597
+ # ========================================================================= #
3598
+ def self.map_meta_exam_theme_to_corresponding_exam_themes(
3599
+ i,
3600
+ dataset = nil
3601
+ )
3602
+ if dataset.nil?
3603
+ dataset = YAML.load_file(Studium.file_grouped_themes)
3604
+ end
3605
+ i = i.to_s if i.is_a? Symbol
3606
+ return_this = i.dup
3607
+ case return_this # case tag
3608
+ # ======================================================================= #
3609
+ # === n_exams_in_this_topic meta_genetics
3610
+ #
3611
+ # Everything related to genes is stored here.
3612
+ # ======================================================================= #
3613
+ when /^meta(_|-| |,)?geneti(c|k)s?/, # ← metagen
3614
+ /^genetics$/
3615
+ return_this = dataset['genetics']
3616
+ # ======================================================================= #
3617
+ # === n_exams_in_this_topic random
3618
+ # ======================================================================= #
3619
+ when /^random/
3620
+ random_exam_topic = Studium.random_exam_meta_topic?
3621
+ return_this = dataset[random_exam_topic]
3622
+ # ======================================================================= #
3623
+ # === n_exams_in_this_topic meta_upcoming_exams
3624
+ #
3625
+ # Invocation example:
3626
+ #
3627
+ # meta_upcoming_exams
3628
+ # metaupcomingexams
3629
+ #
3630
+ # ======================================================================= #
3631
+ when /meta(_|-| |,)?upcoming(_|-| |,)?_exams/,
3632
+ /meta(_|-| |,)?upcoming$/i,
3633
+ /^upcoming(_|-| |,)?exams$/i
3634
+ return_this = dataset['upcoming_exams']
3635
+ # ======================================================================= #
3636
+ # === n_exams_in_this_topic meta_cellbiology
3637
+ #
3638
+ # Everything related to cell biology is stored here.
3639
+ # ======================================================================= #
3640
+ when /meta(_|-| |,)?cellbiology/, # ← metacellbio
3641
+ /^cellbiology$/,
3642
+ /^cellbio$/
3643
+ return_this = dataset['cellbiology']
3644
+ # ======================================================================= #
3645
+ # === n_exams_in_this_topic meta_bioinformatics
3646
+ #
3647
+ # Everything related to bioinformatics is stored here.
3648
+ # ======================================================================= #
3649
+ when /^meta(_|-| |,)?bioinformatics$/i,
3650
+ /^bioinformatics$/i
3651
+ return_this = dataset['bioinformatics']
3652
+ # ======================================================================= #
3653
+ # === n_exams_in_this_topic statistics
3654
+ # ======================================================================= #
3655
+ when /meta(_|-| |,)?statistics$/i,
3656
+ /^statistics$/
3657
+ return_this = dataset['statistics']
3658
+ # ======================================================================= #
3659
+ # === n_exams_in_this_topic metabolic_pathways
3660
+ # ======================================================================= #
3661
+ when /meta(_|-| |,)?metabolic(_|-| |,)?pathways/,
3662
+ /^metabolic(_|-| |,)?pathways/
3663
+ return_this = dataset['metabolic_pathways']
3664
+ # ======================================================================= #
3665
+ # === n_exams_in_this_topic meta_biotechnology
3666
+ #
3667
+ # Everything related to biotechnology.
3668
+ # ======================================================================= #
3669
+ when /^meta(_|-| |,)?biotechnology$/, # ← metabiotechnology
3670
+ /^meta(_|-| |,)?biotech$/,
3671
+ /^biotechnology$/
3672
+ return_this = dataset['biotechnology']
3673
+ # ======================================================================= #
3674
+ # === n_exams_in_this_topic meta_immunology
3675
+ #
3676
+ # Everything related to Immunology.
3677
+ # ======================================================================= #
3678
+ when /meta(_|-| |,)?immunology$/,
3679
+ /meta(_|-| |,)?immuno$/,
3680
+ /meta(_|-| |,)?imm$/,
3681
+ /meta7/,
3682
+ /^immunology$/
3683
+ return_this = dataset['immunology']
3684
+ # ======================================================================= #
3685
+ # === n_exams_in_this_topic meta_vectors
3686
+ #
3687
+ # Topics that may belong to the "metatopic" virology.
3688
+ #
3689
+ # Invocation example:
3690
+ #
3691
+ # n_exams_in_this_topic meta_virology
3692
+ #
3693
+ # ======================================================================= #
3694
+ when /meta(_|-| |,)?virology$/,
3695
+ /meta(_|-| |,)?virologie$/,
3696
+ /meta(_|-| |,)?vectors$/,
3697
+ /^virology$/
3698
+ return_this = dataset['virology']
3699
+ # ======================================================================= #
3700
+ # === n_exams_in_this_topic meta_chemistry
3701
+ #
3702
+ # Everything related to chemistry is stored here.
3703
+ # ======================================================================= #
3704
+ when /^meta(_|-| |,)?chemistry/, # ← metachem
3705
+ /^meta(_|-| |,)?chem$/,
3706
+ /^chemistry$/,
3707
+ /^meta6/
3708
+ return_this = dataset['chemistry']
3709
+ # ======================================================================= #
3710
+ # === n_exams_in_this_topic meta_biochem
3711
+ #
3712
+ # All topics related to biochemistry are gathered here.
3713
+ # ======================================================================= #
3714
+ when /^-?-?meta(_|-| |,)?biochemistry$/i,
3715
+ /^-?-?meta(_|-| |,)?biochem$/i,
3716
+ /^-?-?meta(_|-| |,)?biochemistry2/,
3717
+ /^-?-?meta(_|-| |,)?biochem2/,
3718
+ /^-?-?meta(_|-| |,)?advanced(_|-| |,)?biochemistry/,
3719
+ /^biochemistry$/,
3720
+ /^-?-?meta1$/i
3721
+ return_this = dataset['biochemistry']
3722
+ # ======================================================================= #
3723
+ # === n_exams_in_this_topic meta_chemistry
3724
+ #
3725
+ # Everything related to informatics/programming is stored here.
3726
+ # ======================================================================= #
3727
+ when /^meta(_|-| |,)?informatics?$/i, # ← metainformatics
3728
+ /^meta(_|-| |,)?programming$/,
3729
+ /^programming$/
3730
+ return_this = dataset['programming']
3731
+ # ======================================================================= #
3732
+ # === n_exams_in_this_topic meta_gentechnik
3733
+ # ======================================================================= #
3734
+ when /meta(_|-| |,)?gentechnik$/i,
3735
+ /meta(_|-| |,)?gentech$/i,
3736
+ /^genetechnology$/
3737
+ return_this = dataset['genetechnology']
3738
+ # ======================================================================= #
3739
+ # === n_exams_in_this_topic meta_microbiology
3740
+ #
3741
+ # Everything related to microbiology is stored here.
3742
+ # ======================================================================= #
3743
+ when /^meta(_|-| |,)?microbiology$/i,
3744
+ /^meta(_|-| |,)?mikrobiologie$/i,
3745
+ /^meta(_|-| |,)?micro$/i,
3746
+ /^microbiology$/i
3747
+ return_this = dataset['microbiology']
3748
+ # ======================================================================= #
3749
+ # === n_exams_in_this_topic meta_molecular_biology
3750
+ #
3751
+ # Everything related to molecular biology is stored here.
3752
+ # ======================================================================= #
3753
+ when /^meta(_|-| |,)?molecular(_|-| |,)?biology$/i,
3754
+ /^molecular(_|-| |,)?biology$/i
3755
+ return_this = dataset['molecular_biology']
3756
+ # ======================================================================= #
3757
+ # === n_exams_in_this_topic protein_engineering
3758
+ # ======================================================================= #
3759
+ when /^meta(_|-| |,)?protein(_|-| |,)?engineering$/i,
3760
+ /^protein(_|-| |,)?engineering$/i
3761
+ return_this = dataset['microbiology']
3762
+ # ======================================================================= #
3763
+ # === n_exams_in_this_topic meta_zoology
3764
+ # ======================================================================= #
3765
+ when /meta(_|-| |,)?zoology/,
3766
+ /^zoology$/
3767
+ return_this = dataset['zoology']
3768
+ # ======================================================================= #
3769
+ # === n_exams_in_this_topic meta_plants
3770
+ # ======================================================================= #
3771
+ when /meta(_|-| |,)?plants/,
3772
+ /meta5/,
3773
+ /^plants$/
3774
+ return_this = dataset['plants']
3775
+ else
3776
+ if dataset.has_key?(i)
3777
+ return_this = dataset[i]
3778
+ end
3779
+ end
3780
+ if return_this.is_a? Array
3781
+ return_this = return_this.map {|inner_line|
3782
+ find_corresponding_exam_topic(inner_line)
3783
+ }
3784
+ else
3785
+ find_corresponding_exam_topic(return_this)
3786
+ end
3787
+ return return_this
3788
+ end
3789
+
3790
+ # ========================================================================= #
3791
+ # === Studium.obtain_random_topic
3792
+ #
3793
+ # This may be used like so:
3794
+ #
3795
+ # Studium.obtain_random_topic # => "rna_and_dna"
3796
+ #
3797
+ # ========================================================================= #
3798
+ def self.obtain_random_topic
3799
+ Studium.find_corresponding_exam_topic(:random)
3800
+ end
3801
+
3802
+ # ========================================================================= #
3803
+ # === Studium.is_this_exam_topic_registered?
3804
+ #
3805
+ # This method can be used to find out whether the given input is
3806
+ # a registered exam topic or not.
3807
+ #
3808
+ # Usage example:
3809
+ #
3810
+ # Studium.is_this_exam_topic_registered?('rbroken')
3811
+ #
3812
+ # ========================================================================= #
3813
+ def self.is_this_exam_topic_registered?(this_topic)
3814
+ Studium.find_corresponding_exam_topic(this_topic, :be_quiet)
3815
+ end
3816
+
3817
+ # ========================================================================= #
3818
+ # === Studium.return_location_to_this_exam_topic
3819
+ #
3820
+ # This method can be used to return the location to an exam topic.
3821
+ #
3822
+ # Usage example:
3823
+ #
3824
+ # Studium.return_location_to_this_exam_topic(:toxikologie) # => "/home/x/programming/ruby/src/studium/lib/studium/exam_topics/toxikologie"
3825
+ #
3826
+ # ========================================================================= #
3827
+ def self.return_location_to_this_exam_topic(i)
3828
+ i = i.first if i.is_a? Array
3829
+ i = ::Studium.find_corresponding_exam_topic(i.to_s)
3830
+ return "#{directory_to_the_exam_topics?}#{i}"
3831
+ end; self.instance_eval { alias return_location_to_this_exam return_location_to_this_exam_topic } # === Studium.return_location_to_this_exam_topic
3832
+ self.instance_eval { alias local_exam_file return_location_to_this_exam_topic } # === Studium.local_exam_file
3833
+
3834
+ # ========================================================================= #
3835
+ # === Studium.sanitize_this_theme_topic
3836
+ #
3837
+ # This method will take input such as 'math' and sanitize it towards
3838
+ # the longer (and correct) name called 'mathematics'.
3839
+ # ========================================================================= #
3840
+ def self.sanitize_this_theme_topic(topic)
3841
+ case topic # Add some aliases (case tag, aliases tag, alias tag)
3842
+ # ======================================================================= #
3843
+ # === theoretische_informatik
3844
+ # ======================================================================= #
3845
+ when 'theoretische_informatik'
3846
+ topic = 'theoretical informatics'
3847
+ # ======================================================================= #
3848
+ # === mathematik
3849
+ # ======================================================================= #
3850
+ when 'mathematik',
3851
+ 'mathematic',
3852
+ 'maths',
3853
+ 'math'
3854
+ topic = 'mathematics'
3855
+ # ======================================================================= #
3856
+ # === plants
3857
+ # ======================================================================= #
3858
+ when 'plants'
3859
+ topic = 'plant sciences'
3860
+ # ======================================================================= #
3861
+ # === bioprocess
3862
+ # ======================================================================= #
3863
+ when 'bioprocess',
3864
+ 'bioprozess'
3865
+ topic = 'bioprocess technology'
3866
+ # ======================================================================= #
3867
+ # === biochemie
3868
+ # ======================================================================= #
3869
+ when 'biochemie','biochem'
3870
+ topic = 'biochemistry'
3871
+ # ======================================================================= #
3872
+ # === chemie
3873
+ # ======================================================================= #
3874
+ when 'chemie',
3875
+ 'chem'
3876
+ topic = 'chemistry'
3877
+ # ======================================================================= #
3878
+ # === patho
3879
+ # ======================================================================= #
3880
+ when 'patho',
3881
+ 'pathologie'
3882
+ topic = 'pathology'
3883
+ # ======================================================================= #
3884
+ # === organic_chemistry
3885
+ # ======================================================================= #
3886
+ when 'organic_chemistry'
3887
+ topic = 'organic chemistry'
3888
+ # ======================================================================= #
3889
+ # === mikrobiologie
3890
+ # ======================================================================= #
3891
+ when 'mikrobiologie'
3892
+ topic = 'microbiology'
3893
+ # ======================================================================= #
3894
+ # === biotech
3895
+ # ======================================================================= #
3896
+ when 'biotech'
3897
+ topic = 'biotechnology'
3898
+ # ======================================================================= #
3899
+ # === immuno
3900
+ # ======================================================================= #
3901
+ when 'immuno',
3902
+ 'imuno',
3903
+ 'immunologie'
3904
+ topic = 'immunology'
3905
+ # ======================================================================= #
3906
+ # === diseases
3907
+ # ======================================================================= #
3908
+ when 'diseases'
3909
+ topic = 'disease'
3910
+ # ======================================================================= #
3911
+ # === genetik
3912
+ # ======================================================================= #
3913
+ when 'genetik'
3914
+ topic = 'genetics'
3915
+ # ======================================================================= #
3916
+ # === bioinformatik
3917
+ # ======================================================================= #
3918
+ when 'bioinformatik',
3919
+ 'bioinfo'
3920
+ topic = 'bioinformatics'
3921
+ # ======================================================================= #
3922
+ # === botany
3923
+ # ======================================================================= #
3924
+ when 'botany',
3925
+ 'pflants',
3926
+ 'pflanzen'
3927
+ topic = 'plants'
3928
+ # ======================================================================= #
3929
+ # === cellbio
3930
+ # ======================================================================= #
3931
+ when 'cellbio',
3932
+ 'cell'
3933
+ topic = 'cellbiology'
3934
+ # ======================================================================= #
3935
+ # === virus
3936
+ # ======================================================================= #
3937
+ when 'virus',
3938
+ 'viruses'
3939
+ topic = 'virology'
3940
+ end
3941
+ return topic
3942
+ end
3943
+ # =========================================================================== #
3944
+ # === Studium.n_exam_topics_available?
3945
+ # =========================================================================== #
3946
+ def self.n_exam_topics_available?
3947
+ Studium::Exams.n_topics_available?
3948
+ end
3949
+
3950
+ # ========================================================================= #
3951
+ # === Studium::N_TOPICS_REGISTERED
3952
+ #
3953
+ # In the past I manually synced this constant to a (hardcoded) value.
3954
+ #
3955
+ # This was tedious, though, because every time I would add a new entry
3956
+ # I would also have to change this constant here manually, which is
3957
+ # not only tedious but also error-prone. Thus, since as of 09.11.2019,
3958
+ # this constant will be determined automatically.
3959
+ #
3960
+ # As of 09.11.2019 there were 218 different exam topics registered
3961
+ # as part of this project.
3962
+ # ========================================================================= #
3963
+ N_TOPICS_REGISTERED = n_exam_topics_available?
3964
+
3965
+ # ========================================================================= #
3966
+ # === Studium.return_array_for_n_topics_registered
3967
+ #
3968
+ # This method will simply return an Array holding the numbers for the
3969
+ # registered topics at hand.
3970
+ # ========================================================================= #
3971
+ def self.return_array_for_n_topics_registered
3972
+ (1 .. N_TOPICS_REGISTERED).to_a
3973
+ end
3974
+
3975
+ end
3976
+
3977
+ if __FILE__ == $PROGRAM_NAME
3978
+ alias e puts
3979
+ p Studium.find_corresponding_exam_topic 1
3980
+ p Studium.find_corresponding_exam_topic :rand
3981
+ p Studium.find_corresponding_exam_title 'am'
3982
+ p Studium.find_corresponding_exam_title 'hor'
3983
+ pp Studium.map_meta_exam_theme_to_corresponding_exam_themes('meta_biochem')
3984
+ e Studium.sanitize_this_theme_topic('math') # ← Just for testing.
3985
+ e Studium.return_location_to_this_exam_topic(ARGV)
3986
+ end # findcorrespondingexamtopic amg