studium 0.14.16

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (883) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2987 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +10 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/search_for_n_ects +7 -0
  38. data/bin/show_lectures_on_the_commandline +7 -0
  39. data/bin/show_themes +7 -0
  40. data/bin/solved +9 -0
  41. data/bin/solved_ects +7 -0
  42. data/bin/studienkennzahl +7 -0
  43. data/bin/studium +7 -0
  44. data/bin/studium_skeleton +7 -0
  45. data/bin/ufind +7 -0
  46. data/bin/upcoming_exams +7 -0
  47. data/bin/week_parser +7 -0
  48. data/doc/ECTS_CONSIDERATIONS.md +82 -0
  49. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  50. data/doc/README.gen +2947 -0
  51. data/doc/SQL_database_specification.md +46 -0
  52. data/doc/deprecated_components.md +24 -0
  53. data/doc/documentation_for_the_file_lecture_information.md +311 -0
  54. data/doc/elegant_colours.md +21 -0
  55. data/doc/statistics/yearly_statistics.md +5 -0
  56. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +32 -0
  57. data/doc/todo/todo_for_the_studium_gem.md +58 -0
  58. data/img/STUDIES.png +0 -0
  59. data/lib/studium/autoinclude.rb +7 -0
  60. data/lib/studium/base/base.rb +3054 -0
  61. data/lib/studium/base/prototype.rb +592 -0
  62. data/lib/studium/c/README.md +2 -0
  63. data/lib/studium/c/a.out +0 -0
  64. data/lib/studium/c/obtain_random_entry.c +11 -0
  65. data/lib/studium/check_and_sanitize/README.md +15 -0
  66. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  67. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  68. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  69. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +191 -0
  70. data/lib/studium/check_and_sanitize/check_important_exams.rb +113 -0
  71. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +163 -0
  72. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  73. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  74. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +428 -0
  75. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  76. data/lib/studium/colours/colours.rb +572 -0
  77. data/lib/studium/colours/sfancy.rb +46 -0
  78. data/lib/studium/colours/sfile.rb +35 -0
  79. data/lib/studium/colours/simp.rb +40 -0
  80. data/lib/studium/colours/use_colours.rb +39 -0
  81. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  82. data/lib/studium/commandline/commandline.rb +932 -0
  83. data/lib/studium/commandline/menu.rb +906 -0
  84. data/lib/studium/constants/colours.rb +14 -0
  85. data/lib/studium/constants/constants.rb +1708 -0
  86. data/lib/studium/constants/image_constants.rb +271 -0
  87. data/lib/studium/constants/regexes.rb +44 -0
  88. data/lib/studium/constants/web_constants.rb +28 -0
  89. data/lib/studium/css/project.css +267 -0
  90. data/lib/studium/curricula/curriculum.rb +210 -0
  91. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  92. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  93. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  94. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  95. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  96. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  97. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  98. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  100. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  101. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  102. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  103. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  104. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  105. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  106. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  107. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  108. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  109. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  110. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  111. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  112. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +179 -0
  113. data/lib/studium/curricula/handle_curricula/misc.rb +705 -0
  114. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  115. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  116. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  117. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  118. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  119. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +163 -0
  120. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  121. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +11 -0
  122. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  123. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  124. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +264 -0
  125. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +163 -0
  126. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +64 -0
  127. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +38 -0
  128. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  129. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  130. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  131. data/lib/studium/ects/ects_per_university.rb +179 -0
  132. data/lib/studium/ects/ects_scanner.rb +141 -0
  133. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  134. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  135. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  136. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  137. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  138. data/lib/studium/ects/return_n_ects_from_this_url.rb +196 -0
  139. data/lib/studium/ects/search_for_n_ects.rb +614 -0
  140. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +191 -0
  141. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  142. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  143. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  144. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  145. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  146. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  147. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  148. data/lib/studium/ects/still_missing.rb +129 -0
  149. data/lib/studium/ects/sum_of_ects.rb +144 -0
  150. data/lib/studium/encoding/encoding.rb +108 -0
  151. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  152. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  153. data/lib/studium/exam_topics/advanced_biochemistry +793 -0
  154. data/lib/studium/exam_topics/advanced_biotechnology +225 -0
  155. data/lib/studium/exam_topics/advanced_cellbiology +105 -0
  156. data/lib/studium/exam_topics/advanced_chemistry +518 -0
  157. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  158. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +85 -0
  159. data/lib/studium/exam_topics/advanced_virology +229 -0
  160. data/lib/studium/exam_topics/ageing +117 -0
  161. data/lib/studium/exam_topics/agrar_ecology +63 -0
  162. data/lib/studium/exam_topics/agrarmarkt +74 -0
  163. data/lib/studium/exam_topics/agrarphysik +35 -0
  164. data/lib/studium/exam_topics/alcohols +29 -0
  165. data/lib/studium/exam_topics/algorithms +59 -0
  166. data/lib/studium/exam_topics/allergie +76 -0
  167. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  168. data/lib/studium/exam_topics/allgemeine_mikrobiologie +977 -0
  169. data/lib/studium/exam_topics/aminoacids +447 -0
  170. data/lib/studium/exam_topics/analytische_chemie_1 +132 -0
  171. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  172. data/lib/studium/exam_topics/anatomie +292 -0
  173. data/lib/studium/exam_topics/anorganische_chemie +323 -0
  174. data/lib/studium/exam_topics/anthropologie +117 -0
  175. data/lib/studium/exam_topics/antibodies_and_antigens +770 -0
  176. data/lib/studium/exam_topics/apoptosis +35 -0
  177. data/lib/studium/exam_topics/archaea +95 -0
  178. data/lib/studium/exam_topics/architecture +8 -0
  179. data/lib/studium/exam_topics/artificial_intelligence +85 -0
  180. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  181. data/lib/studium/exam_topics/audio +11 -0
  182. data/lib/studium/exam_topics/bacteriophages +243 -0
  183. data/lib/studium/exam_topics/basic_biochemistry +1005 -0
  184. data/lib/studium/exam_topics/basic_biotechnology +1004 -0
  185. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  186. data/lib/studium/exam_topics/basic_virology +1010 -0
  187. data/lib/studium/exam_topics/bauwesen +6 -0
  188. data/lib/studium/exam_topics/betriebssysteme +126 -0
  189. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  190. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +389 -0
  191. data/lib/studium/exam_topics/biochips +79 -0
  192. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  193. data/lib/studium/exam_topics/biofilms +24 -0
  194. data/lib/studium/exam_topics/bioinformatics +507 -0
  195. data/lib/studium/exam_topics/biological_therapeutics +155 -0
  196. data/lib/studium/exam_topics/biologie +139 -0
  197. data/lib/studium/exam_topics/biomarkers +135 -0
  198. data/lib/studium/exam_topics/biomaterials +89 -0
  199. data/lib/studium/exam_topics/biomembranes +6 -0
  200. data/lib/studium/exam_topics/bionik +65 -0
  201. data/lib/studium/exam_topics/biophysik +34 -0
  202. data/lib/studium/exam_topics/biopolymers +10 -0
  203. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  204. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  205. data/lib/studium/exam_topics/birds +3 -0
  206. data/lib/studium/exam_topics/bodenkunde +373 -0
  207. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  208. data/lib/studium/exam_topics/cancerbiology +454 -0
  209. data/lib/studium/exam_topics/cell_cultures +221 -0
  210. data/lib/studium/exam_topics/cellbiology +1011 -0
  211. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  212. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  213. data/lib/studium/exam_topics/cellulose +6 -0
  214. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  215. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  216. data/lib/studium/exam_topics/chemisches_labor +60 -0
  217. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +91 -0
  218. data/lib/studium/exam_topics/citric_acid_cycle +80 -0
  219. data/lib/studium/exam_topics/clinical_microbiology +506 -0
  220. data/lib/studium/exam_topics/computer_science +284 -0
  221. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +12 -0
  222. data/lib/studium/exam_topics/crispr +48 -0
  223. data/lib/studium/exam_topics/cyanobacteria +43 -0
  224. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +570 -0
  225. data/lib/studium/exam_topics/cytokines +6 -0
  226. data/lib/studium/exam_topics/databases_and_sql +116 -0
  227. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +69 -0
  228. data/lib/studium/exam_topics/dna_replication +57 -0
  229. data/lib/studium/exam_topics/ecogenetics +26 -0
  230. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  231. data/lib/studium/exam_topics/ecology +317 -0
  232. data/lib/studium/exam_topics/economy +211 -0
  233. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  234. data/lib/studium/exam_topics/elektrophorese +89 -0
  235. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +41 -0
  236. data/lib/studium/exam_topics/elisa +54 -0
  237. data/lib/studium/exam_topics/embryologie_und_entwicklung +603 -0
  238. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  239. data/lib/studium/exam_topics/enzymes_and_cofactors +353 -0
  240. data/lib/studium/exam_topics/epigenetik +184 -0
  241. data/lib/studium/exam_topics/erste_hilfe +158 -0
  242. data/lib/studium/exam_topics/ethik +138 -0
  243. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +356 -0
  244. data/lib/studium/exam_topics/excel +7 -0
  245. data/lib/studium/exam_topics/fish +19 -0
  246. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  247. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +83 -0
  248. data/lib/studium/exam_topics/forensik +11 -0
  249. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  250. data/lib/studium/exam_topics/fortgeschrittene_genetik +576 -0
  251. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +217 -0
  252. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  253. data/lib/studium/exam_topics/fungi +80 -0
  254. data/lib/studium/exam_topics/genetische_krankheiten +187 -0
  255. data/lib/studium/exam_topics/genexpression +1008 -0
  256. data/lib/studium/exam_topics/genomics_and_metagenomics +272 -0
  257. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +928 -0
  258. data/lib/studium/exam_topics/geochemistry +67 -0
  259. data/lib/studium/exam_topics/geography +8 -0
  260. data/lib/studium/exam_topics/geologie_und_mineralogie +626 -0
  261. data/lib/studium/exam_topics/geometrie +54 -0
  262. data/lib/studium/exam_topics/geschichte +94 -0
  263. data/lib/studium/exam_topics/gluconeogenesis +64 -0
  264. data/lib/studium/exam_topics/glycogen +25 -0
  265. data/lib/studium/exam_topics/glycolysis +109 -0
  266. data/lib/studium/exam_topics/glykomik +101 -0
  267. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  268. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  269. data/lib/studium/exam_topics/hormone +139 -0
  270. data/lib/studium/exam_topics/html +7 -0
  271. data/lib/studium/exam_topics/human_ecology +8 -0
  272. data/lib/studium/exam_topics/hygiene +224 -0
  273. data/lib/studium/exam_topics/imaging_and_microscopy +265 -0
  274. data/lib/studium/exam_topics/immunanalytik +94 -0
  275. data/lib/studium/exam_topics/immunologie +998 -0
  276. data/lib/studium/exam_topics/informatik +103 -0
  277. data/lib/studium/exam_topics/innate_immunity +24 -0
  278. data/lib/studium/exam_topics/insekten +64 -0
  279. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  280. data/lib/studium/exam_topics/java +597 -0
  281. data/lib/studium/exam_topics/javascript +14 -0
  282. data/lib/studium/exam_topics/klima +6 -0
  283. data/lib/studium/exam_topics/kryptographie +9 -0
  284. data/lib/studium/exam_topics/landtechnik +26 -0
  285. data/lib/studium/exam_topics/lebensmittel +222 -0
  286. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  287. data/lib/studium/exam_topics/linux +5 -0
  288. data/lib/studium/exam_topics/lipids +95 -0
  289. data/lib/studium/exam_topics/macroeconomics +40 -0
  290. data/lib/studium/exam_topics/marketing +7 -0
  291. data/lib/studium/exam_topics/mathematics +280 -0
  292. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +251 -0
  293. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +416 -0
  294. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  295. data/lib/studium/exam_topics/metabolismus +423 -0
  296. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +91 -0
  297. data/lib/studium/exam_topics/microbial_ecology +35 -0
  298. data/lib/studium/exam_topics/microcontrollers +11 -0
  299. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +33 -0
  300. data/lib/studium/exam_topics/mikrobielle_physiologie +204 -0
  301. data/lib/studium/exam_topics/mitochondria +33 -0
  302. data/lib/studium/exam_topics/mixed +286 -0
  303. data/lib/studium/exam_topics/molecular_biology_of_plants +249 -0
  304. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  305. data/lib/studium/exam_topics/nanotechnologie +453 -0
  306. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +211 -0
  307. data/lib/studium/exam_topics/naturstoffe +9 -0
  308. data/lib/studium/exam_topics/netzwerke +34 -0
  309. data/lib/studium/exam_topics/neurobiology +272 -0
  310. data/lib/studium/exam_topics/nucleotide_sequencing +38 -0
  311. data/lib/studium/exam_topics/nutztierethologie +11 -0
  312. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  313. data/lib/studium/exam_topics/obstbau +249 -0
  314. data/lib/studium/exam_topics/organische_chemie +1007 -0
  315. data/lib/studium/exam_topics/organische_chemie_2 +125 -0
  316. data/lib/studium/exam_topics/paleobiology +39 -0
  317. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  318. data/lib/studium/exam_topics/patent_law +55 -0
  319. data/lib/studium/exam_topics/pathologie +723 -0
  320. data/lib/studium/exam_topics/pcr +152 -0
  321. data/lib/studium/exam_topics/pentosephosphatweg +41 -0
  322. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  323. data/lib/studium/exam_topics/pflanzenanatomie +255 -0
  324. data/lib/studium/exam_topics/pflanzenbau +24 -0
  325. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  326. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  327. data/lib/studium/exam_topics/pharmaceutical_biotechnology +251 -0
  328. data/lib/studium/exam_topics/physik +443 -1
  329. data/lib/studium/exam_topics/physikalische_chemie +86 -0
  330. data/lib/studium/exam_topics/physiology_and_histology +520 -0
  331. data/lib/studium/exam_topics/phytochemie +33 -0
  332. data/lib/studium/exam_topics/plant_biotechnology +129 -0
  333. data/lib/studium/exam_topics/plant_breeding +64 -0
  334. data/lib/studium/exam_topics/plant_development +50 -0
  335. data/lib/studium/exam_topics/populationsgenetik +137 -0
  336. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +195 -0
  337. data/lib/studium/exam_topics/projektmanagement +220 -0
  338. data/lib/studium/exam_topics/prokaryote_genetics +547 -0
  339. data/lib/studium/exam_topics/protein_engineering +16 -0
  340. data/lib/studium/exam_topics/proteolyse +36 -0
  341. data/lib/studium/exam_topics/proteomik +40 -0
  342. data/lib/studium/exam_topics/prozesstechnik +95 -0
  343. data/lib/studium/exam_topics/psychologie +14 -0
  344. data/lib/studium/exam_topics/python +355 -0
  345. data/lib/studium/exam_topics/quality_management +263 -0
  346. data/lib/studium/exam_topics/rechtsgrundlagen +116 -0
  347. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  348. data/lib/studium/exam_topics/rna_and_dna +457 -0
  349. data/lib/studium/exam_topics/rna_seq +11 -0
  350. data/lib/studium/exam_topics/robotik +6 -0
  351. data/lib/studium/exam_topics/ruby +183 -0
  352. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  353. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  354. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  355. data/lib/studium/exam_topics/sexualbiologie +108 -0
  356. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +197 -0
  357. data/lib/studium/exam_topics/splicing_exons_and_introns +63 -0
  358. data/lib/studium/exam_topics/statistik +241 -0
  359. data/lib/studium/exam_topics/stemcells +159 -0
  360. data/lib/studium/exam_topics/stickstofffixierung +76 -0
  361. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  362. data/lib/studium/exam_topics/strukturbiologie +387 -0
  363. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +103 -0
  364. data/lib/studium/exam_topics/systematische_zoologie +436 -0
  365. data/lib/studium/exam_topics/technical_ecology +144 -0
  366. data/lib/studium/exam_topics/technische_chemie +204 -0
  367. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +39 -0
  368. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  369. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  370. data/lib/studium/exam_topics/the_bacterial_cell_wall +97 -0
  371. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +491 -0
  372. data/lib/studium/exam_topics/the_c_programming_language +129 -0
  373. data/lib/studium/exam_topics/the_cellcycle +89 -0
  374. data/lib/studium/exam_topics/the_european_union +119 -0
  375. data/lib/studium/exam_topics/the_interferon_system +39 -0
  376. data/lib/studium/exam_topics/the_microbiome +164 -0
  377. data/lib/studium/exam_topics/the_universe +26 -0
  378. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  379. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  380. data/lib/studium/exam_topics/thermodynamics +3 -0
  381. data/lib/studium/exam_topics/tierzucht +139 -0
  382. data/lib/studium/exam_topics/toxikologie +447 -0
  383. data/lib/studium/exam_topics/transcription +164 -0
  384. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +144 -0
  385. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  386. data/lib/studium/exam_topics/umweltchemie +233 -0
  387. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  388. data/lib/studium/exam_topics/urea_cycle +55 -0
  389. data/lib/studium/exam_topics/vaccines_and_vaccination +246 -0
  390. data/lib/studium/exam_topics/vectors_and_gene_therapy +246 -0
  391. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  392. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  393. data/lib/studium/exam_topics/vitamine +25 -0
  394. data/lib/studium/exam_topics/wasserkunde +137 -0
  395. data/lib/studium/exam_topics/weinbau +82 -0
  396. data/lib/studium/exam_topics/wissenschaft +18 -0
  397. data/lib/studium/exam_topics/yeast +102 -0
  398. data/lib/studium/exam_topics/zoologie +333 -0
  399. data/lib/studium/exams/afterburn/afterburn.rb +257 -0
  400. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  401. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  402. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  403. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +131 -0
  404. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  405. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  406. data/lib/studium/exams/ask_random_question.rb +195 -0
  407. data/lib/studium/exams/autoinclude.rb +7 -0
  408. data/lib/studium/exams/average_grade.rb +396 -0
  409. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  410. data/lib/studium/exams/cycle.rb +291 -0
  411. data/lib/studium/exams/dataset.rb +124 -0
  412. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  413. data/lib/studium/exams/exam/exam.rb +130 -0
  414. data/lib/studium/exams/exam_question/README.md +3 -0
  415. data/lib/studium/exams/exam_question/answer.rb +193 -0
  416. data/lib/studium/exams/exam_question/constants.rb +111 -0
  417. data/lib/studium/exams/exam_question/exam_question.rb +1136 -0
  418. data/lib/studium/exams/exam_question/menu.rb +333 -0
  419. data/lib/studium/exams/exam_question/misc.rb +898 -0
  420. data/lib/studium/exams/exam_question/question.rb +91 -0
  421. data/lib/studium/exams/exam_question/reset.rb +96 -0
  422. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  423. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  424. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  425. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  426. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  427. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  428. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  429. data/lib/studium/exams/exam_topics.rb +194 -0
  430. data/lib/studium/exams/exams.rb +20 -0
  431. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2438 -0
  432. data/lib/studium/exams/exams_this_week.rb +182 -0
  433. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  434. data/lib/studium/exams/frozen.rb +36 -0
  435. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  436. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  437. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1359 -0
  438. 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
  439. data/lib/studium/exams/n_exams_in_these_topics.rb +404 -0
  440. data/lib/studium/exams/next_exam.rb +107 -0
  441. data/lib/studium/exams/next_exams.rb +378 -0
  442. data/lib/studium/exams/open_exam_associated_url.rb +154 -0
  443. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  444. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  445. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +109 -0
  446. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  447. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +377 -0
  448. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  449. data/lib/studium/exams/repeat_last_question.rb +78 -0
  450. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  451. data/lib/studium/exams/show_backlog_of_exams.rb +117 -0
  452. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  453. data/lib/studium/exams/show_themes/constants.rb +28 -0
  454. data/lib/studium/exams/show_themes/menu.rb +61 -0
  455. data/lib/studium/exams/show_themes/misc.rb +537 -0
  456. data/lib/studium/exams/show_themes/reset.rb +62 -0
  457. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  458. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1146 -0
  459. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  460. data/lib/studium/exams/solved/constants.rb +32 -0
  461. data/lib/studium/exams/solved/help.rb +24 -0
  462. data/lib/studium/exams/solved/initialize.rb +55 -0
  463. data/lib/studium/exams/solved/menu.rb +41 -0
  464. data/lib/studium/exams/solved/reset.rb +28 -0
  465. data/lib/studium/exams/solved/solved.rb +317 -0
  466. data/lib/studium/exams/timetable/timetable.rb +510 -0
  467. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +162 -0
  468. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +556 -0
  469. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  470. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  471. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  472. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  473. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  474. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  475. data/lib/studium/graphviz/README.md +4 -0
  476. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  477. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  478. data/lib/studium/gui/gtk3/README.md +1 -0
  479. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  480. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  481. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  482. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  483. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +510 -0
  484. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  485. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1888 -0
  486. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  487. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  488. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  489. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  490. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  491. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  492. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  493. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  494. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  495. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  496. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  497. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  498. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  499. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  500. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  501. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  502. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  503. data/lib/studium/images/outdated.png +0 -0
  504. data/lib/studium/images/small_logos/DNA.png +0 -0
  505. data/lib/studium/images/small_logos/README.md +2 -0
  506. data/lib/studium/images/small_logos/solved.png +0 -0
  507. data/lib/studium/images/studies_favicon.png +0 -0
  508. data/lib/studium/java/Mkdir.java +15 -0
  509. data/lib/studium/java/README.md +2 -0
  510. data/lib/studium/java/ask_exam_question/AskExamQuestion.class +0 -0
  511. data/lib/studium/java/ask_exam_question/AskExamQuestion.java +480 -0
  512. data/lib/studium/java/constants/Constants.class +0 -0
  513. data/lib/studium/java/constants/Constants.java +77 -0
  514. data/lib/studium/java/solved/Solved.class +0 -0
  515. data/lib/studium/java/solved/Solved.java +110 -0
  516. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  517. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.java +80 -0
  518. data/lib/studium/logging/README.md +2 -0
  519. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  520. data/lib/studium/logging/html_log_directory.rb +41 -0
  521. data/lib/studium/logging/log_directory.rb +112 -0
  522. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  523. data/lib/studium/parsers/README.md +2 -0
  524. data/lib/studium/parsers/custom_exam_results_parser.rb +206 -0
  525. data/lib/studium/parsers/parse_lva_dates.rb +233 -0
  526. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  527. data/lib/studium/project/project.rb +76 -0
  528. data/lib/studium/requires/common_popular_requires.rb +37 -0
  529. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  530. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  531. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  532. data/lib/studium/requires/require_encoding.rb +7 -0
  533. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  534. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  535. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  536. data/lib/studium/requires/require_the_exams_files.rb +45 -0
  537. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  538. data/lib/studium/requires/require_the_parsers.rb +28 -0
  539. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  540. data/lib/studium/requires/require_the_studium_project.rb +60 -0
  541. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  542. data/lib/studium/requires/require_the_utility_scripts.rb +49 -0
  543. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  544. data/lib/studium/requires/require_yaml.rb +7 -0
  545. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  546. data/lib/studium/requires/with_GUI.rb +13 -0
  547. data/lib/studium/requires/www_mode.rb +17 -0
  548. data/lib/studium/statistics/README.md +4 -0
  549. data/lib/studium/statistics/best_exam_months.rb +92 -0
  550. data/lib/studium/statistics/curriculum_comparer.rb +337 -0
  551. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  552. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  553. data/lib/studium/statistics/max_stats.rb +170 -0
  554. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  555. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  556. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  557. data/lib/studium/statistics/show_exam_statistics.rb +66 -0
  558. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  559. data/lib/studium/statistics/top_stats.rb +127 -0
  560. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  561. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +100 -0
  562. data/lib/studium/toplevel_methods/available_topics.rb +156 -0
  563. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  564. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  565. data/lib/studium/toplevel_methods/curriculum_related_code.rb +1082 -0
  566. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  567. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +51 -0
  568. data/lib/studium/toplevel_methods/download.rb +163 -0
  569. data/lib/studium/toplevel_methods/e.rb +16 -0
  570. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  571. data/lib/studium/toplevel_methods/editor.rb +65 -0
  572. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  573. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  574. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3538 -0
  575. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  576. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  577. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  578. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  579. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  580. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  581. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  582. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +93 -0
  583. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +42 -0
  584. data/lib/studium/toplevel_methods/java.rb +32 -0
  585. data/lib/studium/toplevel_methods/lecture_information.rb +108 -0
  586. data/lib/studium/toplevel_methods/lva_numbers.rb +355 -0
  587. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  588. data/lib/studium/toplevel_methods/map_input_to_this_curriculum_filename.rb +595 -0
  589. data/lib/studium/toplevel_methods/methods_related_to_directories.rb +225 -0
  590. data/lib/studium/toplevel_methods/methods_related_to_files.rb +209 -0
  591. data/lib/studium/toplevel_methods/misc.rb +288 -0
  592. data/lib/studium/toplevel_methods/n_questions_available.rb +137 -0
  593. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  594. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  595. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  596. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  597. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  598. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  599. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  600. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  601. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +82 -0
  602. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  603. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  604. data/lib/studium/toplevel_methods/remove_tags.rb +32 -0
  605. data/lib/studium/toplevel_methods/report.rb +435 -0
  606. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  607. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  608. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  609. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  610. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  611. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +60 -0
  612. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  613. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  614. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +60 -0
  615. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  616. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  617. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +10951 -0
  618. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2201 -0
  619. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  620. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  621. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  622. data/lib/studium/toplevel_methods/rti_conflict.rb +35 -0
  623. data/lib/studium/toplevel_methods/runmode.rb +87 -0
  624. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  625. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  626. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  627. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +34 -0
  628. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  629. data/lib/studium/toplevel_methods/time.rb +297 -0
  630. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  631. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  632. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  633. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  634. data/lib/studium/toplevel_methods/url.rb +100 -0
  635. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  636. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  637. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  638. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +195 -0
  639. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  640. data/lib/studium/universities_in_austria/README.md +2 -0
  641. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  642. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  643. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  644. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  645. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  646. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  647. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  648. data/lib/studium/university_course/university_course.rb +384 -0
  649. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  650. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  651. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  652. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  653. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  654. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  655. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  656. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  657. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  658. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +143 -0
  659. data/lib/studium/utility_scripts/blocked_courses.rb +141 -0
  660. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  661. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  662. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  663. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  664. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  665. data/lib/studium/utility_scripts/create/README.md +2 -0
  666. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  667. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +59 -0
  668. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +58 -0
  669. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +57 -0
  670. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  671. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  672. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  673. data/lib/studium/utility_scripts/display_lecture_url.rb +176 -0
  674. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +488 -0
  675. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  676. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  677. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  678. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  679. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  680. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  681. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  682. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  683. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  684. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  685. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  686. data/lib/studium/utility_scripts/holidays/holidays.rb +150 -0
  687. data/lib/studium/utility_scripts/homepage_of_these_courses.rb +118 -0
  688. data/lib/studium/utility_scripts/lecture_downloader.rb +107 -0
  689. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +336 -0
  690. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  691. data/lib/studium/utility_scripts/lva_nummer.rb +431 -0
  692. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  693. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  694. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  695. data/lib/studium/utility_scripts/next_week.rb +103 -0
  696. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  697. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +288 -0
  698. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  699. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  700. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  701. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  702. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +312 -0
  703. data/lib/studium/utility_scripts/priority.rb +164 -0
  704. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  705. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  706. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  707. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  708. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  709. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  710. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  711. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +116 -0
  712. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  713. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  714. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  715. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  716. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  717. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  718. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  719. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +97 -0
  720. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +119 -0
  721. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1339 -0
  722. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  723. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  724. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  725. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  726. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  727. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  728. data/lib/studium/utility_scripts/show_lectures/constants.rb +11 -0
  729. data/lib/studium/utility_scripts/show_lectures/help.rb +35 -0
  730. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  731. data/lib/studium/utility_scripts/show_lectures/menu.rb +138 -0
  732. data/lib/studium/utility_scripts/show_lectures/misc.rb +606 -0
  733. data/lib/studium/utility_scripts/show_lectures/reset.rb +89 -0
  734. data/lib/studium/utility_scripts/show_lectures/run.rb +28 -0
  735. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +49 -0
  736. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  737. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  738. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3142 -0
  739. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +149 -0
  740. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +169 -0
  741. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +91 -0
  742. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +210 -0
  743. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  744. data/lib/studium/utility_scripts/steop/README.md +4 -0
  745. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  746. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  747. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  748. data/lib/studium/utility_scripts/studienkennzahl.rb +116 -0
  749. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +231 -0
  750. data/lib/studium/utility_scripts/stundenplan.rb +595 -0
  751. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  752. data/lib/studium/utility_scripts/ufind/ufind.rb +98 -0
  753. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  754. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  755. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  756. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  757. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  758. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  759. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  760. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  761. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  762. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  763. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  764. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  765. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  766. data/lib/studium/utility_scripts/wochenplanung.rb +261 -0
  767. data/lib/studium/version/version.rb +46 -0
  768. data/lib/studium/www/curriculum_displayer.rb +162 -0
  769. data/lib/studium/www/exams.cgi +54 -0
  770. data/lib/studium/www/fast_ask_exam_question.cgi +156 -0
  771. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  772. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +79 -0
  773. data/lib/studium/www/sinatra/app.rb +231 -0
  774. data/lib/studium/www/sinatra/misc.rb +115 -0
  775. data/lib/studium/www/statistics/statistics.cgi +70 -0
  776. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  777. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +15 -0
  778. data/lib/studium/yaml/allowed_themes_for_exams/allowed_themes_for_exams.yml +347 -0
  779. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  780. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  781. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  782. data/lib/studium/yaml/colours/custom_colours.yml +28 -0
  783. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  784. data/lib/studium/yaml/current_exams.yml +30 -0
  785. data/lib/studium/yaml/curricula/README.md +39 -0
  786. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  787. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  788. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  789. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  790. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  791. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  792. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  793. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  794. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  795. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  796. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  797. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +136 -0
  798. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  799. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  806. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +143 -0
  807. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  808. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  809. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  810. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  811. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  812. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  813. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  814. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  815. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  816. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  817. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  818. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  819. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  820. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  821. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  822. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  823. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  824. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  825. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  826. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  827. data/lib/studium/yaml/curricula.yml +562 -0
  828. data/lib/studium/yaml/daily_questions_solved.yml +1654 -0
  829. data/lib/studium/yaml/default_delay.yml +4 -0
  830. data/lib/studium/yaml/default_encoding.yml +1 -0
  831. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  832. data/lib/studium/yaml/editor.yml +1 -0
  833. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  834. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  835. data/lib/studium/yaml/german/README.md +2 -0
  836. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  837. data/lib/studium/yaml/grouped_themes.yml +192 -0
  838. data/lib/studium/yaml/holidays.yml +201 -0
  839. data/lib/studium/yaml/important_exams.yml +266 -0
  840. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  841. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  842. data/lib/studium/yaml/lecture_information/lecture_information.yml +61740 -0
  843. data/lib/studium/yaml/log_dir.yml +1 -0
  844. data/lib/studium/yaml/main_topic.yml +11 -0
  845. data/lib/studium/yaml/max_stats.yml +249 -0
  846. data/lib/studium/yaml/meta_themes/README.md +13 -0
  847. data/lib/studium/yaml/meta_themes/biochemistry.md +6 -0
  848. data/lib/studium/yaml/meta_themes/bioinformatics.md +6 -0
  849. data/lib/studium/yaml/meta_themes/biotechnology.md +9 -0
  850. data/lib/studium/yaml/meta_themes/cellbiology.md +9 -0
  851. data/lib/studium/yaml/meta_themes/chemistry.md +9 -0
  852. data/lib/studium/yaml/meta_themes/genetics.md +10 -0
  853. data/lib/studium/yaml/meta_themes/immunology.md +5 -0
  854. data/lib/studium/yaml/meta_themes/metabolic_pathways.md +12 -0
  855. data/lib/studium/yaml/meta_themes/molecular_biology.md +9 -0
  856. data/lib/studium/yaml/meta_themes/protein_engineering.md +10 -0
  857. data/lib/studium/yaml/meta_themes/statistics.md +2 -0
  858. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  859. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  860. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  861. data/lib/studium/yaml/n_total_questions.yml +1 -0
  862. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  863. data/lib/studium/yaml/semester_planner/README.md +4 -0
  864. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  865. data/lib/studium/yaml/show_topic.yml +1 -0
  866. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  867. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  868. data/lib/studium/yaml/statistics/statistics.yml +75 -0
  869. data/lib/studium/yaml/week/01_monday.yml +25 -0
  870. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  871. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  872. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  873. data/lib/studium/yaml/week/05_friday.yml +31 -0
  874. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  875. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  876. data/lib/studium/yaml/week/README.md +10 -0
  877. data/lib/studium.rb +5 -0
  878. data/studium.gemspec +82 -0
  879. data/test/testing_studium.rb +244 -0
  880. data/test/testing_studium_base_class.rb +31 -0
  881. data/test/testing_the_file_lecture_information.rb +18 -0
  882. data/test/testing_time_component.rb +29 -0
  883. metadata +1094 -0
@@ -0,0 +1,3538 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # require 'studium/toplevel_methods/find_exam_topic_and_exam_title.rb'
6
+ # Studium.find_corresponding_exam_topic()
7
+ # =========================================================================== #
8
+ module Studium
9
+
10
+ require 'studium/constants/constants.rb'
11
+ require 'studium/toplevel_methods/n_topics_available.rb'
12
+
13
+ # ========================================================================= #
14
+ # === Studium.find_corresponding_exam_topic
15
+ #
16
+ # This method will expand from any input towards a (hopefully) locally
17
+ # existing file under the exam_topics/ directory.
18
+ #
19
+ # The match that will be returned, must be downcased, because all the
20
+ # files in the exam_topics/ directory are also downcased.
21
+ #
22
+ # Do not forget that when you add an entry here, to also add the
23
+ # title in the file find_corresponding_exam_title.rb
24
+ #
25
+ # Usage examples:
26
+ #
27
+ # x = Studium.find_corresponding_exam_topic('imm') # => "immunologie"
28
+ # x = Studium.find_corresponding_exam_topic('mphysio') # => "mikrobielle_physiologie"
29
+ #
30
+ # ========================================================================= #
31
+ def self.find_corresponding_exam_topic(
32
+ i, be_verbose = true
33
+ )
34
+ case be_verbose
35
+ # ======================================================================= #
36
+ # === :be_verbose
37
+ # ======================================================================= #
38
+ when :be_verbose
39
+ be_verbose = true
40
+ # ======================================================================= #
41
+ # === :be_quiet
42
+ # ======================================================================= #
43
+ when :be_quiet
44
+ be_verbose = false
45
+ end
46
+ if i.is_a?(Array) and i.empty? # Assume ARGV Array given here.
47
+ i = :rand # Use a default assignment for random input in this case.
48
+ end
49
+ begin
50
+ i = i.first if i.is_a? Array
51
+ i = i.to_s.downcase # Always work with Strings past this point.
52
+ rescue ArgumentError => error
53
+ pp error
54
+ pp i
55
+ e i.encoding.to_s
56
+ exit # ← We exit here so that we can debug this situation.
57
+ end
58
+ # ======================================================================= #
59
+ # We chop away from input that contains ' ('.
60
+ # ======================================================================= #
61
+ if i.include? ' ('
62
+ i = i[0, i.index(' (')]
63
+ end
64
+ i = DEFAULT_TOPIC if i == 'def' # This constant is defined in the file constants.rb.
65
+ i = i.chomp.delete('?') # Make the input a bit prettier.
66
+ case i # (Case tag, case tag)
67
+ when 'rand',
68
+ 'random',
69
+ 'random_question',
70
+ 'random_topic' # Fetch a random question here.
71
+ # ===================================================================== #
72
+ # We semi-"cheat" here by simply reading in the available files.
73
+ # ===================================================================== #
74
+ i = File.basename(
75
+ Dir[directory_to_the_exam_topics?+'*'].sample
76
+ ) # We need the constant EXAM_TOPICS here.
77
+ end
78
+ i =
79
+ case i # case tag
80
+ # ======================================================================= #
81
+ # === allgemeine_genetik
82
+ # ======================================================================= #
83
+ when '1',
84
+ 'schweyen',
85
+ 'schw',
86
+ 's',
87
+ 'amg',
88
+ 'mg',
89
+ 'genetik',
90
+ 'gen',
91
+ 'fragen_amg',
92
+ 'allgemeine_genetik',
93
+ 'amg1',
94
+ 'am',
95
+ 'genetics',
96
+ /^allgemeine(-|_| |,)?genetik$/i,
97
+ 'agm'
98
+ 'allgemeine_genetik'
99
+ # ======================================================================= #
100
+ # === basic_chemistry
101
+ # ======================================================================= #
102
+ when '2','chem',
103
+ 'chemie',
104
+ 'chemi',
105
+ 'chem1',
106
+ 'chemie1',
107
+ /^-?-?basic(_|-| |,)?chemistry/,
108
+ 'basic chemistry',
109
+ /^chemistry\??$/i
110
+ 'basic_chemistry'
111
+ # ======================================================================= #
112
+ # === mixed
113
+ # ======================================================================= #
114
+ when '3',
115
+ 'misc',
116
+ 'mixed',
117
+ 'misc?',
118
+ /^-?-?qamisc(_|-| |,)?$/i
119
+ 'mixed'
120
+ # ======================================================================= #
121
+ # === mikrobiologie1
122
+ # ======================================================================= #
123
+ when '4','wagner','w',
124
+ 'mikrobio?','mikrobio',
125
+ 'mikrobiologie',
126
+ 'mo',
127
+ 'witte',
128
+ 'allgemeine_mikrobiologie',
129
+ 'allgemeinemikrobiologie',
130
+ 'moll',
131
+ 'amm',
132
+ 'amm1',
133
+ 'allgemeine mikrobiologie',
134
+ 'microbiology1',
135
+ 'mikrobiologie1',
136
+ /^witte1?\??$/i,
137
+ /^bacteria$/i,
138
+ /^basic(_|-| |,)?microbiology$/i
139
+ 'allgemeine_mikrobiologie'
140
+ # ======================================================================= #
141
+ # === entwicklungsbiologie
142
+ # ======================================================================= #
143
+ when '5','entwicklungsbiologie','embryologie_und_entwicklung',
144
+ 'embryologie','emb','entwicklung','entw','devel','embroy',
145
+ /embryo?/,
146
+ 'devbio',
147
+ /^developmental(_|-| |,)?biology$/i,
148
+ 'entwicklungsgenetik',
149
+ 'ebio',
150
+ 'dev',
151
+ 'embryologieundentwicklung',
152
+ 'embryologie und entwicklung',
153
+ 'modellorganismen'
154
+ 'embryologie_und_entwicklung'
155
+ # ======================================================================= #
156
+ # === computer
157
+ # ======================================================================= #
158
+ when '6','computer','computer_fragen',
159
+ 'fragenübercomputer',
160
+ 'fragen über computer',
161
+ 'computerfragen',
162
+ 'computer fragen',
163
+ 'compu',
164
+ /^computer(_|-| |,)?science$/i
165
+ 'computer_science'
166
+ # ======================================================================= #
167
+ # === pflanzenwissenschaften
168
+ # ======================================================================= #
169
+ when '7','plant',
170
+ 'ab2','pflanzen','fragen_ab2','plants',
171
+ 'pflanzenwissenschaft','pflanzenwissenschaften',
172
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der(_|-| |,)?pflanzen?$/i,
173
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der$/i,
174
+ /^pflanze1$/i,
175
+ 'ab',
176
+ 'strukturundfunktionderpflanzen',
177
+ /^botanik\??$/i
178
+ 'pflanzenwissenschaften'
179
+ # ======================================================================= #
180
+ # === immunologie
181
+ # ======================================================================= #
182
+ when '8','immuno','fragen_immunologie','immunologie',
183
+ 'imm',
184
+ 'immunology',
185
+ 'imuno',
186
+ 'immuno1',
187
+ 'imm1',
188
+ 'immun',
189
+ /^basic(_|-| |,)?immunology$/i
190
+ 'immunologie'
191
+ # ======================================================================= #
192
+ # === virologie
193
+ # ======================================================================= #
194
+ when '9','virologie','vir','virus',
195
+ 'viruses',
196
+ 'v',
197
+ 'vi',
198
+ 'viros',
199
+ 'virologieallgemein',
200
+ 'basic_virology',
201
+ 'basicvirology',
202
+ 'bvirus',
203
+ 'vir1',
204
+ 'basic virology',
205
+ 'virology1',
206
+ 'virus1',
207
+ /^Virologie(-|_| |,)?Allgemein$/i,
208
+ /^basic(-|_| |,)?virology$/i,
209
+ /^qavirus\??$/i
210
+ 'basic_virology'
211
+ # ======================================================================= #
212
+ # === genexpression
213
+ # ======================================================================= #
214
+ when '10',
215
+ 'genexpression',
216
+ /^genexo?$/i,
217
+ 'genx',
218
+ 'fragen_genex',
219
+ 'def',
220
+ 'default',
221
+ 'genexpresse',
222
+ 'genex1',
223
+ 'enex',
224
+ 'gneex'
225
+ 'genexpression'
226
+ # ======================================================================= #
227
+ # === basic_biotechnology
228
+ # ======================================================================= #
229
+ when '11',
230
+ 'biotech',
231
+ 'bio',
232
+ 'btech',
233
+ 'biotechnologie_tu_wien',
234
+ 'biotechnologietuwien',
235
+ 'fragen_biotechnologie_tu_wien',
236
+ /^basic(_|-| |,)?biotech$/i,
237
+ /^basic(_|-| |,)?biotechnology$/i,
238
+ /^biotechnologie$/i,
239
+ 'biotech1',
240
+ 'biotehc',
241
+ 'bech1',
242
+ 'biotechnology1',
243
+ 'bach1'
244
+ 'basic_biotechnology'
245
+ # ======================================================================= #
246
+ # === bioinformatik
247
+ # ======================================================================= #
248
+ when '12',
249
+ 'bioinformatik',
250
+ 'bioinf',
251
+ 'bioinfo',
252
+ 'bioinformatics',
253
+ 'binf',
254
+ 'bioinfor',
255
+ 'bioinformatic'
256
+ 'bioinformatics'
257
+ # ======================================================================= #
258
+ # === verhalten
259
+ # ======================================================================= #
260
+ when '13',
261
+ 'verhalten',
262
+ 'verhaltensbiologie',
263
+ 'ethologie',
264
+ 'neuro',
265
+ 'neurobiologie',
266
+ 'neruo',
267
+ 'neurobiology',
268
+ 'neuron'
269
+ 'neurobiology'
270
+ # ======================================================================= #
271
+ # === physics
272
+ # ======================================================================= #
273
+ when '14',
274
+ 'physik',
275
+ 'array_fragen_physik',
276
+ 'fragen_physik',
277
+ 'physics',
278
+ /^qaphysik\??$/i,
279
+ /^physik1$/i
280
+ 'physik'
281
+ # ======================================================================= #
282
+ # === mathematics
283
+ # ======================================================================= #
284
+ when '15','math',
285
+ 'mat',
286
+ 'mathematik',
287
+ 'mathematic',
288
+ 'array_math',
289
+ 'mathematics',
290
+ 'basic_math',
291
+ /^qa?math\??$/,
292
+ 'mathe'
293
+ 'mathematics'
294
+ # ======================================================================= #
295
+ # === zoology
296
+ # ======================================================================= #
297
+ when '16',
298
+ 'zoologie','ab4',
299
+ 'zoo',
300
+ 'tiere',
301
+ 'array_zoologie',
302
+ 'zoology',
303
+ /^allgemeine(_|-| |,)?zoologie$/i
304
+ 'zoologie'
305
+ # ======================================================================= #
306
+ # === nanotech
307
+ # ======================================================================= #
308
+ when '17',
309
+ 'nanotech',
310
+ 'nanotechnologie',
311
+ 'nanotechnology',
312
+ 'nanobiotechnologie',
313
+ 'array_fragen_nanotechnologie',
314
+ /^fragen_?nanotechnologie/,
315
+ 'nano',
316
+ 'anno',
317
+ 'nanobiotech',
318
+ 'nanomedicine',
319
+ /^qa?(_|-| |,)?nano\??$/i
320
+ 'nanotechnologie'
321
+ # ======================================================================= #
322
+ # === medizin
323
+ # ======================================================================= #
324
+ when '18',
325
+ 'medizin',
326
+ 'fragen_medizin',
327
+ 'medicine',
328
+ 'biomed',
329
+ 'biomedizin',
330
+ 'biomedicine',
331
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinische(_|-| |,)?technik$/i,
332
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinisc$/i
333
+ 'medizin_und_biomedizinische_technik'
334
+ # ======================================================================= #
335
+ # === organische_chemie
336
+ # ======================================================================= #
337
+ when '19','orgc',
338
+ 'organische_chemie',
339
+ 'org',
340
+ 'fragen_organische_chemie',
341
+ 'organische chemie',
342
+ 'orgc1',
343
+ 'org1',
344
+ 'organischechemie',
345
+ 'orgch',
346
+ 'organic_chemistry1',
347
+ 'ogc',
348
+ /^organic(_|-| |,)?chemistry$/i
349
+ 'organische_chemie'
350
+ # ======================================================================= #
351
+ # === analytische_chemie
352
+ # ======================================================================= #
353
+ when '20','ana','analytische_chemie',
354
+ 'analyt',
355
+ 'analytischechemie',
356
+ 'fragen_analytische_chemie',
357
+ 'analytik',
358
+ 'analytische_chemie_1',
359
+ 'analytische_chemie1',
360
+ 'analytische chemie',
361
+ 'analytischechemie1',
362
+ 'analytische chemie 1',
363
+ 'analytical_chemistry',
364
+ 'analyticchemistry',
365
+ 'analytical_chem',
366
+ 'anachem'
367
+ 'analytische_chemie_1'
368
+ # ======================================================================= #
369
+ # === ökologie
370
+ # ======================================================================= #
371
+ when '21','ecology','fragen_ecology','e',
372
+ 'ecology?',
373
+ 'öko',
374
+ 'ökologie',
375
+ 'ecol',
376
+ 'eco',
377
+ 'Ökologie'
378
+ 'ecology'
379
+ # ======================================================================= #
380
+ # === physiologie
381
+ # ======================================================================= #
382
+ when '22','ab3','physiologie','phys','fragen_physiologie',
383
+ 'physio','physiology',
384
+ 'histologie',
385
+ 'histology',
386
+ 'physi',
387
+ /^physiology(_|-| |,)?and(_|-| |,)?histology/i,
388
+ /^qapysio\??$/i,
389
+ /^qaphysio\??$/i
390
+ 'physiology_and_histology'
391
+ # ======================================================================= #
392
+ # === vektor
393
+ # ======================================================================= #
394
+ when '23',
395
+ 'vektor',
396
+ 'vector','vectors','vektoren',
397
+ 'fragen_vektoren',
398
+ 'genetherapy',
399
+ 'gentherapie',
400
+ 'vektorenindergentechnologie',
401
+ 'genthera',
402
+ 'vektoren in der gentechnologie',
403
+ 'vektors',
404
+ 'gene_therapy',
405
+ 'viral_vectors',
406
+ 'gentherapy',
407
+ 'viralvectors',
408
+ /^vektoren(_|-| |,)?in(_|-| |,)?der(_|-| |,)?gentechnologie$/i,
409
+ /^vektoren(_|-| |,)?in(_|-| |,)?der(_|-| |,)?gentechno$/i,
410
+ /^vectors(_|-| |,)?and(_|-| |,)?gene(_|-| |,)?therapy$/i
411
+ 'vectors_and_gene_therapy'
412
+ # ======================================================================= #
413
+ # === phytochemie
414
+ # ======================================================================= #
415
+ when '24','fragen_phytochemie','phytochem','phytochemie'
416
+ 'phytochemie'
417
+ # ======================================================================= #
418
+ # === aging
419
+ # ======================================================================= #
420
+ when '25',
421
+ 'aging',
422
+ 'age',
423
+ 'ageing'
424
+ 'ageing'
425
+ # ======================================================================= #
426
+ # === bioprozesstechnik
427
+ # ======================================================================= #
428
+ when '26','bioprozesstechnik',
429
+ 'technik',
430
+ 'bioprozess',
431
+ 'bioverfahren',
432
+ 'bioverfahrenstechnik',
433
+ 'bioprocess'
434
+ 'bioprozesstechnik'
435
+ # ======================================================================= #
436
+ # === mikrobio_tuwien
437
+ # ======================================================================= #
438
+ when '27',
439
+ 'tuwien_microbiology','microbiology',
440
+ 'tuwien',
441
+ 'mikrobio_tuwien',
442
+ 'micro',
443
+ 'tuwien_microbio',
444
+ 'tuwienmicrobiology',
445
+ 'tuwien_micro',
446
+ 'technische_mikrobiologie',
447
+ 'technischemikrobiologie',
448
+ 'tu wien microbiology',
449
+ 'technische mikrobiologie',
450
+ 'tumicrobiologie',
451
+ 'tumicro',
452
+ 'tuwienmikro',
453
+ 'tuwien_mikrobiologie',
454
+ 'tuwienmikrobiologie',
455
+ /^tu(_|-| |,)?microbiology$/,
456
+ /^tu(_|-| |,)?microbio$/,
457
+ /^tu(_|-| |,)?wien(_|-| |,)?microbiology$/
458
+ 'technische_mikrobiologie'
459
+ # ======================================================================= #
460
+ # === cellbiology
461
+ # ======================================================================= #
462
+ when '28','cellbiology','cell','cellbio','zell','clel',
463
+ 'zellbiologietierischersysteme',
464
+ 'methodeninderzellbiologie',
465
+ 'cel',
466
+ 'cell1',
467
+ 'cellbio1'
468
+ 'cellbiology'
469
+ # ======================================================================= #
470
+ # === physikalische_chemie
471
+ # ======================================================================= #
472
+ when '29','physikalische_chemie','physchemie','pchemie',
473
+ 'physikalischechemie','physikalische chemie',
474
+ /^physchem$/i
475
+ 'physikalische_chemie'
476
+ # ======================================================================= #
477
+ # === verfahrenstechnik
478
+ # ======================================================================= #
479
+ when '30',
480
+ 'verfahrenstechnik'
481
+ 'verfahrenstechnik'
482
+ # ======================================================================= #
483
+ # === analytische_chemie_2
484
+ # ======================================================================= #
485
+ when '31',
486
+ 'analytische_chemie_2',
487
+ 'ana2',
488
+ 'analytische_chemie2','analytischechemie2',
489
+ 'analytische chemie 2'
490
+ 'analytische_chemie_2'
491
+ # ======================================================================= #
492
+ # === gentechnik
493
+ # ======================================================================= #
494
+ when '32',
495
+ 'gentechnik',
496
+ 'gentechnik1',
497
+ /^gene?tech?$/,
498
+ /^gene?tech1?$/,
499
+ /^gene?tehc?$/,
500
+ /^praktische(_|-| |,)?biochemie$/,
501
+ /^gentechnik(_|-| |,)?und(_|-| |,)?praktische(_|-| |,)?biochemie$/,
502
+ /^gentechnik(_|-| |,)?und(_|-| |,)?praktische\??$/
503
+ 'gentechnik_und_praktische_biochemie'
504
+ # ======================================================================= #
505
+ # === economy
506
+ # ======================================================================= #
507
+ when '33',
508
+ 'economy',
509
+ 'ökonomie',
510
+ 'ökonom',
511
+ 'ökonomie?',
512
+ 'ecomoy',
513
+ /^qaeconomy\??$/i
514
+ 'economy'
515
+ # ======================================================================= #
516
+ # === geschichte
517
+ # ======================================================================= #
518
+ when '34','geschichte',
519
+ 'history',
520
+ /^qa(_|-| |,)?geschichte\??$/
521
+ 'geschichte'
522
+ # ======================================================================= #
523
+ # === festkörperchemie
524
+ # ======================================================================= #
525
+ when '35','festkoerper_chemie',
526
+ 'fest',
527
+ 'festkoerper',
528
+ 'festkörper_chemie',
529
+ 'festkörper chemie',
530
+ 'festkoerperchemie',
531
+ 'festkoerper chemie',
532
+ 'festkörperchemie',
533
+ 'festkÖrperchemie',
534
+ 'geochemistry',
535
+ 'geochem',
536
+ 'geochemist',
537
+ 'festkörper',
538
+ /^festkörperchemie(_|-| |,)?und(_|-| |,)?geochemie$/i,
539
+ /^festkörper(_|-| |,)?chemie(_|-| |,)?und(_|-| |,)?geochemie$/i,
540
+ /^festkörper(_|-| |,)?chemie(_|-| |,)?und(_|-| |,)?geo$/i
541
+ 'geochemistry'
542
+ # ======================================================================= #
543
+ # === geologie
544
+ # ======================================================================= #
545
+ when '36','geologie',
546
+ 'array_geologie',
547
+ 'array_fragen_geologie',
548
+ 'geo',
549
+ /^geologie(_|-| |,)?und(_|-| |,)?mineralogie$/i,
550
+ /^fragen_?geologie/,'mineralogie',
551
+ 'mineral',
552
+ 'ego',
553
+ /^qageo\??/
554
+ 'geologie_und_mineralogie'
555
+ # ======================================================================= #
556
+ # === anorganische_chemie
557
+ # ======================================================================= #
558
+ when '37','ano','anorganische_chemie','anorganischechemie',
559
+ 'anorganisch','achem','array_anorganische_chemie',
560
+ 'anon',
561
+ /anon1$/,
562
+ 'anorganische chemie',
563
+ 'anon_chem',
564
+ 'anorg',
565
+ /anon_?chemie$/,
566
+ /anonchem/
567
+ 'anorganische_chemie'
568
+ # ======================================================================= #
569
+ # === law
570
+ # ======================================================================= #
571
+ when '38','array_law','law','arraylaw','lawandorder',
572
+ 'law and order',
573
+ 'recht',
574
+ 'rechtsgrundlagen'
575
+ 'rechtsgrundlagen'
576
+ # ======================================================================= #
577
+ # === organische_chemie2
578
+ # ======================================================================= #
579
+ when '39','orgc2','organische_chemie2','org2',
580
+ 'fragen_organische_chemie2',
581
+ 'organischechemie2',
582
+ 'organische_chemie_2',
583
+ 'organische chemie 2',
584
+ 'organic_chemistry2'
585
+ 'organische_chemie_2'
586
+ # ======================================================================= #
587
+ # === wasserkunde
588
+ # ======================================================================= #
589
+ when '40','wasserkunde','biologie_des_wasser',
590
+ 'biologiedeswasser','water',
591
+ 'wasser',
592
+ 'watter',
593
+ 'biologiedeswassers',
594
+ 'biologie des wassers',
595
+ 'biologie des wasser'
596
+ 'wasserkunde'
597
+ # ======================================================================= #
598
+ # === technische_chemie
599
+ # ======================================================================= #
600
+ when '41',
601
+ /^-?-?technische(_|-| |,)?chemi?e?$/i,
602
+ 'tech',
603
+ 'technologie_chemie',
604
+ /tu_?chem/
605
+ 'technische_chemie'
606
+ # ======================================================================= #
607
+ # === biologie
608
+ # ======================================================================= #
609
+ when '42','biologie','biology'
610
+ 'biologie'
611
+ # ======================================================================= #
612
+ # === umwelt
613
+ # ======================================================================= #
614
+ when '43','umwelt','umweltchemie','uchem'
615
+ 'umweltchemie'
616
+ # ======================================================================= #
617
+ # === signal_transduction
618
+ # ======================================================================= #
619
+ when '44','signal','ldigc',
620
+ 'signaling',
621
+ 'laser',
622
+ /^signal(_|-| |,)?transduction$/i,
623
+ /^signal(_|-| |,)?transduction(_|-| |,)?and(_|-| |,)?laser(_|-| |,)?systems$/i,
624
+ /^signal(_|-| |,)?transduktion(_|-| |,)?und(_|-| |,)?lasersysteme$/i,
625
+ /^signal(_|-| |,)?transduktion(_|-| |,)?und(_|-| |,)?la$/i
626
+ 'signal_transduction_and_laser_systems'
627
+ # ======================================================================= #
628
+ # === paläobiologie
629
+ # ======================================================================= #
630
+ when '45','paleo','paläobiology','paleobiology',
631
+ 'paläo','paläobiologie'
632
+ 'paleobiology'
633
+ # ======================================================================= #
634
+ # === lebensmittel
635
+ # ======================================================================= #
636
+ when '46','lebensmittel',
637
+ 'food',
638
+ 'foodsies'
639
+ 'lebensmittel'
640
+ # ======================================================================= #
641
+ # === medchem
642
+ # ======================================================================= #
643
+ when '47',
644
+ 'medchem',
645
+ 'medchems',
646
+ 'main',
647
+ /^medizinische(_| )?chemie$/i,
648
+ /^medizinische(_| )?chemie(_| )?und(_| )?pharmazie$/i,
649
+ /^medizinische(_| )?chemie(_| )?und(_| )?p$/i
650
+ 'medizinische_chemie_und_pharmazie'
651
+ # ======================================================================= #
652
+ # === cancerbiology
653
+ # ======================================================================= #
654
+ when '48','cancer','krebs','cancerbiology',
655
+ 'tumor',
656
+ 'oncology',
657
+ 'onkologie',
658
+ 'onco',
659
+ 'cacner',
660
+ /^qacancer\??$/i
661
+ 'cancerbiology'
662
+ # ======================================================================= #
663
+ # === cytogenetik
664
+ # ======================================================================= #
665
+ when '49',
666
+ 'cytogenetik',
667
+ 'cyto',
668
+ 'cgen',
669
+ 'cytobio',
670
+ 'chromo',
671
+ 'chromosomenbiologie',
672
+ 'cytogen',
673
+ 'cytogenetics',
674
+ 'chromosomen',
675
+ 'cytologie',
676
+ 'cytology',
677
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromosome(_|-| |,)?biology$/i,
678
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromoso$/i
679
+ 'cytogenetics_and_chromosome_biology'
680
+ # ======================================================================= #
681
+ # === biostatistik
682
+ # ======================================================================= #
683
+ when '50','biostatistik','biostat',
684
+ 'stats',
685
+ 'stat',
686
+ 'statistik',
687
+ 'statistic',
688
+ 'statistics',
689
+ 'statistk?',
690
+ /^qastat\??$/i,
691
+ /^qastatistik\??$/i
692
+ 'statistik'
693
+ # ======================================================================= #
694
+ # === biochemie
695
+ # ======================================================================= #
696
+ when '51',
697
+ 'biochemie',
698
+ 'biochem',
699
+ 'bchem',
700
+ 'biochemistry',
701
+ 'einfuehrung_biochemie',
702
+ 'basic_biochemistry',
703
+ 'biochem1',
704
+ 'bem1',
705
+ 'basicbiochemistry',
706
+ 'basic biochemistry',
707
+ 'bem',
708
+ 'grundlagenderbiochemie',
709
+ 'ebm',
710
+ 'bme',
711
+ /^basic(_|-| |,)?biochemistry\??$/i
712
+ 'basic_biochemistry'
713
+ # ======================================================================= #
714
+ # === advanced_biochemistry
715
+ # ======================================================================= #
716
+ when '52','biochemie2',
717
+ /biochem2\??$/i,
718
+ 'bchem2',
719
+ 'biochemistry2',
720
+ 'biochemie_ii','biochemie_master','bem2',
721
+ /advanced(_|-| |,)?biochemistry\??$/i,
722
+ 'bemchem2',
723
+ 'biochemiefürbiologen'
724
+ 'advanced_biochemistry'
725
+ # ======================================================================= #
726
+ # === fortgeschrittene_physik
727
+ # ======================================================================= #
728
+ when '53',
729
+ 'physik2',
730
+ 'fortgeschrittene_physik',
731
+ 'fortgeschrittenephysik',
732
+ 'fortgeschrittene physik'
733
+ 'fortgeschrittene_physik'
734
+ # ======================================================================= #
735
+ # === bioelektrochemie
736
+ # ======================================================================= #
737
+ when '54',
738
+ 'bioelektrochemie',
739
+ 'bioele',
740
+ 'bioelek'
741
+ 'bioelektrochemie'
742
+ # ======================================================================= #
743
+ # === advanced_biotechnology
744
+ # ======================================================================= #
745
+ when '55',
746
+ /^biotech2$/,
747
+ /^advanced(_|-| |,)?biotechnology$/,
748
+ /^advanced(_|-| |,)?biotechn$/,
749
+ 'bech2',
750
+ 'biotechnology2'
751
+ 'advanced_biotechnology'
752
+ # ======================================================================= #
753
+ # === epigenetik
754
+ # ======================================================================= #
755
+ when '56','epigenetik','epi','epigenetics',
756
+ /epigen/ # <-- This should suffice for now.
757
+ 'epigenetik'
758
+ # ======================================================================= #
759
+ # === bioanalytik
760
+ # ======================================================================= #
761
+ when '57',
762
+ 'bioanalytik',
763
+ 'bioana',
764
+ 'bioanalytics',
765
+ 'bioanalytic',
766
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensoren$/,
767
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensor$/
768
+ 'bioanalytik_und_biosensoren'
769
+ # ======================================================================= #
770
+ # === genomics
771
+ # ======================================================================= #
772
+ when '58','genomics','genomik','genome','genom',
773
+ 'genomes',
774
+ 'metagenomics',
775
+ /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/,
776
+ /^genomik(_|-| |,)?und(_|-| |,)?metagenomik$/,
777
+ /^genomies$/
778
+ 'genomics_and_metagenomics'
779
+ # ======================================================================= #
780
+ # === clinical_microbiology
781
+ # ======================================================================= #
782
+ when '59','clinical_microbiology','clinicalbac','clinical_micro',
783
+ 'clinicalmicrobiology','clinical',
784
+ 'clinic',
785
+ 'clinical microbiology',
786
+ 'clini',
787
+ 'clinci',
788
+ 'clinical_microscopy',
789
+ /^clinical(_|-| |,)?microbiologie\??$/i,
790
+ /^medmikro\??$/i
791
+ 'clinical_microbiology'
792
+ # ======================================================================= #
793
+ # === mikrobielle_physiologie
794
+ # ======================================================================= #
795
+ when '60',
796
+ /^mikrobielle_?physiologie/i,
797
+ 'mikphysio',
798
+ 'mikphysiologie',
799
+ 'mphysio',
800
+ 'molekulare_physiologie_industrieller_mikroorganismen',
801
+ 'molekulare_physiologie',
802
+ 'molphysio',
803
+ 'molekularephysiologieindustriellermikroorganismen',
804
+ 'molekulare physiologie industrieller mikroorganismen',
805
+ 'mikphys',
806
+ 'mpyhs',
807
+ 'mphys',
808
+ 'mphysiologie',
809
+ /^-?-?mikrobielle(_|-| |,)?physiologie\??$/i
810
+ 'mikrobielle_physiologie'
811
+ # ======================================================================= #
812
+ # === molekulare_medizin
813
+ # ======================================================================= #
814
+ when '61',
815
+ /^-?-?molekulare(_|-| |,)?medizin$/i,
816
+ 'molmed',
817
+ 'molmed1',
818
+ 'molekularemedizin',
819
+ 'molmed2'
820
+ 'molekulare_medizin'
821
+ # ======================================================================= #
822
+ # === evolution
823
+ # ======================================================================= #
824
+ when '62','evolution','evo',
825
+ 'eov',
826
+ 'ev',
827
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionary(_|-| |,)?genetics$/i,
828
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionar$/i,
829
+ /^qaevo\??$/i
830
+ 'evolution_and_evolutionary_genetics'
831
+ # ======================================================================= #
832
+ # === artificial_intelligence
833
+ # ======================================================================= #
834
+ when '63',
835
+ /^artificial$/i,
836
+ /^artificial(_|-| |,)?intelligence\??$/i,
837
+ /^AI$/i
838
+ 'artificial_intelligence'
839
+ # ======================================================================= #
840
+ # === ethik
841
+ # ======================================================================= #
842
+ when '64',
843
+ 'ethik',
844
+ 'ethics',
845
+ 'ethic',
846
+ 'umweltethik',
847
+ 'bioethik'
848
+ 'ethik'
849
+ # ======================================================================= #
850
+ # === hygiene
851
+ # ======================================================================= #
852
+ when '65',
853
+ 'hygiene',
854
+ 'hyg',
855
+ 'hyge',
856
+ 'hy'
857
+ 'hygiene'
858
+ # ======================================================================= #
859
+ # === rna
860
+ # ======================================================================= #
861
+ when '66','rna','dna','rna_and_dna','rna and dna',
862
+ 'rnaanddna',/^mRNA$/i,
863
+ /^qarna\??$/i,
864
+ /^dna(_|-| |,)?und(_|-| |,)?rna$/i
865
+ 'rna_and_dna'
866
+ # ======================================================================= #
867
+ # === research_topics_in_immunobiology
868
+ # ======================================================================= #
869
+ when '67','research_topics_in_immunobiology',
870
+ 'research_topics_in_immunbiology',
871
+ 'researchtopicsinimmunobiology',
872
+ 'research',
873
+ 'research topics in immunobiology',
874
+ /^research(_|-| |,)?topics$/i,
875
+ /^research(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?immuno$/i
876
+ 'research_topics_in_immunobiology'
877
+ # ======================================================================= #
878
+ # === fungi
879
+ # ======================================================================= #
880
+ when '68',
881
+ 'fungi',
882
+ 'pilz',
883
+ 'pilze',
884
+ 'fungus'
885
+ 'fungi'
886
+ # ======================================================================= #
887
+ # === prok
888
+ # ======================================================================= #
889
+ when '69',
890
+ 'prokaryotes',
891
+ 'prokarya',
892
+ 'prokaryote_genetics',
893
+ 'prokaryotegenetics',
894
+ 'bac',
895
+ 'prok',
896
+ 'prokaryote genetics',
897
+ 'ecoli',
898
+ 'pgenetics',
899
+ 'prokaroytic_genetics',
900
+ /^prokaryote(_|-| |,)?genetics$/i,
901
+ /^prok(_|-| |,)?genetics$/i,
902
+ /^prok(_|-| |,)?gen$/i,
903
+ /^prok1$/i,
904
+ /^qaprok\??$/i
905
+ 'prokaryote_genetics'
906
+ # ======================================================================= #
907
+ # === wissenschaft
908
+ # ======================================================================= #
909
+ when '70','wissenschaft','science','sci'
910
+ 'wissenschaft'
911
+ # ======================================================================= #
912
+ # === anthropologie
913
+ # ======================================================================= #
914
+ when '71','anthropologie','anthro','ant','an'
915
+ 'anthropologie'
916
+ # ======================================================================= #
917
+ # === fortgeschrittene_gentechnik
918
+ # ======================================================================= #
919
+ when '72',
920
+ 'gentech2',
921
+ 'gentechnik2',
922
+ 'fortgeschrittene_gentechnik',
923
+ 'fortgeschrittenegentechnik',
924
+ 'fortgeschrittene gentechnik',
925
+ 'methoden',
926
+ /^fortgeschrittene(_|-| |,)?gentechn$/i
927
+ 'fortgeschrittene_gentechnik'
928
+ # ======================================================================= #
929
+ # === fortgeschrittene_genetik
930
+ # ======================================================================= #
931
+ when '73',
932
+ 'amg2',
933
+ 'fortgeschrittene_genetik',
934
+ 'mg2',
935
+ 'fortgeschrittenegenetik',
936
+ 'fortgeschrittene genetik',
937
+ 'genetics2',
938
+ 'dna2',
939
+ 'am2',
940
+ 'agm2'
941
+ 'fortgeschrittene_genetik'
942
+ # ======================================================================= #
943
+ # === pcr
944
+ # ======================================================================= #
945
+ when '74','pcr'
946
+ 'pcr'
947
+ # ======================================================================= #
948
+ # === sex
949
+ # ======================================================================= #
950
+ when '75',
951
+ 'sex',
952
+ 'fortpflanzung',
953
+ 'sexualbiologie',
954
+ /^-?-?sexbio\??$/i
955
+ 'sexualbiologie'
956
+ # ======================================================================= #
957
+ # === populationsgenetik
958
+ # ======================================================================= #
959
+ when '76','populationsgenetik','popgen','evolutionsgenetik',
960
+ 'population',
961
+ 'population_genetics'
962
+ 'populationsgenetik'
963
+ # ======================================================================= #
964
+ # === ökogenetik
965
+ # ======================================================================= #
966
+ when '77','ökogenetik','ökogen','ecogen','ecogenetics',
967
+ 'ECOGENETICS','Ökogenetik'
968
+ 'ecogenetics'
969
+ # ======================================================================= #
970
+ # === pathologie
971
+ # ======================================================================= #
972
+ when '78','pathologie','patho','pathos','PATHOLOGIE',
973
+ 'pathology','pathophysio','pathophysiologie',
974
+ /^qapatho\??$/i
975
+ 'pathologie'
976
+ # ======================================================================= #
977
+ # === allergie
978
+ # ======================================================================= #
979
+ when '79',
980
+ 'allergie',
981
+ 'allergy',
982
+ 'allergien',
983
+ 'allergen',
984
+ 'allergies'
985
+ 'allergie'
986
+ # ======================================================================= #
987
+ # === structural_biology
988
+ # ======================================================================= #
989
+ when '80','proteinstruktur',
990
+ 'struktur',
991
+ 'strukturbiologie',
992
+ 'strukturbio',
993
+ 'strukt',
994
+ 'struct',
995
+ 'struk',
996
+ 'strubi',
997
+ 'struktbio',
998
+ 'strubio',
999
+ 'strub',
1000
+ /^structure\??$/i,
1001
+ /^structural(_|-| |,)?biology/,
1002
+ /^struktur(_|-| |,)?biologie\??$/i
1003
+ 'strukturbiologie'
1004
+ # ======================================================================= #
1005
+ # === chemisches_labor
1006
+ # ======================================================================= #
1007
+ when '81',
1008
+ /^chemisches(_|-| |,)?labor$/i,
1009
+ 'labor',
1010
+ 'chemisches labor',
1011
+ 'chemlabor',
1012
+ 'chemlabor?',
1013
+ 'safety'
1014
+ 'chemisches_labor'
1015
+ # ======================================================================= #
1016
+ # === theoretische_chemie
1017
+ # ======================================================================= #
1018
+ when '82','theoretische_chemie','theoretische chemie labor',
1019
+ 'theoretischechemie','theoretische chemie',
1020
+ 'theochem'
1021
+ 'theoretische_chemie'
1022
+ # ======================================================================= #
1023
+ # === plant_biotechnology
1024
+ # ======================================================================= #
1025
+ when '83',
1026
+ 'plant_biotech',
1027
+ 'plant_biotechnology',
1028
+ 'plant biotechnology',
1029
+ 'plantbiotechnology',
1030
+ 'pbtech',
1031
+ 'pbio',
1032
+ 'plantbiotech',
1033
+ /^pflanzen(_|-| |,)?biotech$/i
1034
+ 'plant_biotechnology'
1035
+ # ======================================================================= #
1036
+ # === bodenkunde
1037
+ # ======================================================================= #
1038
+ when '84',
1039
+ 'boden',
1040
+ 'bodne',
1041
+ /^bodenkunden?$/i
1042
+ 'bodenkunde'
1043
+ # ======================================================================= #
1044
+ # === advanced_virology
1045
+ # ======================================================================= #
1046
+ when '85',/advanced_?virology/,
1047
+ 'vir2',
1048
+ 'virology2',
1049
+ 'large_viruses',
1050
+ 'largeviruses',
1051
+ 'large viruses',
1052
+ 'virus2',
1053
+ /^advanced(_|-| |,)?virology$/i
1054
+ 'advanced_virology'
1055
+ # ======================================================================= #
1056
+ # === microbial_ecology
1057
+ # ======================================================================= #
1058
+ when '86',
1059
+ 'microbial_ecology','miceco',
1060
+ 'mikrobielleökologie',
1061
+ 'mikrobielle ökologie',
1062
+ 'mikrobielle Ökologie',
1063
+ 'microbialecology',
1064
+ 'mikrobielleÖkologie',
1065
+ 'microbial ecology',
1066
+ 'meco',
1067
+ /^mikrobielle(_|-| |,)?ökologie$/i
1068
+ 'microbial_ecology'
1069
+ # ======================================================================= #
1070
+ # === metabolismus
1071
+ # ======================================================================= #
1072
+ when '87','metabolismus','met','meta','metabolism',
1073
+ /^metabolismus\??$/i
1074
+ 'metabolismus'
1075
+ # ======================================================================= #
1076
+ # === the_cellcycle
1077
+ # ======================================================================= #
1078
+ when '88','cellcycle','cellcyc','cycle?','the_cellcycle',
1079
+ 'the cellcyle',
1080
+ 'thecellcyle',
1081
+ /^cycle$/i,
1082
+ /^the(_|-| |,)?cell(_|-| |,)?cycle$/i,
1083
+ /^the(_|-| |,)?cellcycle$/i,
1084
+ /^the(_|-| |,)?cellcyle$/i,
1085
+ /^cell(_|-| |,)?cycle$/i
1086
+ 'the_cellcycle'
1087
+ # ======================================================================= #
1088
+ # === bioressourcenmanagement
1089
+ # ======================================================================= #
1090
+ when '89',
1091
+ 'bioressourcenmanagement',
1092
+ 'ubrm',
1093
+ 'UBRM',
1094
+ 'ubr',
1095
+ 'ubm',
1096
+ 'bioress',
1097
+ 'bioressourcen'
1098
+ 'bioressourcenmanagement'
1099
+ # ======================================================================= #
1100
+ # === technische_ökologie
1101
+ # ======================================================================= #
1102
+ when '90',
1103
+ 'technical_ecology',
1104
+ 'technische_ökologie',
1105
+ 'technische ökologie',
1106
+ 'tueco',
1107
+ 'technischeÖkologie',
1108
+ 'technische Ökologie',
1109
+ 'technicalecology',
1110
+ 'technical ecology',
1111
+ 'nachhaltigkeit',
1112
+ /^technische(_|-| |,)?ökologie$/i
1113
+ 'technical_ecology'
1114
+ # ======================================================================= #
1115
+ # === agrarökologie
1116
+ # ======================================================================= #
1117
+ when '91',
1118
+ 'agrarökologie',
1119
+ 'agrar',
1120
+ 'agrarwissenschaften',
1121
+ 'agrarwissenschaft',
1122
+ 'agrarÖkologie',
1123
+ 'agrar_ecology',
1124
+ 'agraröko',
1125
+ 'agrarecology',
1126
+ 'agrar ecology'
1127
+ 'agrar_ecology'
1128
+ # ======================================================================= #
1129
+ # === anatomie
1130
+ # ======================================================================= #
1131
+ when '92',
1132
+ 'anatomie',
1133
+ 'anatomy',
1134
+ 'anat',
1135
+ 'anatom',
1136
+ /^-?-?qanatomie\??$/
1137
+ 'anatomie'
1138
+ # ======================================================================= #
1139
+ # === obst_und_weinbau
1140
+ # ======================================================================= #
1141
+ when '93','obst','obstbau',
1142
+ 'obst_und_weinbau','obst und weinbau',
1143
+ 'obstundweinbau'
1144
+ 'obstbau'
1145
+ # ======================================================================= #
1146
+ # === veterinärmedizin
1147
+ # ======================================================================= #
1148
+ when '94','vetmed','vet','veterinarymedicine',
1149
+ 'veterinärmedizin','veterinary medicine',
1150
+ 'veterinary_medicine'
1151
+ 'veterinary_medicine'
1152
+ # ======================================================================= #
1153
+ # === advanced_chemistry
1154
+ # ======================================================================= #
1155
+ when '95','chemie2',
1156
+ 'advanced_chemistry',
1157
+ 'advancedchemistry',
1158
+ 'basicchemistry',
1159
+ 'chemistry2',
1160
+ 'chem2',
1161
+ 'ch2m',
1162
+ 'advanced chemistry'
1163
+ 'advanced_chemistry'
1164
+ # ======================================================================= #
1165
+ # === landtechnik
1166
+ # ======================================================================= #
1167
+ when '96',
1168
+ 'landtechnik',
1169
+ 'grundlagenderlandtechnik',
1170
+ /^grundlagen(_|-| |,)?der(_|-| |,)?landtechnik$/i,
1171
+ /^grundlagen(_|-| |,)?der(_|-| |,)?landtechni$/i
1172
+ 'landtechnik'
1173
+ # ======================================================================= #
1174
+ # === agrarmärkte
1175
+ # ======================================================================= #
1176
+ when '97',
1177
+ 'agrarmärkte',
1178
+ 'agrarmarkt',
1179
+ 'agrarm',
1180
+ 'agrarmarkte'
1181
+ 'agrarmarkt'
1182
+ # ======================================================================= #
1183
+ # === agrarphysik
1184
+ # ======================================================================= #
1185
+ when '98','agrarphysik'
1186
+ 'agrarphysik'
1187
+ # ======================================================================= #
1188
+ # === humanökologie
1189
+ # ======================================================================= #
1190
+ when '99','humanökologie',
1191
+ 'humaneco',
1192
+ 'humanecology',
1193
+ 'human ecology',
1194
+ 'human_ecology'
1195
+ 'human_ecology'
1196
+ # ======================================================================= #
1197
+ # === quality_management
1198
+ # ======================================================================= #
1199
+ when '100',
1200
+ /^quality(_|-| |,)?management$/,
1201
+ /^qmanagement\??$/,
1202
+ /^qualitätsmanagement$/,
1203
+ 'quality',
1204
+ 'qual',
1205
+ 'management',
1206
+ 'qman'
1207
+ 'quality_management'
1208
+ # ======================================================================= #
1209
+ # === translational_control
1210
+ # ======================================================================= #
1211
+ when '101',
1212
+ 'translational_control',
1213
+ 'transcon',
1214
+ 'translationalcontrol',
1215
+ 'transcon?',
1216
+ 'translational control',
1217
+ 'translation',
1218
+ /^translation(_|-| |,)?(_|-| |,)?ribosomes(_|-| |,)?and(_|-| |,)?translational(_|-| |,)?control$/,
1219
+ /^translation(_|-| |,)?(_|-| |,)?ribosomes(_|-| |,)?an$/,
1220
+ /^ribosomes?$/i
1221
+ 'translation_ribosomes_and_translational_control'
1222
+ # ======================================================================= #
1223
+ # === audio
1224
+ # ======================================================================= #
1225
+ when '102','audio','audio?'
1226
+ 'audio'
1227
+ # ======================================================================= #
1228
+ # === umweltbiotechnologie
1229
+ # ======================================================================= #
1230
+ when '103',
1231
+ 'umweltbio',
1232
+ 'umweltbiotechnologie',
1233
+ 'umweltbiotech',
1234
+ 'ubiotech'
1235
+ 'umweltbiotechnologie'
1236
+ # ======================================================================= #
1237
+ # === posttranslationale_modifikation_von_proteinen
1238
+ # ======================================================================= #
1239
+ when '104','posttrans',
1240
+ 'posttranslational','genex2',
1241
+ 'post',
1242
+ 'posttranslationalemodifikationvonproteinen','ptm',
1243
+ 'ptm?','posttranslationale modifikation von proteinen',
1244
+ 'posttranslationale_modifikation_von_proteinen',
1245
+ 'ptms',
1246
+ 'PTMs',
1247
+ /^posttranslationale(_|-| |,)?modifi\??$/i,
1248
+ /^posttranslational(_|-| |,)?modification(_|-| |,)?of(_|-| |,)?_proteins$/i
1249
+ 'posttranslationale_modifikation_von_proteinen'
1250
+ # ======================================================================= #
1251
+ # === bodenmikrobiologie
1252
+ # ======================================================================= #
1253
+ when '105',
1254
+ 'bodenmikrobiologie','boden_mikrobiologie',
1255
+ 'soil_biology',
1256
+ 'soil_microbiology'
1257
+ 'bodenmikrobiologie'
1258
+ # ======================================================================= #
1259
+ # === pflanzenschutz
1260
+ # ======================================================================= #
1261
+ when '106','pflanzenschutz','pflanzenschutz?','pschutz'
1262
+ 'pflanzenschutz'
1263
+ # ======================================================================= #
1264
+ # === stammzellen
1265
+ # ======================================================================= #
1266
+ when '107','stem','ste','stem_cells','stemcells',
1267
+ 'stammzellen','stamm','stem_cells?','stemcell'
1268
+ 'stemcells'
1269
+ # ======================================================================= #
1270
+ # === plant_breeding
1271
+ # ======================================================================= #
1272
+ when '108','pflanzenzüchtung','pflanzenzuechtung',
1273
+ 'plant_breeding',
1274
+ 'plant_zucht',
1275
+ /pflanzenzÜchtung/i,
1276
+ 'pflanzenzucht',
1277
+ 'pzucht',
1278
+ /^-?-?plant_?breeding/
1279
+ 'plant_breeding'
1280
+ # ======================================================================= #
1281
+ # === insects
1282
+ # ======================================================================= #
1283
+ when '109','insects','insekten','insect','ins',
1284
+ 'schmetterlinge','schmetterling'
1285
+ 'insekten'
1286
+ # ======================================================================= #
1287
+ # === mikroskopie
1288
+ # ======================================================================= #
1289
+ when '110',
1290
+ 'microscope',
1291
+ 'mikros',
1292
+ 'mikroskop',
1293
+ 'mikroskope',
1294
+ 'mscope',
1295
+ 'mikroskopie',
1296
+ 'microscop',
1297
+ 'microscopy',
1298
+ 'mopy','moby',
1299
+ 'imaging',
1300
+ /^microscopes$/i,
1301
+ /^imaging(_|-| |,)?and(_|-| |,)?microscopy$/i,
1302
+ /^imaging\??$/i,
1303
+ /^imagining\??$/i
1304
+ 'imaging_and_microscopy'
1305
+ # ======================================================================= #
1306
+ # === aminoacids
1307
+ # ======================================================================= #
1308
+ when '111','aminoacids','aminosäuren','aminoacid',
1309
+ 'amino_acids','Amino Acids','aa','amino',
1310
+ 'amino acids',
1311
+ /^aminoacids\??$/i
1312
+ 'aminoacids'
1313
+ # ======================================================================= #
1314
+ # === enzymes
1315
+ # ======================================================================= #
1316
+ when '112','enzymes','enzyme','enzym','ee','Enzymes',
1317
+ 'enz','ezn',
1318
+ /^enzymes(_|-| |,)?and(_|-| |,)?cofactors\??$/i
1319
+ 'enzymes_and_cofactors'
1320
+ # ======================================================================= #
1321
+ # === proteomik
1322
+ # ======================================================================= #
1323
+ when '113','proteomik','proteomic','proteomics',
1324
+ 'proteome','proteom'
1325
+ 'proteomik'
1326
+ # ======================================================================= #
1327
+ # === advanced_microbiology
1328
+ # ======================================================================= #
1329
+ when '114',
1330
+ 'schäffer_mikrobiologie',
1331
+ 'schäffermikrobiologie',
1332
+ 'schäffer mikrobiologie',
1333
+ 'schäffer','schäff',
1334
+ 'schäffer?',
1335
+ 'schÄffermikrobiologie',
1336
+ 'advanced_microbiology',
1337
+ 'advancedmicrobiology',
1338
+ 'advanced microbiology',
1339
+ 'amm2',
1340
+ 'mikrobiologie2',
1341
+ 'witte2',
1342
+ /^microbiology2\??$/i
1343
+ 'advanced_microbiology'
1344
+ # ======================================================================= #
1345
+ # === plant_anatomy
1346
+ # ======================================================================= #
1347
+ when '115','pflanzenanatomie','plant_anatomy?','panatomy',
1348
+ 'plantanatomy?',
1349
+ 'plant_anatomy',
1350
+ 'plantanatomy',
1351
+ 'panatomie',
1352
+ 'pflanzenphysiologie',
1353
+ 'plantphysiologie',
1354
+ 'ab2anatomie',
1355
+ 'plantanatomie',
1356
+ 'panatome'
1357
+ 'pflanzenanatomie'
1358
+ # ======================================================================= #
1359
+ # === antibodies_and_antigens
1360
+ # ======================================================================= #
1361
+ when '116','antibodies','anti','antibody',
1362
+ /^abody?$/i,
1363
+ 'body',
1364
+ 'antikörper','antigens',
1365
+ /^antibodies(_|-| |,)?and(_|-| |,)?antigens$/i,
1366
+ /^antigens\??$/i,
1367
+ /^antibodies\??$/i,
1368
+ 'abodies'
1369
+ 'antibodies_and_antigens'
1370
+ # ======================================================================= #
1371
+ # === molecular_biology_of_plants
1372
+ # ======================================================================= #
1373
+ when '117',
1374
+ 'molecular_biology_of_plant',
1375
+ 'molecular_biology_of_plants',
1376
+ 'molecularbiologyofplants',
1377
+ 'molplants?',
1378
+ 'molplants',
1379
+ 'plantmol?',
1380
+ 'plantmol',
1381
+ 'plantmolbio',
1382
+ 'molecular biology of plants',
1383
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the_?$/i,
1384
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the(_|-| |,)?plants?$/i
1385
+ 'molecular_biology_of_plants'
1386
+ # ======================================================================= #
1387
+ # === lebensmitteltechnologie
1388
+ # ======================================================================= #
1389
+ when '118',
1390
+ /^lebensmitteltechnologie/i
1391
+ 'lebensmitteltechnologie'
1392
+ # ======================================================================= #
1393
+ # === advanced_cell_biology
1394
+ # ======================================================================= #
1395
+ when '119',
1396
+ /^advanced(_|-| |,)?cell(_|-| |,)?biology$/,
1397
+ 'cell2',
1398
+ 'cellbiology2',
1399
+ 'cellbio2'
1400
+ 'advanced_cellbiology'
1401
+ # ======================================================================= #
1402
+ # === insulin
1403
+ # ======================================================================= #
1404
+ when '120','insulin','insuline','insulin?','diabetes',
1405
+ /^insulin(_|-| |,)?and(_|-| |,)?diabetes$/i
1406
+ 'insulin_and_diabetes'
1407
+ # ======================================================================= #
1408
+ # === microarray
1409
+ # ======================================================================= #
1410
+ when '121','microarray','microarrays',
1411
+ 'biochips',
1412
+ 'biochip',
1413
+ /^biochips(_|-| |,)?and(_|-| |,)?microarray$/i
1414
+ 'biochips'
1415
+ # ======================================================================= #
1416
+ # === rna_seq
1417
+ # ======================================================================= #
1418
+ when '122','rnaseq','rna_seq','rna_seq?','rna seq'
1419
+ 'rna_seq'
1420
+ # ======================================================================= #
1421
+ # === innate_immunity
1422
+ # ======================================================================= #
1423
+ when '123','innate',
1424
+ 'innate_immunity','innateimmunity',
1425
+ 'innate_immunity?',
1426
+ 'innateimmunity?',
1427
+ /^innate(_|-| |,)?immunity$/i
1428
+ 'innate_immunity'
1429
+ # ======================================================================= #
1430
+ # === psychologie
1431
+ # ======================================================================= #
1432
+ when '124','psychologie','psychology'
1433
+ 'psychologie'
1434
+ # ======================================================================= #
1435
+ # === genetische_krankheiten
1436
+ # ======================================================================= #
1437
+ when '125','genetische_krankheiten','genetischekrankheiten',
1438
+ 'genetic_diseases','geneticdiseases','genetic_disease',
1439
+ 'gendisease','disease','digene','disgene',
1440
+ 'gendis',
1441
+ 'geneticdisease',
1442
+ /^genetische(_|-| |,)?krankheiten?$/i
1443
+ 'genetische_krankheiten'
1444
+ # ======================================================================= #
1445
+ # === hormone
1446
+ # ======================================================================= #
1447
+ when '126','hormone','hormon','hormones','hor'
1448
+ 'hormone'
1449
+ # ======================================================================= #
1450
+ # === systematische_zoologie
1451
+ # ======================================================================= #
1452
+ when '127',
1453
+ /^systematische(_|-| |,)?zoologie?$/i,
1454
+ 'syszoo','sys_zoo',
1455
+ 'szoo','syszo',
1456
+ 'sysz',
1457
+ 'syzoo'
1458
+ 'systematische_zoologie'
1459
+ # ======================================================================= #
1460
+ # === betriebssysteme
1461
+ # ======================================================================= #
1462
+ when '128',
1463
+ /^betriebssysteme?$/i,
1464
+ /^OS\??$/i,
1465
+ /^operating(_|-| |,)?systems?$/i
1466
+ 'betriebssysteme'
1467
+ # ======================================================================= #
1468
+ # === informatik
1469
+ # ======================================================================= #
1470
+ when '129','informatik','informatics',
1471
+ 'informatic',
1472
+ /^qainf\??$/i
1473
+ 'informatik'
1474
+ # ======================================================================= #
1475
+ # === c_programming
1476
+ # ======================================================================= #
1477
+ when '130','c','c_programming',
1478
+ /^the(_|-| |,)?c(_|-| |,)?programming(_|-| |,)?language?$/i,
1479
+ 'cprog',
1480
+ 'cprogramming',
1481
+ /^qaC\??$/i
1482
+ 'the_c_programming_language'
1483
+ # ======================================================================= #
1484
+ # === abfall
1485
+ # ======================================================================= #
1486
+ when '131',
1487
+ 'abfall',
1488
+ /^abfall(_|-| |,)?als(_|-| |,)?ressource$/i
1489
+ 'abfall_als_ressource'
1490
+ # ======================================================================= #
1491
+ # === fish
1492
+ # ======================================================================= #
1493
+ when '132',
1494
+ 'fish',
1495
+ /^fish(_|-| |,)?(_|-| |,)?(_|-| |,)?fluorescence(_|-| |,)?in(_|-| |,)?si$/i,
1496
+ /^fish(_|-| |,)?(_|-| |,)?(_|-| |,)?fluorescence(_|-| |,)?in(_|-| |,)?situ(_|-| |,)?hybridization$/i
1497
+ 'fish'
1498
+ # ======================================================================= #
1499
+ # === ruby_on_rails
1500
+ # ======================================================================= #
1501
+ when '133','ruby_on_rails','ror',
1502
+ 'rubyonrails',
1503
+ 'ruby-on-rails',
1504
+ /rails$/
1505
+ 'ruby_on_rails'
1506
+ # ======================================================================= #
1507
+ # === chemische_technologie_anorganischer_stoff
1508
+ # ======================================================================= #
1509
+ when '134',
1510
+ 'chemtech',
1511
+ 'chemtech1',
1512
+ 'chemt',
1513
+ 'materialkunde',
1514
+ 'material_sciences',
1515
+ /^chem(_|-| |,)?anorg\??$/i,
1516
+ 'chemanon',
1517
+ /^chemische(_|-| |,)?technologie(_|-| |,)?anorganischer(_|-| |,)?stoffe$/,
1518
+ /^techchem1$/i
1519
+ 'chemische_technologie_anorganischer_stoffe'
1520
+ # ======================================================================= #
1521
+ # === biophysik
1522
+ # ======================================================================= #
1523
+ when '135',
1524
+ /^biophysik$/,
1525
+ /^biophysics?$/i
1526
+ 'biophysik'
1527
+ # ======================================================================= #
1528
+ # === pflanzenbau
1529
+ # ======================================================================= #
1530
+ when '136',/pflanzenba?u?/,'pbau'
1531
+ 'pflanzenbau'
1532
+ # ======================================================================= #
1533
+ # === plant_development
1534
+ # ======================================================================= #
1535
+ when '137',
1536
+ /^plant(_|-| |,)?development$/,
1537
+ /^plant_?dev\??/,
1538
+ 'pdev',
1539
+ /^devbio(_|-| |,)?plants$/i
1540
+ 'plant_development'
1541
+ # ======================================================================= #
1542
+ # === glykomik
1543
+ # ======================================================================= #
1544
+ when '138',
1545
+ /^-?-?glykomik$/i,
1546
+ /^-?-?glycomics$/i,
1547
+ /^-?-?sugar/,
1548
+ /^-?-?glykans\??$/,
1549
+ 'zucker'
1550
+ 'glykomik'
1551
+ # ======================================================================= #
1552
+ # === Grünlandbewirtschaftung
1553
+ # ======================================================================= #
1554
+ when '139',
1555
+ /^Grünlandbewirtschaftung$/i,
1556
+ /^grassland(_|-| |,)?cultivation$/,
1557
+ /^grünlandwirtschaft$/i,
1558
+ /^grünlandbewirtschaftung(_|-| |,)?\(?$/i,
1559
+ 'grün',
1560
+ 'grünland'
1561
+ 'grassland_cultivation'
1562
+ # ======================================================================= #
1563
+ # === ökologische_landwirtschaft
1564
+ # ======================================================================= #
1565
+ when '140',
1566
+ /^Ökologische ?Landwirtschaft$/i,'ökoland',
1567
+ 'ökologische_landwirtschaft',
1568
+ /ecological_?agriculture/,
1569
+ /^ökologische(_|-| |,)?landwirtschaf$/
1570
+ 'ecological_agriculture'
1571
+ # ======================================================================= #
1572
+ # === the_european_union
1573
+ # ======================================================================= #
1574
+ when '141',
1575
+ /^the(_|-| |,)?european(_|-| |,)?union$/i,
1576
+ 'european_union',
1577
+ 'europeanunion',
1578
+ 'eu?',
1579
+ 'eu',
1580
+ /^the(_|-| |,)?eu$/
1581
+ 'the_european_union'
1582
+ # ======================================================================= #
1583
+ # === lipids
1584
+ # ======================================================================= #
1585
+ when '142',
1586
+ 'lipids',
1587
+ 'lipid','fett',
1588
+ 'lipide'
1589
+ 'lipids'
1590
+ # ======================================================================= #
1591
+ # === nucleotide_sequencing
1592
+ # ======================================================================= #
1593
+ when '143',
1594
+ /^nucleotide(_|-| |,)?sequencing$/i,
1595
+ /^NGS\??$/i,
1596
+ 'sequencing',
1597
+ 'sequenzierung','nucleotideseq','seq2',
1598
+ 'nusequencing'
1599
+ 'nucleotide_sequencing'
1600
+ # ======================================================================= #
1601
+ # === databases
1602
+ # ======================================================================= #
1603
+ when '144',
1604
+ /^databases\??$/i,
1605
+ /^datenbanken\??$/i,
1606
+ /^databases(_|-| |,)?and(_|-| |,)?sql$/i,
1607
+ /database/,
1608
+ /^qasql\??$/,
1609
+ 'datenbank',
1610
+ /^sql$/i
1611
+ 'databases_and_sql'
1612
+ # ======================================================================= #
1613
+ # === tierzucht
1614
+ # ======================================================================= #
1615
+ when '145','tierzucht'
1616
+ 'tierzucht'
1617
+ # ======================================================================= #
1618
+ # === biological_therapeutics
1619
+ # ======================================================================= #
1620
+ when '146',/^biological(_|-| |,)?therapeutics$/i,
1621
+ 'biologics','biologica','biologika','ther',
1622
+ 'therapeutics',
1623
+ 'thera',
1624
+ 'biothera',
1625
+ 'kunert'
1626
+ 'biological_therapeutics'
1627
+ # ======================================================================= #
1628
+ # === forstwirtschaft
1629
+ # ======================================================================= #
1630
+ when '147',/forstwirtschaft/i,'forst?','forst'
1631
+ 'forstwirtschaft'
1632
+ # ======================================================================= #
1633
+ # === alcohols
1634
+ # ======================================================================= #
1635
+ when '148','alcohols','alcohol','alkohol','alk',
1636
+ /^alkohole$/i
1637
+ 'alcohols'
1638
+ # ======================================================================= #
1639
+ # === klima
1640
+ # ======================================================================= #
1641
+ when '149','klima'
1642
+ 'klima'
1643
+ # ======================================================================= #
1644
+ # === elektrotechnik
1645
+ # ======================================================================= #
1646
+ when '150',
1647
+ 'elektrotechnik',
1648
+ 'elektrizität',
1649
+ 'echem',
1650
+ 'elektro',
1651
+ 'strom',
1652
+ /^elektrotechnik(_|-| |,)?und(_|-| |,)?elektrizität$/i
1653
+ 'elektrotechnik_und_elektrizität'
1654
+ # ======================================================================= #
1655
+ # === weinbau
1656
+ # ======================================================================= #
1657
+ when '151','weinbau','wein'
1658
+ 'weinbau'
1659
+ # ======================================================================= #
1660
+ # === technische_grundlagen_der_informatik
1661
+ # ======================================================================= #
1662
+ when '152',
1663
+ 'technische_grundlagen_der_informatik',
1664
+ /^technische(_|-| |,)?informatik$/i,
1665
+ /^technische(_|-| |,)?grundlagen(_|-| |,)?der$/i,
1666
+ /^technische(_|-| |,)?grundlagen(_|-| |,)?der(_|-| |,)?informatik$/i,
1667
+ /^tech(_|-| |,)?computer\??$/i
1668
+ 'technische_grundlagen_der_informatik'
1669
+ # ======================================================================= #
1670
+ # === c++
1671
+ # ======================================================================= #
1672
+ when '153',
1673
+ 'c++',
1674
+ 'the_c_plus_plus_programming_language',
1675
+ 'cpp',
1676
+ 'cepp',
1677
+ 'qacpp',
1678
+ /^qaCpp\??$/i,
1679
+ /^qaC\+\+\??$/i,
1680
+ /^the(_|-| |,)?c\+\+(_|-| |,)?programming(_|-| |,)?language$/i,
1681
+ /^the(_|-| |,)?c\+\+(_|-| |,)?programming(_|-| |,)?langu?$/i
1682
+ 'the_c_plus_plus_programming_language'
1683
+ # ======================================================================= #
1684
+ # === semisynthese
1685
+ # ======================================================================= #
1686
+ when '154',
1687
+ 'semisynthese',
1688
+ 'semisynthese_proteinen',
1689
+ 'semisynth',
1690
+ 'semi',
1691
+ /^semisynthese(_|-| |,)?von(_|-| |,)?proteinen(_|-| |,)?und(_|-| |,)?nukleotiden$/i,
1692
+ /^semisynthese(_|-| |,)?von(_|-| |,)?proteinen?$/i
1693
+ 'semisynthese_von_proteinen_und_nukleotiden'
1694
+ # ======================================================================= #
1695
+ # === biomaterials
1696
+ # ======================================================================= #
1697
+ when '155','biomaterials','biomaterial','biomat','biom'
1698
+ 'biomaterials'
1699
+ # ======================================================================= #
1700
+ # === naturschutz
1701
+ # ======================================================================= #
1702
+ when '156','naturschutz',
1703
+ 'natur',
1704
+ 'nature',
1705
+ /^nature(_|-| |,)?conservation(_|-| |,)?and(_|-| |,)?biodiversity(_|-| |,)?$/i,
1706
+ /^naturschutz(_|-| |,)?und(_|-| |,)?biodivers$/i,
1707
+ /^naturschutz(_|-| |,)?und(_|-| |,)?biodiversität$/i
1708
+ 'nature_conservation_and_biodiversity'
1709
+ # ======================================================================= #
1710
+ # === biomembranes
1711
+ # ======================================================================= #
1712
+ when '157','biomembranes','biomembrane',
1713
+ /^membranes?$/
1714
+ 'biomembranes'
1715
+ # ======================================================================= #
1716
+ # === vitamine
1717
+ # ======================================================================= #
1718
+ when '158','vitamine','vitamin','vitamins','vitamines'
1719
+ 'vitamine'
1720
+ # ======================================================================= #
1721
+ # === python
1722
+ # ======================================================================= #
1723
+ when '159','python','pthon','pytho','pyhton',
1724
+ 'pythn','qapy','qapy?',
1725
+ 'qpay',
1726
+ /^qapython\??$/i
1727
+ 'python'
1728
+ # ======================================================================= #
1729
+ # === archaea
1730
+ # ======================================================================= #
1731
+ when '160','archaea'
1732
+ 'archaea'
1733
+ # ======================================================================= #
1734
+ # === cyanobacteria
1735
+ # ======================================================================= #
1736
+ when '161','cyanobacteria','cyano'
1737
+ 'cyanobacteria'
1738
+ # ======================================================================= #
1739
+ # === naturstoffe
1740
+ # ======================================================================= #
1741
+ when '162','naturstoffe'
1742
+ 'naturstoffe'
1743
+ # ======================================================================= #
1744
+ # === biopolymers
1745
+ # ======================================================================= #
1746
+ when '163','biopolymers','biopolymer'
1747
+ 'biopolymers'
1748
+ # ======================================================================= #
1749
+ # === bionik
1750
+ # ======================================================================= #
1751
+ when '164','bionik'
1752
+ 'bionik'
1753
+ # ======================================================================= #
1754
+ # === urbanism
1755
+ # ======================================================================= #
1756
+ when '165','urbanism',/^urbanism(_|-| |,)?and(_|-| |,)?traffic$/
1757
+ 'urbanism_and_traffic'
1758
+ # ======================================================================= #
1759
+ # === vaccination
1760
+ # ======================================================================= #
1761
+ when '166','vaccination',
1762
+ 'vaccine',
1763
+ 'vaccines',
1764
+ 'vacca',
1765
+ 'vakzin',
1766
+ 'vacine',
1767
+ 'vacc',
1768
+ /^vaccines(_|-| |,)?and(_|-| |,)?vaccination$/,
1769
+ /^vakzinierung$/,
1770
+ 'vakzine',
1771
+ /^antigene\??$/
1772
+ 'vaccines_and_vaccination'
1773
+ # ======================================================================= #
1774
+ # === crispr
1775
+ # ======================================================================= #
1776
+ when '167','crispr','crisp'
1777
+ 'crispr'
1778
+ # ======================================================================= #
1779
+ # === java
1780
+ # ======================================================================= #
1781
+ when '168','java','qajava',
1782
+ /^qjava\??$/i
1783
+ 'java'
1784
+ # ======================================================================= #
1785
+ # === yeast
1786
+ # ======================================================================= #
1787
+ when '169','yeast','ye'
1788
+ 'yeast'
1789
+ # ======================================================================= #
1790
+ # === ruby
1791
+ # ======================================================================= #
1792
+ when '170',
1793
+ 'ruby',
1794
+ /^qa?ruby\??$/i
1795
+ 'ruby'
1796
+ # ======================================================================= #
1797
+ # === technisches_zeichnen
1798
+ # ======================================================================= #
1799
+ when '171',
1800
+ /^technisches(_|-| |,)?zeichnen$/i,
1801
+ 'CAD',
1802
+ 'cad'
1803
+ 'technisches_zeichnen'
1804
+ # ======================================================================= #
1805
+ # === prozesstechnik
1806
+ # ======================================================================= #
1807
+ when '172',
1808
+ 'prozesstechnik',
1809
+ 'prozesstechnologie',
1810
+ 'prozesskunde',
1811
+ 'prozess',
1812
+ 'prozess?'
1813
+ 'prozesstechnik'
1814
+ # ======================================================================= #
1815
+ # === glykolyse
1816
+ # ======================================================================= #
1817
+ when '173',
1818
+ 'glykolyse',
1819
+ 'glycolysis',
1820
+ 'glycolyse',
1821
+ 'gly',
1822
+ 'glyk',
1823
+ 'gl',
1824
+ 'glyc',
1825
+ 'glyco',
1826
+ 'glyko',
1827
+ /^glycolysis\??$/i,
1828
+ /^die(_|-| |,)?glykolyse$/i
1829
+ 'glycolysis'
1830
+ # ======================================================================= #
1831
+ # === rnai
1832
+ # ======================================================================= #
1833
+ when '174',
1834
+ /^RNAi$/i,
1835
+ /^miRNA$/i,
1836
+ /^siRNA$/i,
1837
+ /^RNAi(_|-| |,)?(_|-| |,)?siRNA(_|-| |,)?and(_|-| |,)?miRNA$/i
1838
+ 'RNAi_siRNA_and_miRNA'
1839
+ # ======================================================================= #
1840
+ # === mikrobielle_lebensgemeinschaften
1841
+ # ======================================================================= #
1842
+ when '175',
1843
+ 'mikrob_lebensgemeinschaften',
1844
+ 'mikb',
1845
+ /^Mikrobielle(_|-| |,)?Lebensgemeinschaften$/i,
1846
+ /^Mikrobielle(_|-| |,)?Lebensgemeins$/i
1847
+ 'mikrobielle_lebensgemeinschaften'
1848
+ # ======================================================================= #
1849
+ # === theoretische_informatik
1850
+ # ======================================================================= #
1851
+ when '176',/^theoretische(_|-| |,)?informatik\??$/i,
1852
+ 'theore',
1853
+ 'theoinf',/^theo(_|-| |,)?inf/i,
1854
+ 'tinf'
1855
+ 'theoretische_informatik'
1856
+ # ======================================================================= #
1857
+ # === algorithms
1858
+ # ======================================================================= #
1859
+ when '177',/algorithms/,'algo','algorithm',
1860
+ 'algorithmus',
1861
+ 'alg'
1862
+ 'algorithms'
1863
+ # ======================================================================= #
1864
+ # === javascript
1865
+ # ======================================================================= #
1866
+ when '178',
1867
+ 'javascript'
1868
+ 'javascript'
1869
+ # ======================================================================= #
1870
+ # === elektronenmikroskopie
1871
+ # ======================================================================= #
1872
+ when '179',
1873
+ 'elektronenmikroskopie',
1874
+ 'emopy',
1875
+ 'tem'
1876
+ 'elektronenmikroskopie'
1877
+ # ======================================================================= #
1878
+ # === bauwesen
1879
+ # ======================================================================= #
1880
+ when '180','bauwesen'
1881
+ 'bauwesen'
1882
+ # ======================================================================= #
1883
+ # === system_biology
1884
+ # ======================================================================= #
1885
+ when '181',
1886
+ /^system(_|-| |,)?biology$/,
1887
+ 'system',
1888
+ 'sysbio',
1889
+ 'systemb',
1890
+ 'sysbi',
1891
+ 'systembio',
1892
+ 'systembio?',
1893
+ /^systems(_|-| |,)?biology/i,
1894
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthetic(_|-| |,)?biology$/,
1895
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthe$/,
1896
+ /^synth$/i,
1897
+ /^systembiologie$/i,
1898
+ /^synthetic$/i,
1899
+ /^synthetic(_|-| |,)?biology$/i,
1900
+ /^synth(_|-| |,)?bio$/i
1901
+ 'system_biology_and_synthetic_biology'
1902
+ # ======================================================================= #
1903
+ # === architektur
1904
+ # ======================================================================= #
1905
+ when '182',/^architektur$/,/^architecture$/
1906
+ 'architecture'
1907
+ # ======================================================================= #
1908
+ # === biofilms
1909
+ # ======================================================================= #
1910
+ when '183',
1911
+ 'biofilms',
1912
+ 'biofilm',
1913
+ 'biofilme'
1914
+ 'biofilms'
1915
+ # ======================================================================= #
1916
+ # === dna_replikation
1917
+ # ======================================================================= #
1918
+ when '184',
1919
+ /^dna(_|-| |,)?repli(c|k)ation$/i,
1920
+ 'replication',
1921
+ /^dna(_|-| |,)?repl?$/i
1922
+ 'dna_replication'
1923
+ # ======================================================================= #
1924
+ # === immunanalytik
1925
+ # ======================================================================= #
1926
+ when '185',/^immunanalyti(c|k)$/i,
1927
+ 'immunoanalytik',
1928
+ 'immunoana',
1929
+ 'immunana',
1930
+ 'immuna',
1931
+ 'immunoassay',
1932
+ /^immunoanalytics$/i
1933
+ 'immunanalytik'
1934
+ # ======================================================================= #
1935
+ # === elektrophorese
1936
+ # ======================================================================= #
1937
+ when '186',/^elektrophorese$/i,'gelelectrophoresis',
1938
+ 'gelelektrophorese','elektrophoresis','gel',
1939
+ 'sds','gele'
1940
+ 'elektrophorese'
1941
+ # ======================================================================= #
1942
+ # === endospores
1943
+ # ======================================================================= #
1944
+ when '187',
1945
+ /^endospores(_|-| |,)?and(_|-| |,)?spores$/i,
1946
+ /^endosporen(_|-| |,)?und(_|-| |,)?sporen$/i,
1947
+ 'endospores','spores',
1948
+ 'endo',
1949
+ 'endospore',
1950
+ 'endosporen',
1951
+ /^spore\??$/i,
1952
+ /^endospores\??$/i
1953
+ 'endospores_and_spores'
1954
+ # ======================================================================= #
1955
+ # === the_bacterial_cell_wall
1956
+ # ======================================================================= #
1957
+ when '188',/^the(_|-| |,)?bacterial(_|-| |,)?cell(_|-| |,)?wall$/i,
1958
+ 'bacterial_cell_wall?',
1959
+ /^bacterial(_|-| |,)?cell(_|-| |,)?wall\??$/,
1960
+ /^cell(_|-| |,)?well$/,
1961
+ /^cell(_|-| |,)?wall$/
1962
+ 'the_bacterial_cell_wall'
1963
+ # ======================================================================= #
1964
+ # === bacteriophages
1965
+ #
1966
+ # Everything about bacteriophages/phages.
1967
+ # ======================================================================= #
1968
+ when '189',
1969
+ 'bacteriophages',
1970
+ 'phages',
1971
+ 'bakteriophagen',
1972
+ 'phag',
1973
+ /^pha?gen?$/
1974
+ 'bacteriophages'
1975
+ # ======================================================================= #
1976
+ # === mutation
1977
+ # ======================================================================= #
1978
+ when '190',
1979
+ /^mutation$/i,
1980
+ /^dna(_|-| |,)?repair$/i,
1981
+ /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repair$/i,
1982
+ /^dna(_|-| |,)?repair(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?mutation$/i,
1983
+ /^dna(_|-| |,)?mutations(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repair$/i,
1984
+ /^dna(_|-| |,)?mutations(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa$/i,
1985
+ /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa$/i,
1986
+ /^dna(_|-| |,)?mutation$/i
1987
+ 'dna_mutation_and_dna_repair'
1988
+ # ======================================================================= #
1989
+ # === apoptosis
1990
+ # ======================================================================= #
1991
+ when '191',
1992
+ 'apoptosis',
1993
+ 'aptoptosis',
1994
+ 'apoptose',
1995
+ 'zelltod'
1996
+ 'apoptosis'
1997
+ # ======================================================================= #
1998
+ # === interferon
1999
+ # ======================================================================= #
2000
+ when '192','interferon','ifn','interferone',
2001
+ /^the(_|-| |,)?interferon(_|-| |,)?system$/i
2002
+ 'the_interferon_system'
2003
+ # ======================================================================= #
2004
+ # === pharmazeutische_biotechnologie
2005
+ # ======================================================================= #
2006
+ when '193',
2007
+ 'pharmabiotech',
2008
+ /^pharmazeutische(_|-| |,)?biotechnologie1$/i,
2009
+ /^pharmazeutische(_|-| |,)?biotechnologie$/i,
2010
+ /^pharmaceutical(_|-| |,)?biotechnology$/i,
2011
+ /^pharmaceutical(_|-| |,)?biotechnol$/i,
2012
+ /^pharma(_|-| |,)?biotech\??$/i,
2013
+ 'pbiotech',
2014
+ 'pharma',
2015
+ 'parma',
2016
+ /^pbiotechnologie$/i,
2017
+ 'pharmatech'
2018
+ 'pharmaceutical_biotechnology'
2019
+ # ======================================================================= #
2020
+ # === molekulare_infektionsbiologie
2021
+ # ======================================================================= #
2022
+ when '194',
2023
+ 'infektionsbiologie',
2024
+ 'infektion',
2025
+ 'infekt',
2026
+ 'infek',
2027
+ 'molinfekt',
2028
+ 'molinf',
2029
+ 'parasit',
2030
+ 'parasiten',
2031
+ 'parasitologie',
2032
+ /^molekulare(_|-| |,)?infektionsbiologie$/i,
2033
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?molecular(_|-| |,)?infection(_|-| |,)?biology$/i,
2034
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?mo$/i,
2035
+ /^parasites?$/i,
2036
+ /^infections?$/i,
2037
+ /^molecular(_|-| |,)?infection(_|-| |,)?biology$/i
2038
+ 'parasitic_diseases_and_molecular_infection_biology'
2039
+ # ======================================================================= #
2040
+ # === structural_bioinformatics
2041
+ # ======================================================================= #
2042
+ when '195',
2043
+ /^structural(_|-| |,)?bioinformatics$/i,
2044
+ 'struktbioinf',
2045
+ 'structbioinf',
2046
+ 'strubioinfo',
2047
+ 'strubinf',
2048
+ 'struktbioinfo',
2049
+ 'strubiinf',
2050
+ 'strubioinf',
2051
+ 'strubioinformatic',
2052
+ 'strubioinformatics',
2053
+ 'strukturinformatik',
2054
+ 'structbio',
2055
+ /^strukturbioinf\??$/
2056
+ 'structural_bioinformatics'
2057
+ # ======================================================================= #
2058
+ # === food_microbiology
2059
+ # ======================================================================= #
2060
+ when '196',
2061
+ /^food(_|-| |,)?microbiology$/i,
2062
+ /^food(_|-| |,)?biotechnology$/i,
2063
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?food(_|-| |,)?biotechnology$/i,
2064
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?foo$/i,
2065
+ /^food(_|-| |,)?biotech$/i
2066
+ 'food_microbiology_and_food_biotechnology'
2067
+ # ======================================================================= #
2068
+ # === projektmanagement
2069
+ # ======================================================================= #
2070
+ when '197',
2071
+ /^proje(c|k)tmanagement$/i,
2072
+ /^pmanagement$/i,
2073
+ 'pman'
2074
+ 'projektmanagement'
2075
+ # ======================================================================= #
2076
+ # === cell_cultures
2077
+ # ======================================================================= #
2078
+ when '198',
2079
+ /^cell(_|-| |,)?cultures?\??$/i,
2080
+ /^cell(_|-| |,)?culturing\??$/i,
2081
+ 'cellu',
2082
+ 'cellcu'
2083
+ 'cell_cultures'
2084
+ # ======================================================================= #
2085
+ # === chemotaxis_and_motility_in_prokaryotes
2086
+ # ======================================================================= #
2087
+ when '199',
2088
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
2089
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility$/i,
2090
+ /^chemotaxie?s(_|-| |,)?and(_|-| |,)?motility_?$/i,
2091
+ /^chemotaxie?s(_|-| |,)?quorum(_|-| |,)?sensing(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
2092
+ /^chemotaxis\??$/i,
2093
+ /^quorum(_|-| |,)?sensing$/i,
2094
+ 'chemo?',
2095
+ 'chemo',
2096
+ 'flagella',
2097
+ /^flag\??$/i
2098
+ 'chemotaxis_quorum_sensing_and_motility_in_prokaryotes'
2099
+ # ======================================================================= #
2100
+ # === cellular_transport_and_protein_secretion
2101
+ # ======================================================================= #
2102
+ when '200',
2103
+ /^cellular(_|-| |,)?transport$/i,
2104
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?protein(_|-| |,)?secretion$/i,
2105
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?pr$/i
2106
+ 'cellular_transport_and_protein_secretion'
2107
+ # ======================================================================= #
2108
+ # === elisa
2109
+ # ======================================================================= #
2110
+ when '201',
2111
+ /^elisa$/i
2112
+ 'elisa'
2113
+ # ======================================================================= #
2114
+ # === transcription
2115
+ # ======================================================================= #
2116
+ when '202',
2117
+ /^transc?ription$/i,
2118
+ /^transkription$/i,
2119
+ /^qa(_|-| |,)?transcription\??$/i
2120
+ 'transcription'
2121
+ # ======================================================================= #
2122
+ # === toxikologie
2123
+ # ======================================================================= #
2124
+ when '203',
2125
+ /^toxikologie$/i,
2126
+ /^qatox\??$/i,
2127
+ 'toxi',
2128
+ 'tox'
2129
+ 'toxikologie'
2130
+ # ======================================================================= #
2131
+ # === biomarkers
2132
+ # ======================================================================= #
2133
+ when '204',
2134
+ /^biomarkers?$/i,
2135
+ 'bioma'
2136
+ 'biomarkers'
2137
+ # ======================================================================= #
2138
+ # === fluorescence_microscopy
2139
+ # ======================================================================= #
2140
+ when '205',
2141
+ /^fluorescence(_|-| |,)?microscopy\??$/i,
2142
+ /^fluorescence(_|-| |,)?microscope\??$/i,
2143
+ 'fluor'
2144
+ 'fluorescence_microscopy'
2145
+ # ======================================================================= #
2146
+ # === html
2147
+ # ======================================================================= #
2148
+ when '206',
2149
+ /^html\??$/i
2150
+ 'html'
2151
+ # ======================================================================= #
2152
+ # === scientific_writing
2153
+ # ======================================================================= #
2154
+ when '207',
2155
+ /^scientific(_|-| |,)?writing$/i,
2156
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?publishing$/i,
2157
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?pu$/i,
2158
+ 'scientific'
2159
+ 'scientific_writing_and_publishing'
2160
+ # ======================================================================= #
2161
+ # === geography
2162
+ # ======================================================================= #
2163
+ when '208',
2164
+ /^geography$/i,
2165
+ /^geographie$/i
2166
+ 'geography'
2167
+ # ======================================================================= #
2168
+ # === excel
2169
+ # ======================================================================= #
2170
+ when '209',
2171
+ /^excel$/i
2172
+ 'excel'
2173
+ # ======================================================================= #
2174
+ # === splicing
2175
+ # ======================================================================= #
2176
+ when '210',
2177
+ /^splicing$/i,
2178
+ /^introns$/i,
2179
+ /^exons$/i,
2180
+ /^splice$/i,
2181
+ /^spliceosome$/i,
2182
+ /^splicing(_|-| |,)?(_|-| |,)?exons(_|-| |,)?and(_|-| |,)?introns$/i,
2183
+ /^splicing(_|-| |,)?(_|-| |,)?exons(_|-| |,)?and(_|-| |,)?intro$/i
2184
+ 'splicing_exons_and_introns'
2185
+ # ======================================================================= #
2186
+ # === the_microbiome
2187
+ # ======================================================================= #
2188
+ when '211',
2189
+ /^microbiome?$/i,
2190
+ /^the(_|-| |,)?microbiome$/i,
2191
+ /^human(_|-| |,)?microbiome\??$/i,
2192
+ 'mome'
2193
+ 'the_microbiome'
2194
+ # ======================================================================= #
2195
+ # === citratzyklus
2196
+ # ======================================================================= #
2197
+ when '212',
2198
+ 'citratzyklus',
2199
+ /^citric(_|-| |,)?acid(_|-| |,)?cycle$/i,
2200
+ /^citric(_|-| |,)?cycle$/i,
2201
+ /^the(_|-| |,)?citric(_|-| |,)?acid(_|-| |,)?cycle$/i,
2202
+ /^CAC\??$/i,
2203
+ 'citric',
2204
+ 'citrat'
2205
+ 'citric_acid_cycle'
2206
+ # ======================================================================= #
2207
+ # === peroxisomes
2208
+ # ======================================================================= #
2209
+ when '213',
2210
+ /^peroxisomes$/i,
2211
+ /^peroxisomes(_|-| |,)?(_|-| |,)?glycosomes(_|-| |,)?and(_|-| |,)?lysosomes$/i,
2212
+ /^peroxisomes(_|-| |,)?(_|-| |,)?glycosomes(_|-| |,)?a$/i
2213
+ 'peroxisomes_glycosomes_and_lysosomes'
2214
+ # ======================================================================= #
2215
+ # === messtechnik_und_regeltechnik
2216
+ # ======================================================================= #
2217
+ when '214',
2218
+ 'mess',
2219
+ /^messtechnik$/i,
2220
+ /^regeltechnik$/i,
2221
+ /^messtechnik(_|-| |,)?und(_|-| |,)?regeltechnik$/i,
2222
+ /^messtechnik(_|-| |,)?und(_|-| |,)?regeltech$/i
2223
+ 'messtechnik_und_regeltechnik'
2224
+ # ======================================================================= #
2225
+ # === betriebswirtschaftslehre
2226
+ # ======================================================================= #
2227
+ when '215',
2228
+ /^betriebswirtschaftslehre\??$/i,
2229
+ /^betriebswirtschaf\??$/i,
2230
+ /^betrieb\??$/i,
2231
+ /^betriebswirtschaft\??$/i,
2232
+ /^qabetrieb\??$/i
2233
+ 'betriebswirtschaftslehre'
2234
+ # ======================================================================= #
2235
+ # === forensik
2236
+ # ======================================================================= #
2237
+ when '216',
2238
+ /^forensik$/i
2239
+ 'forensik'
2240
+ # ======================================================================= #
2241
+ # === gluconeogenesis
2242
+ # ======================================================================= #
2243
+ when '217','gluco',
2244
+ 'gluconeo',
2245
+ 'gluconeogenese',
2246
+ /^gluconeogenesis\??$/i,
2247
+ /^-?-?Die(_|-| |,)?gluconeogenesis\??$/i
2248
+ 'gluconeogenesis'
2249
+ # ======================================================================= #
2250
+ # === netzwerke
2251
+ # ======================================================================= #
2252
+ when '218',
2253
+ /^netzwerke\??$/i,
2254
+ /^networks\??$/i,
2255
+ /^-?-?computer(_|-| |,)?networks$/
2256
+ 'netzwerke'
2257
+ # ======================================================================= #
2258
+ # === advanced_topics_in_plant_sciences
2259
+ # ======================================================================= #
2260
+ when '219',
2261
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant(_|-| |,)?sciences\??$/i,
2262
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant_?$/i,
2263
+ 'pflanzen2',
2264
+ 'plant2',
2265
+ 'plant3',
2266
+ 'plants2',
2267
+ 'plants3'
2268
+ 'advanced_topics_in_plant_sciences'
2269
+ # ======================================================================= #
2270
+ # === macroeconomics
2271
+ # ======================================================================= #
2272
+ when '220',
2273
+ /^macro(_|-| |,)?economics\??$/i,
2274
+ 'macroeconomy',
2275
+ /^makroökonomie$/i
2276
+ 'macroeconomics'
2277
+ # ======================================================================= #
2278
+ # === linux
2279
+ # ======================================================================= #
2280
+ when '221',
2281
+ /^linux\??$/i
2282
+ 'linux'
2283
+ # ======================================================================= #
2284
+ # === object_oriented_modeling
2285
+ # ======================================================================= #
2286
+ when '222',
2287
+ /^object(_|-| |,)?oriented(_|-| |,)?modeling\??$/i,
2288
+ /^objekt(_|-| |,)?orientiertes(_|-| |,)?modellieren\??$/i,
2289
+ /^objekt(_|-| |,)?orientiertes(_|-| |,)?model\??$/i
2290
+ 'object_oriented_modeling'
2291
+ # ======================================================================= #
2292
+ # === patent_law
2293
+ # ======================================================================= #
2294
+ when '223',
2295
+ /^patent(_|-| |,)?law\??$/i,
2296
+ 'plaw',
2297
+ 'patent'
2298
+ 'patent_law'
2299
+ # ======================================================================= #
2300
+ # === glyoxylatzyklus
2301
+ # ======================================================================= #
2302
+ when '224',
2303
+ /^glyoxylatzyklus\??$/i,
2304
+ /^glyoxylat\??$/i,
2305
+ 'glyoxy'
2306
+ 'glyoxylatzyklus'
2307
+ # ======================================================================= #
2308
+ # === the_universe
2309
+ # ======================================================================= #
2310
+ when '225',
2311
+ /^universe\??$/i,
2312
+ /^the(_|-| |,)?universe\??$/i
2313
+ 'the_universe'
2314
+ # ======================================================================= #
2315
+ # === computer_graphics
2316
+ # ======================================================================= #
2317
+ when '226',
2318
+ /^computer(_|-| |,)?graphics\??$/i,
2319
+ /^computer(_|-| |,)?vision(_|-| |,)?and(_|-| |,)?computer(_|-| |,)?graphics\??$/i,
2320
+ /^computer(_|-| |,)?vision$/i,
2321
+ /^visual$/i
2322
+ 'computer_vision_and_computer_graphics'
2323
+ # ======================================================================= #
2324
+ # === nutztierethologie
2325
+ # ======================================================================= #
2326
+ when '227',
2327
+ /^nutztierethologie\??$/i
2328
+ 'nutztierethologie'
2329
+ # ======================================================================= #
2330
+ # === chemische_technologie_organischer_stoffe
2331
+ # ======================================================================= #
2332
+ when '228',
2333
+ 'chemtech2',
2334
+ /^chem(_|-| |,)?org\??$/i,
2335
+ /^chemische(_|-| |,)?technologie(_|-| |,)?organischer(_|-| |,)?stoffe$/i,
2336
+ /^techorgc$/i,
2337
+ /^techchem2$/i
2338
+ 'chemische_technologie_organischer_stoffe'
2339
+ # ======================================================================= #
2340
+ # === cellulose
2341
+ # ======================================================================= #
2342
+ when '229',
2343
+ /^cellulose$/i
2344
+ 'cellulose'
2345
+ # ======================================================================= #
2346
+ # === microcontroller
2347
+ # ======================================================================= #
2348
+ when '230',
2349
+ /^mi(c|k)rocontrollers?$/i,
2350
+ /^electronics?$/i # <- This may be moved at a later point in time.
2351
+ 'microcontrollers'
2352
+ # ======================================================================= #
2353
+ # === mitochondria
2354
+ # ======================================================================= #
2355
+ when '231',
2356
+ /^mitochondria$/i,
2357
+ /^mitochondrien$/i,
2358
+ /^mtDNA$/i
2359
+ 'mitochondria'
2360
+ # ======================================================================= #
2361
+ # === stickstofffixierung
2362
+ # ======================================================================= #
2363
+ when '232',
2364
+ /^stickstofff?ixierung$/i,
2365
+ /^stickstofff?$/i
2366
+ 'stickstofffixierung'
2367
+ # ======================================================================= #
2368
+ # === Protein Engineering
2369
+ # ======================================================================= #
2370
+ when '233',
2371
+ /^protein(_|-| |,)?engineering\??$/i
2372
+ 'protein_engineering'
2373
+ # ======================================================================= #
2374
+ # === Cytokines
2375
+ # ======================================================================= #
2376
+ when '234',
2377
+ /^cytokines\??$/i
2378
+ 'cytokines'
2379
+ # ======================================================================= #
2380
+ # === Urea cycle
2381
+ # ======================================================================= #
2382
+ when '235',
2383
+ /^urea(_|-| |,)?cycle\??$/i,
2384
+ /^the(_|-| |,)?urea(_|-| |,)?cycle\??$/i,
2385
+ /^urea\??$/i
2386
+ 'urea_cycle'
2387
+ # ======================================================================= #
2388
+ # === Pentosephosphatweg
2389
+ # ======================================================================= #
2390
+ when '236',
2391
+ /^Pentosephosphatweg\??$/i,
2392
+ /^Pentosephosphat\??$/i
2393
+ 'pentosephosphatweg'
2394
+ # ======================================================================= #
2395
+ # === Glykogen
2396
+ # ======================================================================= #
2397
+ when '237',
2398
+ /^Glykogen\??$/i,
2399
+ /^Glycogen\??$/i
2400
+ 'glycogen'
2401
+ # ======================================================================= #
2402
+ # === Proteolyse
2403
+ # ======================================================================= #
2404
+ when '238',
2405
+ /^Proteolyse\??$/i
2406
+ 'proteolyse'
2407
+ # ======================================================================= #
2408
+ # === Geometrie
2409
+ # ======================================================================= #
2410
+ when '239',
2411
+ /^geometrie\??$/i,
2412
+ /^geometry\??$/i
2413
+ 'geometrie'
2414
+ # ======================================================================= #
2415
+ # === Atomemissionsspektrometrie
2416
+ # ======================================================================= #
2417
+ when '240',
2418
+ /^atomemissionsspektrometrie\??$/i
2419
+ 'atomemissionsspektrometrie'
2420
+ # ======================================================================= #
2421
+ # === Kryptographie
2422
+ # ======================================================================= #
2423
+ when '241',
2424
+ /^kryptographie\??$/i
2425
+ 'kryptographie'
2426
+ # ======================================================================= #
2427
+ # === Robotik
2428
+ # ======================================================================= #
2429
+ when '242',
2430
+ /^robotik\??$/i
2431
+ 'robotik'
2432
+ # ======================================================================= #
2433
+ # === Thermodynamics
2434
+ # ======================================================================= #
2435
+ when '243',
2436
+ /^thermodynamics\??$/i
2437
+ 'thermodynamics'
2438
+ # ======================================================================= #
2439
+ # === Cellular Vesicles
2440
+ # ======================================================================= #
2441
+ when '244',
2442
+ /^cellular(_|-| |,)?vesicles\??$/i
2443
+ 'cellular_vesicles'
2444
+ # ======================================================================= #
2445
+ # === Meteorologie
2446
+ # ======================================================================= #
2447
+ when '245',
2448
+ /^meteorologie(_|-| |,)?und(_|-| |,)?atmosphäre$/i,
2449
+ /^meteorologie\??$/i,
2450
+ /^wetter\??$/i
2451
+ 'meteorologie_und_atmosphäre'
2452
+ # ======================================================================= #
2453
+ # === erste_hilfe
2454
+ # ======================================================================= #
2455
+ when '246',
2456
+ /^erste(_|-| |,)?hilfe\??$/i,
2457
+ /^qaerste(_|-| |,)?hilfe\??$/i
2458
+ 'erste_hilfe'
2459
+ # ======================================================================= #
2460
+ # === marketing
2461
+ # ======================================================================= #
2462
+ when '247',
2463
+ /^marketing$/i
2464
+ 'marketing'
2465
+ # ======================================================================= #
2466
+ # === birds
2467
+ # ======================================================================= #
2468
+ when '248',
2469
+ /^birds$/i,
2470
+ 'latest',
2471
+ 'last' # ← These two entries have to be adjusted manually to the last entry point. (last tag)
2472
+ 'birds'
2473
+ else
2474
+ if be_verbose and !i.to_s.empty?
2475
+ pp caller()
2476
+ puts "In the method Studium.find_corresponding_exam_topic(), we did "\
2477
+ "not find any match for:"
2478
+ puts " `#{i}` (Encoding: #{i.encoding.to_s}."
2479
+ end
2480
+ false # We did not find anything.
2481
+ end
2482
+ end; self.instance_eval { alias sanitize_topic find_corresponding_exam_topic } # === Studium.sanitize_topic
2483
+ self.instance_eval { alias sanitize_this_potential_exam_topic find_corresponding_exam_topic } # === Studium.sanitize_this_potential_exam_topic
2484
+ self.instance_eval { alias expand_this_exam_topic find_corresponding_exam_topic } # === Studium.expand_this_exam_topic
2485
+
2486
+ # ========================================================================= #
2487
+ # === Studium.find_corresponding_exam_title
2488
+ #
2489
+ # This will return the corresponding exam title. It will pass the input
2490
+ # through Studium.find_corresponding_exam_topic().
2491
+ #
2492
+ # Usage examples:
2493
+ #
2494
+ # title = Studium.find_corresponding_exam_title('technische_grundlagen_der_informatik') # => "Technische Grundlagen der Informatik"
2495
+ # title = Studium.find_corresponding_exam_title('mphysio') # => "Mikrobielle Physiologie"
2496
+ #
2497
+ # ========================================================================= #
2498
+ def self.find_corresponding_exam_title(
2499
+ i, be_verbose = true
2500
+ )
2501
+ i = i.to_s.downcase
2502
+ # ======================================================================= #
2503
+ # First, pass the input through a filter:
2504
+ # ======================================================================= #
2505
+ i = ::Studium.find_corresponding_exam_topic(i, be_verbose)
2506
+ # ======================================================================= #
2507
+ # Next we can pass it in via a simple menu here:
2508
+ # ======================================================================= #
2509
+ i = case i
2510
+ # ======================================================================= #
2511
+ # === basic_virology
2512
+ # ======================================================================= #
2513
+ when 'basic_virology'
2514
+ 'Virologie Allgemein'
2515
+ # ======================================================================= #
2516
+ # === advanced_topics_in_plant_sciences
2517
+ # ======================================================================= #
2518
+ when /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant(_|-| |,)?sciences\??$/i,
2519
+ /^advanced(_|-| |,)?topics(_|-| |,)?in(_|-| |,)?plant$/i
2520
+ 'Advanced topics in plant sciences'
2521
+ # ======================================================================= #
2522
+ # === basic_chemistry
2523
+ # ======================================================================= #
2524
+ when 'basic_chemistry'
2525
+ 'Chemie'
2526
+ # ======================================================================= #
2527
+ # === allgemeine_mikrobiologie
2528
+ # ======================================================================= #
2529
+ when 'allgemeine_mikrobiologie'
2530
+ 'Allgemeine Mikrobiologie'
2531
+ # ======================================================================= #
2532
+ # === embryologie_und_entwicklung
2533
+ # ======================================================================= #
2534
+ when 'embryologie_und_entwicklung'
2535
+ 'Entwicklungsbiologie'
2536
+ # ======================================================================= #
2537
+ # === computer
2538
+ # ======================================================================= #
2539
+ when 'computer',
2540
+ /^computer(_|-| |,)?science$/i
2541
+ 'Computer Science'
2542
+ # ======================================================================= #
2543
+ # === Meteorologie und Atmosphäre
2544
+ # ======================================================================= #
2545
+ when /^meteorologie(_|-| |,)?und(_|-| |,)?atmosphäre$/i
2546
+ 'Meteorologie und Atmosphäre'
2547
+ # ======================================================================= #
2548
+ # === pflanzenwissenschaften
2549
+ # ======================================================================= #
2550
+ when 'pflanzenwissenschaften',
2551
+ /^struktur(_|-| |,)?und(_|-| |,)funktion(_|-| |,)?der$/i
2552
+ 'Struktur und Funktion der Pflanzen'
2553
+ when 'allgemeine_genetik'
2554
+ 'Allgemeine Genetik'
2555
+ # === Basic Biotechnology
2556
+ when 'basic_biotechnology',
2557
+ /^basic(_|-| |,)?biotechnology$/i
2558
+ 'Biotechnologie'
2559
+ when 'neurobiology'
2560
+ 'Neurobiologie'
2561
+ when 'zoologie'
2562
+ 'Allgemeine Zoologie'
2563
+ # ======================================================================= #
2564
+ # === medizin
2565
+ # ======================================================================= #
2566
+ when 'medizin',
2567
+ /^medizin(_|-| |,)?und(_|-| |,)?biomedizinische(_|-| |,)?technik$/i
2568
+ 'Medizin und biomedizinische Technik'
2569
+ # ======================================================================= #
2570
+ # === protein engineering
2571
+ # ======================================================================= #
2572
+ when 'protein_engineering'
2573
+ 'Protein Engineering'
2574
+ when 'organische_chemie'
2575
+ 'Organische Chemie'
2576
+ when 'analytische_chemie_1'
2577
+ 'Analytische Chemie'
2578
+ # ======================================================================= #
2579
+ # === ecology
2580
+ # ======================================================================= #
2581
+ when 'ecology'
2582
+ 'Ökologie'
2583
+ # ======================================================================= #
2584
+ # === physiologie
2585
+ # ======================================================================= #
2586
+ when 'physiologie',
2587
+ /^physiology(_|-| |,)?and(_|-| |,)?histology$/i
2588
+ 'Physiology and Histology'
2589
+ # ======================================================================= #
2590
+ # === vektoren
2591
+ # ======================================================================= #
2592
+ when 'vektoren',
2593
+ /^vectors(_|-| |,)?and(_|-| |,)?gene(_|-| |,)?therapy$/i
2594
+ 'Vektoren in der Gentechnologie'
2595
+ when 'ageing'
2596
+ 'Aging'
2597
+ when 'bioprozesstechnik'
2598
+ 'Bioprozesstechnik'
2599
+ when 'technische_mikrobiologie'
2600
+ 'TU Wien Microbiology'
2601
+ when 'cellbiology'
2602
+ 'Cellbiology'
2603
+ when 'physikalische_chemie'
2604
+ 'Physikalische Chemie'
2605
+ when 'analytische_chemie_2'
2606
+ 'Analytische Chemie 2'
2607
+ when 'gentechnik',/gentechnik_?und_?praktische_?biochemie$/
2608
+ 'Gentechnik und praktische Biochemie'
2609
+ when 'festkörperchemie','festkÖrperchemie',
2610
+ 'geochemistry',
2611
+ 'festkörper'
2612
+ 'Festkörper Chemie und Geochemie'
2613
+ when 'geologie',
2614
+ 'geologie_und_mineralogie'
2615
+ 'Geologie und Mineralogie'
2616
+ when 'anorganische_chemie'
2617
+ 'Anorganische Chemie'
2618
+ when 'law','rechtsgrundlagen'
2619
+ 'Rechtsgrundlagen'
2620
+ when 'organische_chemie_2'
2621
+ 'Organische Chemie 2'
2622
+ when 'biologie_des_wasser','wasserkunde'
2623
+ 'Wasserkunde'
2624
+ when 'technische_chemie'
2625
+ 'Technische Chemie'
2626
+ when 'umweltchemie'
2627
+ 'Umweltchemie'
2628
+ when 'signal_transduction',
2629
+ /^signal(_|-| |,)?transduction(_|-| |,)?and(_|-| |,)?laser(_|-| |,)?systems$/i
2630
+ 'Signaltransduktion und Lasersysteme'
2631
+ when 'paleobiology'
2632
+ 'Paläobiologie'
2633
+ when 'medizinische_chemie',
2634
+ /^medizinische(_| )?chemie(_| )?und(_| )?pharmazie$/
2635
+ 'Medizinische Chemie und Pharmazie'
2636
+ when 'cancerbiology'
2637
+ 'Cancer'
2638
+ # ======================================================================= #
2639
+ # === cytogenetik
2640
+ # ======================================================================= #
2641
+ when 'cytogenetik',
2642
+ /^cytogenetics(_|-| |,)?and(_|-| |,)?chromosome(_|-| |,)?biology$/i
2643
+ 'Cytogenetics and Chromosome Biology'
2644
+ # ======================================================================= #
2645
+ # === urea_cycle
2646
+ # ======================================================================= #
2647
+ when /^urea(_|-| |,)?cycle\??$/i
2648
+ 'The Urea Cycle'
2649
+ # ======================================================================= #
2650
+ # === erste_hilfe
2651
+ # ======================================================================= #
2652
+ when /^erste(_|-| |,)?hilfe\??$/i
2653
+ 'Erste Hilfe'
2654
+ # ======================================================================= #
2655
+ # === statistik
2656
+ # ======================================================================= #
2657
+ when 'statistik',
2658
+ /^qastatistik\??$/i
2659
+ 'Statistik'
2660
+ when 'basic_biochemistry'
2661
+ 'Basic Biochemistry'
2662
+ when 'advanced_biochemistry'
2663
+ 'Advanced Biochemistry'
2664
+ when 'fortgeschrittene_physik'
2665
+ 'Fortgeschrittene Physik'
2666
+ when 'advanced_biotechnology'
2667
+ 'Advanced Biotechnology'
2668
+ # ======================================================================= #
2669
+ # === bioanalytik
2670
+ # ======================================================================= #
2671
+ when 'bioanalytik',
2672
+ /^bioanalytik(_|-| |,)?und(_|-| |,)?biosensoren$/
2673
+ 'Bioanalytik und Biosensoren'
2674
+ # ======================================================================= #
2675
+ # === /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/
2676
+ # ======================================================================= #
2677
+ when 'genomics',
2678
+ /^genomics(_|-| |,)?and(_|-| |,)?metagenomics$/
2679
+ 'Genomik und Metagenomik'
2680
+ # ======================================================================= #
2681
+ # === netzwerke
2682
+ # ======================================================================= #
2683
+ when /^netzwerke\??$/i,
2684
+ /^-?-?computer(_|-| |,)?networks$/
2685
+ 'Computer networks'
2686
+ # ======================================================================= #
2687
+ # === clinical_microbiology
2688
+ # ======================================================================= #
2689
+ when /^clinical(_|-| |,)?microbiology$/
2690
+ 'Clinical Microbiology'
2691
+ # ======================================================================= #
2692
+ # === molekulare_medizin
2693
+ # ======================================================================= #
2694
+ when 'molekulare_medizin'
2695
+ 'Molekulare Medizin'
2696
+ # ======================================================================= #
2697
+ # === technisches_zeichnen
2698
+ # ======================================================================= #
2699
+ when /^technisches(_|-| |,)?zeichnen$/i
2700
+ 'Technisches Zeichnen'
2701
+ # ======================================================================= #
2702
+ # === evolution
2703
+ # ======================================================================= #
2704
+ when 'evolution',
2705
+ /^evolution(_|-| |,)?and(_|-| |,)?evolutionary(_|-| |,)?genetics$/i
2706
+ 'Evolution and Evolutionary Genetics'
2707
+ # ======================================================================= #
2708
+ # === rna_and_dna
2709
+ # ======================================================================= #
2710
+ when 'rna_and_dna'
2711
+ 'DNA und RNA'
2712
+ # ======================================================================= #
2713
+ # === research_topics_in_immunobiology
2714
+ # ======================================================================= #
2715
+ when 'research_topics_in_immunobiology'
2716
+ 'Research topics in Immunobiology'
2717
+ when 'prokaryote_genetics'
2718
+ 'Prokaryote Genetics'
2719
+ when 'fortgeschrittene_gentechnik'
2720
+ 'Fortgeschrittene Gentechnik'
2721
+ when 'fortgeschrittene_genetik'
2722
+ 'Fortgeschrittene Genetik'
2723
+ when 'pcr'
2724
+ 'PCR'
2725
+ when 'populationsgenetik'
2726
+ 'Populationsgenetik'
2727
+ # ======================================================================= #
2728
+ # === ecogenetics
2729
+ # ======================================================================= #
2730
+ when 'ecogenetics'
2731
+ 'Ökogenetik'
2732
+ # ======================================================================= #
2733
+ # === chemisches_labor
2734
+ # ======================================================================= #
2735
+ when /^chemisches(_|-| |,)?labor$/i
2736
+ 'Chemisches Labor'
2737
+ # ======================================================================= #
2738
+ # === theoretische_chemie
2739
+ # ======================================================================= #
2740
+ when 'theoretische_chemie'
2741
+ 'Theoretische Chemie'
2742
+ # ======================================================================= #
2743
+ # === plant_biotechnology
2744
+ # ======================================================================= #
2745
+ when 'plant_biotechnology'
2746
+ 'Plant Biotechnology'
2747
+ when 'advanced_virology'
2748
+ 'Advanced Virology'
2749
+ when 'microbial_ecology'
2750
+ 'Mikrobielle Ökologie'
2751
+ # === the_cellcycle
2752
+ when 'the_cellcycle',
2753
+ /^the(_|-| |,)?cell(_|-| |,)?cycle$/i
2754
+ 'The Cellcycle'
2755
+ when 'bioressourcenmanagement'
2756
+ 'Bioressourcenmanagement'
2757
+ when /^object(_|-| |,)?oriented(_|-| |,)?modeling$/i
2758
+ 'Objekt-orientiertes Modellieren'
2759
+ when 'technical_ecology'
2760
+ 'Technische Ökologie'
2761
+ when 'agrar_ecology'
2762
+ 'Agrarökologie'
2763
+ when 'veterinary_medicine'
2764
+ 'Veterinärmedizin'
2765
+ when 'advanced_chemistry'
2766
+ 'Advanced Chemistry'
2767
+ when 'landtechnik'
2768
+ 'Grundlagen der Landtechnik'
2769
+ when 'agrarmarkt'
2770
+ 'Agrarmärkte'
2771
+ when 'human_ecology'
2772
+ 'Humanökologie'
2773
+ when 'quality_management'
2774
+ 'Quality Management'
2775
+ # ======================================================================= #
2776
+ # === artificial_intelligence
2777
+ # ======================================================================= #
2778
+ when 'artificial_intelligence'
2779
+ 'Artificial Intelligence'
2780
+ when 'translational_control',
2781
+ /^translation_?ribosomes_?and_?translational_?control$/
2782
+ 'Translation, Ribosomes and Translational Control'
2783
+ when 'posttranslationale_modifikation_von_proteinen'
2784
+ 'Posttranslationale Modifikation von Proteinen'
2785
+ when 'stemcells'
2786
+ 'Stammzellen'
2787
+ # ======================================================================= #
2788
+ # === plant_breeding
2789
+ # ======================================================================= #
2790
+ when 'plant_breeding'
2791
+ 'Pflanzenzüchtung (Plant Breeding)'
2792
+ when 'aminoacids'
2793
+ 'Amino Acids'
2794
+ # === enzymes
2795
+ when 'enzymes',
2796
+ /^enzymes(_|-| |,)?and(_|-| |,)?cofactors$/i
2797
+ 'Enzymes and Cofactors'
2798
+ when 'advanced_microbiology'
2799
+ 'Advanced Microbiology'
2800
+ when 'antibodies',/^antibodies(_|-| |,)?and(_|-| |,)?antigens$/
2801
+ 'Antibodies and Antigens'
2802
+ when 'molecular_biology_of_plants',
2803
+ /^molecular(_|-| |,)?biology(_|-| |,)?of(_|-| |,)?the$/i
2804
+ 'Molecular Biology of the Plant'
2805
+ when 'lebensmitteltechnologie'
2806
+ 'Lebensmitteltechnologie'
2807
+ when 'universe','the_universe'
2808
+ 'The Universe'
2809
+ when 'advanced_cellbiology'
2810
+ 'Advanced Cell Biology'
2811
+ # === insulin
2812
+ when 'insulin',
2813
+ /^insulin(_|-| |,)?and(_|-| |,)?diabetes$/
2814
+ 'Insulin and Diabetes'
2815
+ # === rna_seq
2816
+ when 'rna_seq'
2817
+ 'RNA Seq'
2818
+ # === innate_immunity
2819
+ when 'innate_immunity'
2820
+ 'Innate Immunity'
2821
+ when 'genetische_krankheiten'
2822
+ 'Genetische Krankheiten'
2823
+ when 'systematische_zoologie'
2824
+ 'Systematische Zoologie'
2825
+ when /^betriebssysteme?$/
2826
+ 'Betriebssysteme'
2827
+ when 'the_c_programming_language'
2828
+ 'The C Programming Language'
2829
+ when 'fish'
2830
+ 'FISH - Fluorescence in-situ hybridization'
2831
+ when 'ruby_on_rails'
2832
+ 'Ruby on Rails'
2833
+ when 'viral_vectors'
2834
+ 'Virale Vektoren'
2835
+ when 'plant_development'
2836
+ 'Plant Development'
2837
+ when 'grassland_cultivation','grünlandwirtschaft'
2838
+ 'Grünlandbewirtschaftung (Grassland cultivation)'
2839
+ when 'ecological_agriculture'
2840
+ 'Ökologische Landwirtschaft (Ecological Agriculture)'
2841
+ when 'the_european_union'
2842
+ 'The European Union'
2843
+ when 'lipids'
2844
+ 'Lipide'
2845
+ when 'nucleotide_sequencing'
2846
+ 'Nucleotide Sequencing'
2847
+ when 'databases','datenbanken','database',
2848
+ /^databases(_|-| |,)?and(_|-| |,)?sql$/
2849
+ 'Databases and SQL'
2850
+ when 'biological_therapeutics'
2851
+ 'Biological Therapeutics'
2852
+ # ======================================================================= #
2853
+ # === alcohols
2854
+ # ======================================================================= #
2855
+ when 'alcohols','alkohole'
2856
+ 'Alkohole'
2857
+ # ======================================================================= #
2858
+ # === mikrobielle_physiologie
2859
+ # ======================================================================= #
2860
+ when 'mikrobielle_physiologie'
2861
+ 'Mikrobielle Physiologie'
2862
+ # ======================================================================= #
2863
+ # === technische_grundlagen_der_informatik
2864
+ # ======================================================================= #
2865
+ when /^technische(_|-| |,)?grundlagen(_|-| |,)?der(_|-| |,)?informatik$/i
2866
+ 'Technische Grundlagen der Informatik'
2867
+ # ======================================================================= #
2868
+ # === patent_law
2869
+ # ======================================================================= #
2870
+ when /^patent(_|-| |,)?law\??$/i
2871
+ 'Patent Law'
2872
+ # ======================================================================= #
2873
+ # === the_c_plus_plus_programming_language
2874
+ # ======================================================================= #
2875
+ when 'the_c_plus_plus_programming_language'
2876
+ 'The C++ programming language'
2877
+ # ======================================================================= #
2878
+ # === semisynthese_von_proteinen_und_nukleotiden
2879
+ # ======================================================================= #
2880
+ when 'semisynthese_von_proteinen_und_nukleotiden',
2881
+ 'semisynthese_von_proteinen'
2882
+ 'Semisynthese von Proteinen und Nukleotiden'
2883
+ # ======================================================================= #
2884
+ # === naturschutz
2885
+ # ======================================================================= #
2886
+ when 'naturschutz',
2887
+ /^nature(_|-| |,)?conservation(_|-| |,)?and(_|-| |,)?biodiversity(_|-| |,)?$/i
2888
+ 'Naturschutz und Biodiversität'
2889
+ # ======================================================================= #
2890
+ # === biochips
2891
+ # ======================================================================= #
2892
+ when 'biochips',
2893
+ /^biochips(_|-| |,)?and(_|-| |,)?microarray$/i
2894
+ 'Biochips and Microarray'
2895
+ # ======================================================================= #
2896
+ # === urbanism
2897
+ # ======================================================================= #
2898
+ when 'urbanism','urbanism_and_traffic'
2899
+ 'Urbanism and Traffic'
2900
+ # ======================================================================= #
2901
+ # === vaccines_and_vaccination
2902
+ # ======================================================================= #
2903
+ when 'vaccines_and_vaccination'
2904
+ 'Vaccines and Vaccination'
2905
+ # ======================================================================= #
2906
+ # === glycolysis
2907
+ # ======================================================================= #
2908
+ when 'glycolysis',
2909
+ /^glycolysis\??$/i
2910
+ 'Die Glykolyse'
2911
+ # ======================================================================= #
2912
+ # === gluconeogenesis
2913
+ # ======================================================================= #
2914
+ when 'gluconeogenesis',
2915
+ 'gluco',
2916
+ /^gluconeogenesis\??$/i
2917
+ 'Die Gluconeogenesis'
2918
+ # ======================================================================= #
2919
+ # === rnai
2920
+ # ======================================================================= #
2921
+ when /^RNAi$/i,/^RNAi(_|-| |,)?siRNA(_|-| |,)?and(_|-| |,)?miRNA$/i,
2922
+ /^miRNA$/i
2923
+ 'RNAi, siRNA and miRNA'
2924
+ # ======================================================================= #
2925
+ # === mikrobielle_lebensgemeinschaften
2926
+ # ======================================================================= #
2927
+ when /^mikrobielle(_|-| |,)?lebensgemeinschaften$/
2928
+ 'Mikrobielle Lebensgemeinschaften'
2929
+ # ======================================================================= #
2930
+ # === theoretische_informatik
2931
+ # ======================================================================= #
2932
+ when /^theoretische(_|-| |,)?informatik$/
2933
+ 'Theoretische Informatik'
2934
+ # ======================================================================= #
2935
+ # === javascript
2936
+ # ======================================================================= #
2937
+ when 'javascript'
2938
+ 'JavaScript'
2939
+ # ======================================================================= #
2940
+ # === system_biology
2941
+ # ======================================================================= #
2942
+ when 'system_biology',
2943
+ /^system(_|-| |,)?biology(_|-| |,)?and(_|-| |,)?synthetic(_|-| |,)?biology$/
2944
+ 'System Biology and Synthetic Biology'
2945
+ # ======================================================================= #
2946
+ # === architecture
2947
+ # ======================================================================= #
2948
+ when 'architecture',
2949
+ 'architektur'
2950
+ 'Architektur'
2951
+ # ======================================================================= #
2952
+ # === dna_replication
2953
+ # ======================================================================= #
2954
+ when 'dna_replication'
2955
+ 'DNA Replication'
2956
+ # ======================================================================= #
2957
+ # === endospores_and_spores
2958
+ # ======================================================================= #
2959
+ when 'endospores_and_spores',
2960
+ /^endosporen(_|-| |,)?und(_|-| |,)?sporen$/i
2961
+ 'Endosporen und Sporen'
2962
+ # ======================================================================= #
2963
+ # === the_bacterial_cell_wall
2964
+ # ======================================================================= #
2965
+ when 'the_bacterial_cell_wall'
2966
+ 'The bacterial cell wall'
2967
+ # ======================================================================= #
2968
+ # === biofilms
2969
+ # ======================================================================= #
2970
+ when 'biofilms'
2971
+ 'Biofilme'
2972
+ # ======================================================================= #
2973
+ # === bacteriophages
2974
+ # ======================================================================= #
2975
+ when 'bacteriophages','phages'
2976
+ 'Bakteriophagen'
2977
+ # ======================================================================= #
2978
+ # === dna_mutation_and_dna_repair
2979
+ # ======================================================================= #
2980
+ when /^dna(_|-| |,)?mutation(_|-| |,)?and(_|-| |,)?dna(_|-| |,)?repa?i?r?$/,
2981
+ 'dna_mutation_and_dna_repair',
2982
+ 'mutation'
2983
+ 'DNA Mutation and DNA repair'
2984
+ # ======================================================================= #
2985
+ # === the_interferon_system
2986
+ # ======================================================================= #
2987
+ when /^the(_|-| |,)?interferon(_|-| |,)?system$/i
2988
+ 'The Interferon system'
2989
+ # ======================================================================= #
2990
+ # === pharmazeutische_biotechnologie
2991
+ # ======================================================================= #
2992
+ when /^pharmazeutische(_|-| |,)?biotechnologie$/i,
2993
+ /^pharmaceutical(_|-| |,)?biotechnology$/i
2994
+ 'Pharmaceutical Biotechnology'
2995
+ # ======================================================================= #
2996
+ # === molekulare_infektionsbiologie
2997
+ # ======================================================================= #
2998
+ when /^molekulare(_|-| |,)?infektionsbiologie$/i,
2999
+ /^parasitic(_|-| |,)?diseases(_|-| |,)?and(_|-| |,)?molecular(_|-| |,)?infection(_|-| |,)?biology$/i
3000
+ 'Parasitic Diseases and Molecular Infection Biology'
3001
+ # ======================================================================= #
3002
+ # === structural_bioinformatics
3003
+ # ======================================================================= #
3004
+ when /^structural(_|-| |,)?bioinformatics$/i
3005
+ 'Structural Bioinformatics'
3006
+ # ======================================================================= #
3007
+ # === computer_graphics
3008
+ # ======================================================================= #
3009
+ when /^computer(_|-| |,)?graphics$/i,
3010
+ /^computer(_|-| |,)?vision(_|-| |,)?and(_|-| |,)?computer(_|-| |,)?graphics$/i
3011
+ 'Computer Graphics'
3012
+ # ======================================================================= #
3013
+ # === food_microbiologiy
3014
+ # ======================================================================= #
3015
+ when /^food(_|-| |,)?microbiology$/i,
3016
+ /^food(_|-| |,)?microbiology(_|-| |,)?and(_|-| |,)?food(_|-| |,)?biotechnology$/i
3017
+ 'Food Microbiology and Food Biotechnology'
3018
+ when 'chemische_technologie_anorganischer_stoffe'
3019
+ 'Chemische Technologie anorganischer Stoffe'
3020
+ # ======================================================================= #
3021
+ # === HTML
3022
+ # ======================================================================= #
3023
+ when 'html'
3024
+ 'HTML'
3025
+ # ======================================================================= #
3026
+ # === splicing_exons_and_introns
3027
+ # ======================================================================= #
3028
+ when /^splicing_exons_and_introns$/i
3029
+ 'Splicing, Exons and Introns'
3030
+ # ======================================================================= #
3031
+ # === cell_cultures
3032
+ # ======================================================================= #
3033
+ when /^cell(_|-| |,)?cultures$/i
3034
+ 'Cell cultures'
3035
+ # ======================================================================= #
3036
+ # === chemotaxis_and_motility_in_prokaryotes
3037
+ # ======================================================================= #
3038
+ when /^chemotaxis(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i,
3039
+ /^chemotaxie?s(_|-| |,)?quorum(_|-| |,)?sensing(_|-| |,)?and(_|-| |,)?motility(_|-| |,)?in(_|-| |,)?prokaryotes\??$/i
3040
+ 'Chemotaxis, Quorum sensing and motility in prokaryotes'
3041
+ # ======================================================================= #
3042
+ # === cellular_transport_and_protein_secretion
3043
+ # ======================================================================= #
3044
+ when /^cellular(_|-| |,)?transport/i,
3045
+ /^cellular(_|-| |,)?transport(_|-| |,)?and(_|-| |,)?protein(_|-| |,)?secretion$/i
3046
+ 'Cellular transport and protein secretion'
3047
+ # ======================================================================= #
3048
+ # === elisa
3049
+ # ======================================================================= #
3050
+ when /^elisa$/i
3051
+ 'ELISA'
3052
+ # ======================================================================= #
3053
+ # === mikroskopie
3054
+ # ======================================================================= #
3055
+ when 'mikroskope','mikroskopie',
3056
+ /^imaging(_|-| |,)?and(_|-| |,)?microscopy$/i
3057
+ 'Imaging and Microscopy'
3058
+ # ======================================================================= #
3059
+ # === scientific_writing
3060
+ # ======================================================================= #
3061
+ when /^scientific(_|-| |,)?writing$/i,
3062
+ /^scientific(_|-| |,)?writing(_|-| |,)?and(_|-| |,)?publishing$/i
3063
+ 'Scientific writing and publishing'
3064
+ # ======================================================================= #
3065
+ # === peroxisomes
3066
+ # ======================================================================= #
3067
+ when /^peroxisomes$/i,
3068
+ /^peroxisomes(_|-| |,)?glycosomes(_|-| |,)?and(_|-| |,)?lysosomes\??$/i
3069
+ 'Peroxisomes, Glycosomes and Lysosomes'
3070
+ # ======================================================================= #
3071
+ # === the_microbiome
3072
+ # ======================================================================= #
3073
+ when /^the(_|-| |,)?microbiome$/i
3074
+ 'The Microbiome'
3075
+ # ======================================================================= #
3076
+ # === elektrotechnik
3077
+ # ======================================================================= #
3078
+ when /^elektrotechnik$/i,
3079
+ /^elektrotechnik(_|-| |,)?und(_|-| |,)?elektrizität$/i
3080
+ 'Elektrotechnik und Elektrizität'
3081
+ # ======================================================================= #
3082
+ # === fluorescence_microscopy
3083
+ # ======================================================================= #
3084
+ when /^fluorescence(_|-| |,)?microscopy\??$/i
3085
+ 'Fluorescence Microscopy'
3086
+ # ======================================================================= #
3087
+ # === citric_acid_cycle
3088
+ # ======================================================================= #
3089
+ when /^citric(_|-| |,)?acid(_|-| |,)?cycle$/i
3090
+ 'Citric Acid Cycle'
3091
+ # ======================================================================= #
3092
+ # === mess_und_regeltechnik
3093
+ # ======================================================================= #
3094
+ when /^messtechnik(_|-| |,)?und(_|-| |,)?regeltechnik$/i
3095
+ 'Messtechnik und Regeltechnik'
3096
+ # ======================================================================= #
3097
+ # === cellular_vesicles
3098
+ # ======================================================================= #
3099
+ when /^cellular(_|-| |,)?vesicles$/i
3100
+ 'Cellular Vesicles'
3101
+ # ======================================================================= #
3102
+ # === abfall
3103
+ # ======================================================================= #
3104
+ when 'abfall',
3105
+ 'abfall_als_ressource'
3106
+ 'Abfall als Ressource'
3107
+ # ======================================================================= #
3108
+ # === python (and more)
3109
+ # ======================================================================= #
3110
+ when 'python','archaea','cyanobacteria','naturstoffe',
3111
+ 'biopolymers',
3112
+ 'bionik',
3113
+ 'vitamine',
3114
+ 'biomembranes',
3115
+ /^transcription$/,
3116
+ 'pflanzenanatomie',
3117
+ 'toxikologie',
3118
+ 'forensik',
3119
+ 'tierzucht',
3120
+ 'biomarkers',
3121
+ 'forstwirtschaft',
3122
+ 'java', # === java
3123
+ 'strukturbiologie',
3124
+ 'geschichte',
3125
+ 'wissenschaft',
3126
+ /^geography$/i,
3127
+ /^geographie$/i,
3128
+ 'informatik',
3129
+ /^excel$/i,
3130
+ 'sexualbiologie',
3131
+ 'betriebswirtschaftslehre',
3132
+ 'klima',
3133
+ 'macroeconomics',
3134
+ 'biomaterials',
3135
+ 'linux',
3136
+ 'elektronenmikroskopie',
3137
+ 'allergie',
3138
+ 'prozesstechnik',
3139
+ 'glykomik',
3140
+ 'glyoxylatzyklus',
3141
+ 'weinbau',
3142
+ 'lebensmittel',
3143
+ 'fungi',
3144
+ 'crispr',
3145
+ 'yeast',
3146
+ 'ruby',
3147
+ 'ethik',
3148
+ 'physik',
3149
+ 'anatomie',
3150
+ 'obstbau',
3151
+ 'hormone',
3152
+ 'nanotechnologie',
3153
+ 'management',
3154
+ 'bauwesen',
3155
+ 'economy',
3156
+ 'nutztierethologie',
3157
+ 'genexpression',
3158
+ 'apoptosis',
3159
+ 'immunologie',
3160
+ 'biophysik',
3161
+ 'pflanzenbau',
3162
+ 'elektrophorese',
3163
+ 'insekten',
3164
+ /^chemische(_|-| |,)?technologie(_|-| |,)?organischer(_|-| |,)?stoffe$/i,
3165
+ 'hygiene',
3166
+ 'cellulose',
3167
+ 'immunanalytik',
3168
+ 'immunoassay',
3169
+ 'microcontrollers',
3170
+ 'mitochondria',
3171
+ 'pflanzenschutz',
3172
+ /^projektmanagement$/i,
3173
+ 'mathematics',
3174
+ 'algorithms',
3175
+ 'psychologie',
3176
+ 'stickstofffixierung',
3177
+ 'cytokines',
3178
+ 'agrarphysik',
3179
+ 'epigenetik',
3180
+ 'pentosephosphatweg',
3181
+ 'bioelektrochemie',
3182
+ 'glycogen',
3183
+ 'proteolyse',
3184
+ 'proteomik',
3185
+ 'metabolismus',
3186
+ 'geometrie',
3187
+ 'audio',
3188
+ 'umweltbiotechnologie',
3189
+ 'parasitologie',
3190
+ 'bodenkunde',
3191
+ 'atomemissionsspektrometrie',
3192
+ 'bioinformatics',
3193
+ 'kryptographie',
3194
+ 'phytochemie',
3195
+ 'bodenmikrobiologie',
3196
+ 'pathologie',
3197
+ 'robotik',
3198
+ 'thermodynamics',
3199
+ 'verfahrenstechnik',
3200
+ 'anthropologie',
3201
+ 'marketing',
3202
+ 'biologie',
3203
+ 'birds',
3204
+ 'mixed'
3205
+ i.capitalize
3206
+ end
3207
+ return i
3208
+ end; self.instance_eval { alias expand find_corresponding_exam_title } # === Studium.expand
3209
+ self.instance_eval { alias beautify_this_topic find_corresponding_exam_title } # === Studium.beautify_this_topic
3210
+ self.instance_eval { alias beautiful_topic find_corresponding_exam_title } # === Studium.beautiful_topic
3211
+ self.instance_eval { alias beautiful_topic find_corresponding_exam_title } # === Studium.beautiful_topic
3212
+ self.instance_eval { alias pretty_topic_name find_corresponding_exam_title } # === Studium.pretty_topic_name
3213
+
3214
+ # ========================================================================= #
3215
+ # === Studium.map_meta_exam_theme_to_corresponding_exam_themes
3216
+ #
3217
+ # Input to this method should be like "meta_biochem". This input
3218
+ # will then be split up into e. g. "aa", "bem1", "bem2" and so
3219
+ # forth, which correspond to exam topics such as "aminoacids",
3220
+ # "biochemistry1", "biochemistry" and so forth.
3221
+ #
3222
+ # Since as of 03.07.2020 this method depends on the yaml file
3223
+ # called grouped_themes.yml.
3224
+ #
3225
+ # On my home system it can be found here:
3226
+ #
3227
+ # bl $RUBY_STUDIUM/yaml/grouped_themes.yml
3228
+ #
3229
+ # ========================================================================= #
3230
+ def self.map_meta_exam_theme_to_corresponding_exam_themes(i, dataset = nil)
3231
+ if dataset.nil?
3232
+ dataset = YAML.load_file(Studium.file_grouped_themes)
3233
+ end
3234
+ return_this = i.dup
3235
+ case return_this # case tag
3236
+ # ======================================================================= #
3237
+ # === n_exams_in_this_topic meta_immunology
3238
+ #
3239
+ # Everything related to Immunology.
3240
+ # ======================================================================= #
3241
+ when /meta(_|-| |,)?immunology$/,
3242
+ /meta(_|-| |,)?immuno$/,
3243
+ /meta(_|-| |,)?imm$/,
3244
+ /meta7/
3245
+ return_this = dataset['immunology']
3246
+ # ======================================================================= #
3247
+ # === n_exams_in_this_topic meta_upcoming_exams
3248
+ #
3249
+ # Invocation example:
3250
+ #
3251
+ # meta_upcoming_exams
3252
+ # metaupcomingexams
3253
+ #
3254
+ # ======================================================================= #
3255
+ when /meta(_|-| |,)?upcoming(_|-| |,)?_exams/,
3256
+ /meta(_|-| |,)?upcoming$/i
3257
+ return_this = dataset['upcoming_exams']
3258
+ # ======================================================================= #
3259
+ # === n_exams_in_this_topic meta_vectors
3260
+ #
3261
+ # Topics that may belong to the "metatopic" virology.
3262
+ #
3263
+ # Invocation example:
3264
+ #
3265
+ # n_exams_in_this_topic meta_virology
3266
+ #
3267
+ # ======================================================================= #
3268
+ when /meta(_|-| |,)?virology$/,
3269
+ /meta(_|-| |,)?virologie$/,
3270
+ /meta(_|-| |,)?vectors$/
3271
+ return_this = dataset['virology']
3272
+ # ======================================================================= #
3273
+ # === n_exams_in_this_topic meta_chemistry
3274
+ #
3275
+ # Everything related to chemistry is stored here.
3276
+ # ======================================================================= #
3277
+ when /^meta(_|-| |,)?chemistry/, # ← metachem
3278
+ /^meta(_|-| |,)?chem$/,
3279
+ /meta6/
3280
+ return_this = dataset['chemistry']
3281
+ # ======================================================================= #
3282
+ # === n_exams_in_this_topic meta_biochem
3283
+ #
3284
+ # All topics related to biochemistry are gathered here.
3285
+ # ======================================================================= #
3286
+ when /^-?-?meta(_|-| |,)?biochemistry$/i,
3287
+ /^-?-?meta(_|-| |,)?biochem$/i,
3288
+ /^-?-?meta(_|-| |,)?biochemistry2/,
3289
+ /^-?-?meta(_|-| |,)?biochem2/,
3290
+ /^-?-?meta(_|-| |,)?advanced(_|-| |,)?biochemistry/,
3291
+ /^-?-?meta1$/i
3292
+ return_this = dataset['biochemistry']
3293
+ # ======================================================================= #
3294
+ # === n_exams_in_this_topic meta_chemistry
3295
+ #
3296
+ # Everything related to informatics/programming is stored here.
3297
+ # ======================================================================= #
3298
+ when /^meta(_|-| |,)?informatics?$/i, # ← metainformatics
3299
+ /^meta(_|-| |,)?programming$/
3300
+ return_this = dataset['programming']
3301
+ # ======================================================================= #
3302
+ # === n_exams_in_this_topic meta_biotechnology
3303
+ #
3304
+ # Everything related to biotechnology.
3305
+ # ======================================================================= #
3306
+ when /^meta(_|-| |,)?biotechnology$/, # ← metabiotechnology
3307
+ /^meta(_|-| |,)?biotech$/
3308
+ return_this = dataset['biotechnology']
3309
+ # ======================================================================= #
3310
+ # === n_exams_in_this_topic meta_gentechnik
3311
+ # ======================================================================= #
3312
+ when /meta(_|-| |,)?gentechnik$/i,
3313
+ /meta(_|-| |,)?gentech$/i
3314
+ return_this = dataset['genetechnology']
3315
+ # ======================================================================= #
3316
+ # === n_exams_in_this_topic meta_cellbiology
3317
+ #
3318
+ # Everything related to cell biology is stored here.
3319
+ # ======================================================================= #
3320
+ when /meta(_|-| |,)?cellbiology/ # ← metacellbio
3321
+ return_this = dataset['cellbiology']
3322
+ # ======================================================================= #
3323
+ # === n_exams_in_this_topic meta_genetics
3324
+ #
3325
+ # Everything related to genes is stored here.
3326
+ # ======================================================================= #
3327
+ when /^meta(_|-| |,)?genetics/ # ← metagen
3328
+ return_this = dataset['genetics']
3329
+ # ======================================================================= #
3330
+ # === n_exams_in_this_topic meta_microbiology
3331
+ #
3332
+ # Everything related to genes is stored here.
3333
+ # ======================================================================= #
3334
+ when /^meta(_|-| |,)?microbiology$/i,
3335
+ /^meta(_|-| |,)?mikrobiologie$/i,
3336
+ /^meta(_|-| |,)?micro$/i,
3337
+ /^microbiology$/i
3338
+ return_this = dataset['microbiology']
3339
+ # ======================================================================= #
3340
+ # === n_exams_in_this_topic meta_zoology
3341
+ # ======================================================================= #
3342
+ when /meta(_|-| |,)?zoology/
3343
+ return_this = dataset['zoology']
3344
+ # ======================================================================= #
3345
+ # === n_exams_in_this_topic meta_plants
3346
+ # ======================================================================= #
3347
+ when /meta(_|-| |,)?plants/,
3348
+ /meta5/
3349
+ return_this = dataset['plants']
3350
+ end
3351
+ if return_this.is_a? Array
3352
+ return_this = return_this.map {|inner_line|
3353
+ find_corresponding_exam_topic(inner_line)
3354
+ }
3355
+ else
3356
+ find_corresponding_exam_topic(return_this)
3357
+ end
3358
+ return return_this
3359
+ end
3360
+
3361
+ # ========================================================================= #
3362
+ # === Studium.obtain_random_topic
3363
+ #
3364
+ # This may be used like so:
3365
+ #
3366
+ # Studium.obtain_random_topic # => "rna_and_dna"
3367
+ #
3368
+ # ========================================================================= #
3369
+ def self.obtain_random_topic
3370
+ Studium.find_corresponding_exam_topic(:random)
3371
+ end
3372
+
3373
+ # ========================================================================= #
3374
+ # === Studium.is_this_exam_topic_registered?(this_topic)
3375
+ #
3376
+ # This method can be used to find out whether the given input is
3377
+ # a registered exam topic or not.
3378
+ #
3379
+ # Usage example:
3380
+ #
3381
+ # Studium.is_this_exam_topic_registered?('rbroken')
3382
+ #
3383
+ # ========================================================================= #
3384
+ def self.is_this_exam_topic_registered?(this_topic)
3385
+ Studium.find_corresponding_exam_topic(this_topic, :be_quiet)
3386
+ end
3387
+
3388
+ # ========================================================================= #
3389
+ # === Studium.is_this_an_exam_topic?
3390
+ #
3391
+ # This method will determine whether the given input to this method
3392
+ # is a valid exam topic or whether it is not.
3393
+ #
3394
+ # Usage examples:
3395
+ #
3396
+ # Studium.is_this_an_exam_topic?('rbroken') # => false
3397
+ # Studium.is_this_an_exam_topic?('amg1') # => true
3398
+ # Studium.is_this_an_exam_topic?('amg11') # => false
3399
+ #
3400
+ # ========================================================================= #
3401
+ def self.is_this_an_exam_topic?(i = :amg)
3402
+ expanded = find_corresponding_exam_topic(i, :be_quiet)
3403
+ return true if expanded
3404
+ return false
3405
+ end; self.instance_eval { alias is_this_exam_topic_available? is_this_an_exam_topic? } # === is_this_exam_topic_available?
3406
+
3407
+ # ========================================================================= #
3408
+ # === Studium.return_location_to_this_exam_topic
3409
+ #
3410
+ # This method can be used to return the location to an exam topic.
3411
+ # ========================================================================= #
3412
+ def self.return_location_to_this_exam_topic(i)
3413
+ i = i.first if i.is_a? Array
3414
+ i = ::Studium.find_corresponding_exam_topic(i.to_s)
3415
+ return "#{::Studium.exam_topics?}#{i}"
3416
+ end; self.instance_eval { alias return_location_to_this_exam return_location_to_this_exam_topic } # === Studium.return_location_to_this_exam_topic
3417
+
3418
+ # ========================================================================= #
3419
+ # === Studium.sanitize_this_theme_topic
3420
+ #
3421
+ # This method will take input such as 'math' and sanitize it towards
3422
+ # the longer (and correct) name called 'mathematics'.
3423
+ # ========================================================================= #
3424
+ def self.sanitize_this_theme_topic(topic)
3425
+ case topic # Add some aliases (case tag, aliases tag, alias tag)
3426
+ # ======================================================================= #
3427
+ # === theoretische_informatik
3428
+ # ======================================================================= #
3429
+ when 'theoretische_informatik'
3430
+ topic = 'theoretical informatics'
3431
+ # ======================================================================= #
3432
+ # === mathematik
3433
+ # ======================================================================= #
3434
+ when 'mathematik',
3435
+ 'mathematic',
3436
+ 'maths',
3437
+ 'math'
3438
+ topic = 'mathematics'
3439
+ # ======================================================================= #
3440
+ # === plants
3441
+ # ======================================================================= #
3442
+ when 'plants'
3443
+ topic = 'plant sciences'
3444
+ # ======================================================================= #
3445
+ # === bioprocess
3446
+ # ======================================================================= #
3447
+ when 'bioprocess',
3448
+ 'bioprozess'
3449
+ topic = 'bioprocess technology'
3450
+ # ======================================================================= #
3451
+ # === biochemie
3452
+ # ======================================================================= #
3453
+ when 'biochemie','biochem'
3454
+ topic = 'biochemistry'
3455
+ # ======================================================================= #
3456
+ # === chemie
3457
+ # ======================================================================= #
3458
+ when 'chemie',
3459
+ 'chem'
3460
+ topic = 'chemistry'
3461
+ # ======================================================================= #
3462
+ # === patho
3463
+ # ======================================================================= #
3464
+ when 'patho',
3465
+ 'pathologie'
3466
+ topic = 'pathology'
3467
+ # ======================================================================= #
3468
+ # === organic_chemistry
3469
+ # ======================================================================= #
3470
+ when 'organic_chemistry'
3471
+ topic = 'organic chemistry'
3472
+ # ======================================================================= #
3473
+ # === mikrobiologie
3474
+ # ======================================================================= #
3475
+ when 'mikrobiologie'
3476
+ topic = 'microbiology'
3477
+ # ======================================================================= #
3478
+ # === biotech
3479
+ # ======================================================================= #
3480
+ when 'biotech'
3481
+ topic = 'biotechnology'
3482
+ # ======================================================================= #
3483
+ # === immuno
3484
+ # ======================================================================= #
3485
+ when 'immuno',
3486
+ 'imuno',
3487
+ 'immunologie'
3488
+ topic = 'immunology'
3489
+ # ======================================================================= #
3490
+ # === diseases
3491
+ # ======================================================================= #
3492
+ when 'diseases'
3493
+ topic = 'disease'
3494
+ # ======================================================================= #
3495
+ # === genetik
3496
+ # ======================================================================= #
3497
+ when 'genetik'
3498
+ topic = 'genetics'
3499
+ # ======================================================================= #
3500
+ # === bioinformatik
3501
+ # ======================================================================= #
3502
+ when 'bioinformatik',
3503
+ 'bioinfo'
3504
+ topic = 'bioinformatics'
3505
+ # ======================================================================= #
3506
+ # === botany
3507
+ # ======================================================================= #
3508
+ when 'botany',
3509
+ 'pflants',
3510
+ 'pflanzen'
3511
+ topic = 'plants'
3512
+ # ======================================================================= #
3513
+ # === cellbio
3514
+ # ======================================================================= #
3515
+ when 'cellbio',
3516
+ 'cell'
3517
+ topic = 'cellbiology'
3518
+ # ======================================================================= #
3519
+ # === virus
3520
+ # ======================================================================= #
3521
+ when 'virus',
3522
+ 'viruses'
3523
+ topic = 'virology'
3524
+ end
3525
+ return topic
3526
+ end
3527
+
3528
+ end
3529
+
3530
+ if __FILE__ == $PROGRAM_NAME
3531
+ alias e puts
3532
+ p Studium.find_corresponding_exam_topic 1
3533
+ p Studium.find_corresponding_exam_topic :rand
3534
+ p Studium.find_corresponding_exam_title 'am'
3535
+ p Studium.find_corresponding_exam_title 'hor'
3536
+ pp Studium.map_meta_exam_theme_to_corresponding_exam_themes('meta_biochem')
3537
+ e Studium.sanitize_this_theme_topic('math') # ← Just for testing.
3538
+ end # findcorrespondingexamtopic amg