studium 0.10.1

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

Potentially problematic release.


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

Files changed (882) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1982 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/d10 +7 -0
  7. data/bin/d100 +7 -0
  8. data/bin/d15 +7 -0
  9. data/bin/d20 +7 -0
  10. data/bin/d25 +7 -0
  11. data/bin/d3 +7 -0
  12. data/bin/d30 +7 -0
  13. data/bin/d5 +7 -0
  14. data/bin/determine_curricula +7 -0
  15. data/bin/exam_registration_at +7 -0
  16. data/bin/exam_statistics +7 -0
  17. data/bin/exams_per_month +9 -0
  18. data/bin/finished_exams_at_this_university +7 -0
  19. data/bin/flashcards +7 -0
  20. data/bin/mandatory_continuous_assessment +7 -0
  21. data/bin/mandatory_upcoming_courses +7 -0
  22. data/bin/n_exam_questions_already_answered +16 -0
  23. data/bin/nquestions +7 -0
  24. data/bin/nsolved +7 -0
  25. data/bin/open_last_exam_question_asked_file +7 -0
  26. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  27. data/bin/return_n_ects_from_this_file +7 -0
  28. data/bin/show_lectures_on_the_commandline +7 -0
  29. data/bin/show_themes +7 -0
  30. data/bin/solved +9 -0
  31. data/bin/solved_ects +7 -0
  32. data/bin/studienkennzahl +7 -0
  33. data/bin/studium +7 -0
  34. data/bin/studium_skeleton +7 -0
  35. data/bin/ufind +7 -0
  36. data/bin/upcoming_exams +7 -0
  37. data/bin/week_parser +7 -0
  38. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  39. data/doc/HOW_TO_ADAPT_THIS_PROJECT.md +43 -0
  40. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +47 -0
  41. data/doc/README.gen +1965 -0
  42. data/doc/TODO_FOR_STUDIUM_GEM.md +113 -0
  43. data/doc/deprecated_components.md +24 -0
  44. data/doc/documentation_for_the_file_lecture_information.md +294 -0
  45. data/doc/elegant_colours.md +20 -0
  46. data/img/STUDIES.png +0 -0
  47. data/lib/studium.rb +5 -0
  48. data/lib/studium/autoinclude.rb +7 -0
  49. data/lib/studium/base/base.rb +84 -0
  50. data/lib/studium/base/cliner.rb +58 -0
  51. data/lib/studium/base/colours.rb +307 -0
  52. data/lib/studium/base/commandline_arguments.rb +64 -0
  53. data/lib/studium/base/constants.rb +34 -0
  54. data/lib/studium/base/curriculum.rb +329 -0
  55. data/lib/studium/base/directory_to_the_exam_topics.rb +23 -0
  56. data/lib/studium/base/editor.rb +28 -0
  57. data/lib/studium/base/encoding.rb +36 -0
  58. data/lib/studium/base/esystem.rb +23 -0
  59. data/lib/studium/base/minimal_prototype.rb +66 -0
  60. data/lib/studium/base/misc.rb +854 -0
  61. data/lib/studium/base/mode.rb +92 -0
  62. data/lib/studium/base/obtain.rb +145 -0
  63. data/lib/studium/base/opnn.rb +46 -0
  64. data/lib/studium/base/prototype.rb +92 -0
  65. data/lib/studium/base/readlines.rb +55 -0
  66. data/lib/studium/base/replace.rb +110 -0
  67. data/lib/studium/base/reset.rb +77 -0
  68. data/lib/studium/base/run.rb +17 -0
  69. data/lib/studium/base/src_dir_at_home.rb +20 -0
  70. data/lib/studium/base/time.rb +634 -0
  71. data/lib/studium/base/unicode.rb +95 -0
  72. data/lib/studium/base/word_wrap.rb +58 -0
  73. data/lib/studium/boku/README.md +4 -0
  74. data/lib/studium/boku/boku_biotechnology_all_master_lectures.rb +142 -0
  75. data/lib/studium/boku/boku_/303/266ffnungszeiten.rb +29 -0
  76. data/lib/studium/boku/show_three_pillars_of_these_lectures.rb +96 -0
  77. data/lib/studium/boku/three_pillars.rb +232 -0
  78. data/lib/studium/check_and_sanitize/README.md +11 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +149 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +107 -0
  81. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +197 -0
  82. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +171 -0
  83. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  84. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  85. data/lib/studium/colours/colours.rb +570 -0
  86. data/lib/studium/colours/sfancy.rb +40 -0
  87. data/lib/studium/colours/sfile.rb +35 -0
  88. data/lib/studium/colours/simp.rb +38 -0
  89. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +76 -0
  90. data/lib/studium/commandline/commandline.rb +25 -0
  91. data/lib/studium/commandline/constants.rb +16 -0
  92. data/lib/studium/commandline/help.rb +152 -0
  93. data/lib/studium/commandline/initialize.rb +27 -0
  94. data/lib/studium/commandline/menu.rb +760 -0
  95. data/lib/studium/commandline/misc.rb +707 -0
  96. data/lib/studium/commandline/reset.rb +24 -0
  97. data/lib/studium/commandline/run.rb +20 -0
  98. data/lib/studium/constants/boku_wien.rb +52 -0
  99. data/lib/studium/constants/constants.rb +25 -0
  100. data/lib/studium/constants/delay.rb +28 -0
  101. data/lib/studium/constants/editor.rb +28 -0
  102. data/lib/studium/constants/exam_topics.rb +183 -0
  103. data/lib/studium/constants/file_constants.rb +875 -0
  104. data/lib/studium/constants/image_constants.rb +216 -0
  105. data/lib/studium/constants/last_question_asked.rb +38 -0
  106. data/lib/studium/constants/lecture_types_that_are_mandatory_continuous_assessment.rb +47 -0
  107. data/lib/studium/constants/misc.rb +163 -0
  108. data/lib/studium/constants/namespace.rb +14 -0
  109. data/lib/studium/constants/newline.rb +14 -0
  110. data/lib/studium/constants/regexes.rb +35 -0
  111. data/lib/studium/constants/return_file_for_this_curriculum.rb +411 -0
  112. data/lib/studium/constants/roebe.rb +173 -0
  113. data/lib/studium/constants/time.rb +52 -0
  114. data/lib/studium/constants/tu_wien.rb +39 -0
  115. data/lib/studium/constants/uni_wien.rb +24 -0
  116. data/lib/studium/constants/unicode.rb +27 -0
  117. data/lib/studium/constants/week.rb +138 -0
  118. data/lib/studium/constants/www_constants.rb +23 -0
  119. data/lib/studium/curricula/curriculum.rb +199 -0
  120. data/lib/studium/curricula/curriculum_as_string.rb +279 -0
  121. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +38 -0
  122. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  123. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  124. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  125. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +77 -0
  126. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  127. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  128. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  129. data/lib/studium/curricula/determine_curricula/constants.rb +16 -0
  130. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  131. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  132. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  133. data/lib/studium/curricula/determine_curricula/menu.rb +138 -0
  134. data/lib/studium/curricula/determine_curricula/misc.rb +402 -0
  135. data/lib/studium/curricula/determine_curricula/report.rb +131 -0
  136. data/lib/studium/curricula/determine_curricula/reset.rb +62 -0
  137. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  138. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  139. data/lib/studium/curricula/display_bachelor_curricula.rb +89 -0
  140. data/lib/studium/curricula/mitteilungsbl/303/244tter.rb +336 -0
  141. data/lib/studium/curricula/modules/display_on_the_commandline.rb +316 -0
  142. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  143. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  144. data/lib/studium/curricula/random_curriculum_creator.rb +171 -0
  145. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  146. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +16 -0
  147. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  148. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  149. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +242 -0
  150. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +140 -0
  151. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +67 -0
  152. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +37 -0
  153. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  154. data/lib/studium/ects/boku_ects_splitter.rb +127 -0
  155. data/lib/studium/ects/ects_parser.rb +179 -0
  156. data/lib/studium/ects/ects_per_university.rb +140 -0
  157. data/lib/studium/ects/ects_scanner.rb +141 -0
  158. data/lib/studium/ects/ects_to_university_parser.rb +148 -0
  159. data/lib/studium/ects/erledigt.rb +131 -0
  160. data/lib/studium/ects/last_entry_is_curriculum.rb +147 -0
  161. data/lib/studium/ects/n_ects_in_these_lectures.rb +185 -0
  162. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  163. data/lib/studium/ects/noch_zu_absolvieren.rb +172 -0
  164. data/lib/studium/ects/return_n_ects_from_this_file.rb +58 -0
  165. data/lib/studium/ects/return_n_ects_from_this_url.rb +202 -0
  166. data/lib/studium/ects/search_for_n_ects.rb +540 -0
  167. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +210 -0
  168. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +254 -0
  169. data/lib/studium/ects/simple_total_ects_points.rb +143 -0
  170. data/lib/studium/ects/solved_ects/constants.rb +24 -0
  171. data/lib/studium/ects/solved_ects/reset.rb +54 -0
  172. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  173. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  174. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  175. data/lib/studium/ects/still_missing.rb +133 -0
  176. data/lib/studium/ects/sum_of_ects.rb +150 -0
  177. data/lib/studium/encoding/encoding.rb +150 -0
  178. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +79 -0
  179. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  180. data/lib/studium/exam_topics/advanced_biochemistry +762 -0
  181. data/lib/studium/exam_topics/advanced_biotechnology +192 -0
  182. data/lib/studium/exam_topics/advanced_cellbiology +25 -0
  183. data/lib/studium/exam_topics/advanced_chemistry +453 -0
  184. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  185. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +51 -0
  186. data/lib/studium/exam_topics/advanced_virology +52 -0
  187. data/lib/studium/exam_topics/ageing +101 -0
  188. data/lib/studium/exam_topics/agrar_ecology +61 -0
  189. data/lib/studium/exam_topics/agrarmarkt +70 -0
  190. data/lib/studium/exam_topics/agrarphysik +35 -0
  191. data/lib/studium/exam_topics/alcohols +29 -0
  192. data/lib/studium/exam_topics/algorithms +49 -0
  193. data/lib/studium/exam_topics/allergie +73 -0
  194. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  195. data/lib/studium/exam_topics/allgemeine_mikrobiologie +855 -0
  196. data/lib/studium/exam_topics/aminoacids +417 -0
  197. data/lib/studium/exam_topics/analytische_chemie_1 +131 -0
  198. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  199. data/lib/studium/exam_topics/anatomie +248 -0
  200. data/lib/studium/exam_topics/anorganische_chemie +289 -0
  201. data/lib/studium/exam_topics/anthropologie +115 -0
  202. data/lib/studium/exam_topics/antibodies_and_antigens +747 -0
  203. data/lib/studium/exam_topics/apoptosis +35 -0
  204. data/lib/studium/exam_topics/archaea +41 -0
  205. data/lib/studium/exam_topics/architecture +8 -0
  206. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  207. data/lib/studium/exam_topics/audio +10 -0
  208. data/lib/studium/exam_topics/bacteriophages +224 -0
  209. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  210. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  211. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  212. data/lib/studium/exam_topics/basic_virology +955 -0
  213. data/lib/studium/exam_topics/bauwesen +6 -0
  214. data/lib/studium/exam_topics/betriebssysteme +125 -0
  215. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  216. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +381 -0
  217. data/lib/studium/exam_topics/biochips +78 -0
  218. data/lib/studium/exam_topics/bioelektrochemie +56 -0
  219. data/lib/studium/exam_topics/biofilms +22 -0
  220. data/lib/studium/exam_topics/bioinformatics +475 -0
  221. data/lib/studium/exam_topics/biological_therapeutics +152 -0
  222. data/lib/studium/exam_topics/biologie +134 -0
  223. data/lib/studium/exam_topics/biomarkers +106 -0
  224. data/lib/studium/exam_topics/biomaterials +46 -0
  225. data/lib/studium/exam_topics/biomembranes +6 -0
  226. data/lib/studium/exam_topics/bionik +65 -0
  227. data/lib/studium/exam_topics/biophysik +34 -0
  228. data/lib/studium/exam_topics/biopolymers +10 -0
  229. data/lib/studium/exam_topics/bioprozesstechnik +139 -0
  230. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  231. data/lib/studium/exam_topics/bodenkunde +345 -0
  232. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  233. data/lib/studium/exam_topics/cancerbiology +441 -0
  234. data/lib/studium/exam_topics/cell_cultures +154 -0
  235. data/lib/studium/exam_topics/cellbiology +962 -0
  236. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  237. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +208 -0
  238. data/lib/studium/exam_topics/chemisches_labor +59 -0
  239. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +74 -0
  240. data/lib/studium/exam_topics/citric_acid_cycle +70 -0
  241. data/lib/studium/exam_topics/clinical_microbiology +486 -0
  242. data/lib/studium/exam_topics/computer_graphics +5 -0
  243. data/lib/studium/exam_topics/computer_science +269 -0
  244. data/lib/studium/exam_topics/crispr +25 -0
  245. data/lib/studium/exam_topics/cyanobacteria +37 -0
  246. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +506 -0
  247. data/lib/studium/exam_topics/databases_and_sql +105 -0
  248. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +33 -0
  249. data/lib/studium/exam_topics/dna_replication +53 -0
  250. data/lib/studium/exam_topics/ecogenetics +27 -0
  251. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  252. data/lib/studium/exam_topics/ecology +313 -0
  253. data/lib/studium/exam_topics/economy +210 -0
  254. data/lib/studium/exam_topics/elektronenmikroskopie +353 -0
  255. data/lib/studium/exam_topics/elektrophorese +88 -0
  256. data/lib/studium/exam_topics/elektrotechnik +8 -0
  257. data/lib/studium/exam_topics/elisa +54 -0
  258. data/lib/studium/exam_topics/embryologie_und_entwicklung +541 -0
  259. data/lib/studium/exam_topics/endospores_and_spores +92 -0
  260. data/lib/studium/exam_topics/enzymes_and_cofactors +327 -0
  261. data/lib/studium/exam_topics/epigenetik +177 -0
  262. data/lib/studium/exam_topics/ethik +125 -0
  263. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +323 -0
  264. data/lib/studium/exam_topics/excel +7 -0
  265. data/lib/studium/exam_topics/fish +19 -0
  266. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  267. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +17 -0
  268. data/lib/studium/exam_topics/forensik +11 -0
  269. data/lib/studium/exam_topics/forstwirtschaft +52 -0
  270. data/lib/studium/exam_topics/fortgeschrittene_genetik +429 -0
  271. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +189 -0
  272. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  273. data/lib/studium/exam_topics/fungi +78 -0
  274. data/lib/studium/exam_topics/genetische_krankheiten +150 -0
  275. data/lib/studium/exam_topics/genexpression +1008 -0
  276. data/lib/studium/exam_topics/genomics_and_metagenomics +205 -0
  277. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +863 -0
  278. data/lib/studium/exam_topics/geochemistry +66 -0
  279. data/lib/studium/exam_topics/geography +5 -0
  280. data/lib/studium/exam_topics/geologie_und_mineralogie +610 -0
  281. data/lib/studium/exam_topics/geschichte +94 -0
  282. data/lib/studium/exam_topics/gluconeogenesis +34 -0
  283. data/lib/studium/exam_topics/glycolysis +95 -0
  284. data/lib/studium/exam_topics/glykomik +42 -0
  285. data/lib/studium/exam_topics/glyoxylatzyklus +23 -0
  286. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  287. data/lib/studium/exam_topics/hormone +122 -0
  288. data/lib/studium/exam_topics/html +7 -0
  289. data/lib/studium/exam_topics/human_ecology +8 -0
  290. data/lib/studium/exam_topics/hygiene +191 -0
  291. data/lib/studium/exam_topics/imaging_and_microscopy +224 -0
  292. data/lib/studium/exam_topics/immunanalytik +88 -0
  293. data/lib/studium/exam_topics/immunologie +888 -0
  294. data/lib/studium/exam_topics/informatik +95 -0
  295. data/lib/studium/exam_topics/innate_immunity +20 -0
  296. data/lib/studium/exam_topics/insekten +30 -0
  297. data/lib/studium/exam_topics/insulin_and_diabetes +55 -0
  298. data/lib/studium/exam_topics/java +440 -0
  299. data/lib/studium/exam_topics/javascript +10 -0
  300. data/lib/studium/exam_topics/klima +6 -0
  301. data/lib/studium/exam_topics/landtechnik +27 -0
  302. data/lib/studium/exam_topics/lebensmittel +206 -0
  303. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  304. data/lib/studium/exam_topics/linux +5 -0
  305. data/lib/studium/exam_topics/lipids +95 -0
  306. data/lib/studium/exam_topics/macroeconomics +39 -0
  307. data/lib/studium/exam_topics/mathematics +175 -0
  308. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  309. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +397 -0
  310. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  311. data/lib/studium/exam_topics/metabolismus +433 -0
  312. data/lib/studium/exam_topics/microbial_ecology +35 -0
  313. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +34 -0
  314. data/lib/studium/exam_topics/mikrobielle_physiologie +153 -0
  315. data/lib/studium/exam_topics/mixed +289 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +235 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +129 -0
  318. data/lib/studium/exam_topics/nanotechnologie +303 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +165 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +32 -0
  322. data/lib/studium/exam_topics/neurobiology +266 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +30 -0
  324. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  325. data/lib/studium/exam_topics/obstbau +234 -0
  326. data/lib/studium/exam_topics/organische_chemie +1007 -0
  327. data/lib/studium/exam_topics/organische_chemie_2 +72 -0
  328. data/lib/studium/exam_topics/paleobiology +33 -0
  329. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  330. data/lib/studium/exam_topics/patent_law +55 -0
  331. data/lib/studium/exam_topics/pathologie +713 -0
  332. data/lib/studium/exam_topics/pcr +133 -0
  333. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  334. data/lib/studium/exam_topics/pflanzenanatomie +240 -0
  335. data/lib/studium/exam_topics/pflanzenbau +24 -0
  336. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  337. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  338. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  339. data/lib/studium/exam_topics/physik +338 -0
  340. data/lib/studium/exam_topics/physikalische_chemie +85 -0
  341. data/lib/studium/exam_topics/physiology_and_histology +485 -0
  342. data/lib/studium/exam_topics/phytochemie +33 -0
  343. data/lib/studium/exam_topics/plant_biotechnology +127 -0
  344. data/lib/studium/exam_topics/plant_breeding +64 -0
  345. data/lib/studium/exam_topics/plant_development +50 -0
  346. data/lib/studium/exam_topics/populationsgenetik +136 -0
  347. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +186 -0
  348. data/lib/studium/exam_topics/projektmanagement +218 -0
  349. data/lib/studium/exam_topics/prokaryote_genetics +470 -0
  350. data/lib/studium/exam_topics/proteomik +38 -0
  351. data/lib/studium/exam_topics/prozesstechnik +95 -0
  352. data/lib/studium/exam_topics/psychologie +9 -0
  353. data/lib/studium/exam_topics/python +350 -0
  354. data/lib/studium/exam_topics/quality_management +241 -0
  355. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  356. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  357. data/lib/studium/exam_topics/rna_and_dna +362 -0
  358. data/lib/studium/exam_topics/rna_seq +11 -0
  359. data/lib/studium/exam_topics/ruby +131 -0
  360. data/lib/studium/exam_topics/ruby_on_rails +62 -0
  361. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  362. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  363. data/lib/studium/exam_topics/sexualbiologie +59 -0
  364. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +136 -0
  365. data/lib/studium/exam_topics/splicing_exons_and_introns +57 -0
  366. data/lib/studium/exam_topics/statistik +202 -0
  367. data/lib/studium/exam_topics/stemcells +87 -0
  368. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  369. data/lib/studium/exam_topics/strukturbiologie +319 -0
  370. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +87 -0
  371. data/lib/studium/exam_topics/systematische_zoologie +430 -0
  372. data/lib/studium/exam_topics/technical_ecology +144 -0
  373. data/lib/studium/exam_topics/technische_chemie +194 -0
  374. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +22 -0
  375. data/lib/studium/exam_topics/technische_mikrobiologie +403 -0
  376. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  377. data/lib/studium/exam_topics/the_bacterial_cell_wall +86 -0
  378. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +488 -0
  379. data/lib/studium/exam_topics/the_c_programming_language +128 -0
  380. data/lib/studium/exam_topics/the_cellcycle +65 -0
  381. data/lib/studium/exam_topics/the_european_union +119 -0
  382. data/lib/studium/exam_topics/the_interferon_system +32 -0
  383. data/lib/studium/exam_topics/the_microbiome +163 -0
  384. data/lib/studium/exam_topics/the_universe +6 -0
  385. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  386. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  387. data/lib/studium/exam_topics/tierzucht +94 -0
  388. data/lib/studium/exam_topics/toxikologie +403 -0
  389. data/lib/studium/exam_topics/transcription +26 -0
  390. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +138 -0
  391. data/lib/studium/exam_topics/umweltbiotechnologie +58 -0
  392. data/lib/studium/exam_topics/umweltchemie +233 -0
  393. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  394. data/lib/studium/exam_topics/vaccines_and_vaccination +234 -0
  395. data/lib/studium/exam_topics/vectors_and_gene_therapy +237 -0
  396. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  397. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  398. data/lib/studium/exam_topics/vitamine +19 -0
  399. data/lib/studium/exam_topics/wasserkunde +141 -0
  400. data/lib/studium/exam_topics/weinbau +59 -0
  401. data/lib/studium/exam_topics/wissenschaft +17 -0
  402. data/lib/studium/exam_topics/yeast +97 -0
  403. data/lib/studium/exam_topics/zoologie +329 -0
  404. data/lib/studium/exams/afterburn.rb +264 -0
  405. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +158 -0
  406. data/lib/studium/exams/ask_exam_question/answer.rb +106 -0
  407. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +135 -0
  408. data/lib/studium/exams/ask_exam_question/constants.rb +74 -0
  409. data/lib/studium/exams/ask_exam_question/delay.rb +101 -0
  410. data/lib/studium/exams/ask_exam_question/help.rb +72 -0
  411. data/lib/studium/exams/ask_exam_question/initialize.rb +70 -0
  412. data/lib/studium/exams/ask_exam_question/menu.rb +382 -0
  413. data/lib/studium/exams/ask_exam_question/misc.rb +938 -0
  414. data/lib/studium/exams/ask_exam_question/question.rb +77 -0
  415. data/lib/studium/exams/ask_exam_question/reset.rb +103 -0
  416. data/lib/studium/exams/ask_exam_question/run.rb +49 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +120 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +151 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +133 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +93 -0
  422. data/lib/studium/exams/ask_random_question.rb +190 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/class.rb +127 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +225 -0
  426. data/lib/studium/exams/cycle.rb +283 -0
  427. data/lib/studium/exams/dataset.rb +90 -0
  428. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  429. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +254 -0
  430. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  431. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  432. data/lib/studium/exams/exam_registration_at/report.rb +108 -0
  433. data/lib/studium/exams/exam_registration_at/reset.rb +49 -0
  434. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +127 -0
  435. data/lib/studium/exams/exam_topics.rb +202 -0
  436. data/lib/studium/exams/exams.rb +18 -0
  437. data/lib/studium/exams/exams_per_month/colours.rb +81 -0
  438. data/lib/studium/exams/exams_per_month/constants.rb +69 -0
  439. data/lib/studium/exams/exams_per_month/dataset.rb +64 -0
  440. data/lib/studium/exams/exams_per_month/exams_per_month.rb +291 -0
  441. data/lib/studium/exams/exams_per_month/help.rb +72 -0
  442. data/lib/studium/exams/exams_per_month/initialize.rb +39 -0
  443. data/lib/studium/exams/exams_per_month/menu.rb +258 -0
  444. data/lib/studium/exams/exams_per_month/open.rb +139 -0
  445. data/lib/studium/exams/exams_per_month/requires.rb +8 -0
  446. data/lib/studium/exams/exams_per_month/reset.rb +115 -0
  447. data/lib/studium/exams/exams_per_month/run.rb +18 -0
  448. data/lib/studium/exams/exams_per_month/sanitize.rb +129 -0
  449. data/lib/studium/exams/exams_per_month/show_and_report.rb +1281 -0
  450. data/lib/studium/exams/exams_this_week.rb +179 -0
  451. data/lib/studium/exams/fix_exam_dates.rb +129 -0
  452. data/lib/studium/exams/last_exams/last_exams.rb +381 -0
  453. data/lib/studium/exams/lectures_without_exam_entry.rb +145 -0
  454. data/lib/studium/exams/mandatory_continuous_assessment/compare.rb +144 -0
  455. data/lib/studium/exams/mandatory_continuous_assessment/constants.rb +18 -0
  456. data/lib/studium/exams/mandatory_continuous_assessment/help.rb +92 -0
  457. data/lib/studium/exams/mandatory_continuous_assessment/initialize.rb +46 -0
  458. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1115 -0
  459. data/lib/studium/exams/mandatory_continuous_assessment/menu.rb +114 -0
  460. data/lib/studium/exams/mandatory_continuous_assessment/misc.rb +61 -0
  461. data/lib/studium/exams/mandatory_continuous_assessment/reset.rb +85 -0
  462. data/lib/studium/exams/mandatory_continuous_assessment/run.rb +33 -0
  463. data/lib/studium/exams/mandatory_continuous_assessment/set_title_of_the_curriculum.rb +181 -0
  464. data/lib/studium/exams/mandatory_continuous_assessment/show_and_report.rb +147 -0
  465. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +119 -0
  466. data/lib/studium/exams/n_exams_in_these_topics.rb +408 -0
  467. data/lib/studium/exams/new_questions_per_year.rb +153 -0
  468. data/lib/studium/exams/next_exam.rb +111 -0
  469. data/lib/studium/exams/next_exams.rb +385 -0
  470. data/lib/studium/exams/open_exam_associated_url.rb +158 -0
  471. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +20 -0
  472. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  473. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +112 -0
  474. data/lib/studium/exams/passed_exams/passed_exams.rb +46 -0
  475. data/lib/studium/exams/pruefung.rb +288 -0
  476. data/lib/studium/exams/push_solved_questions_on_top.rb +188 -0
  477. data/lib/studium/exams/question_answer/question_answer.rb +842 -0
  478. data/lib/studium/exams/questions_solved_from_day_to_day.rb +353 -0
  479. data/lib/studium/exams/repeat_last_question.rb +78 -0
  480. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +260 -0
  481. data/lib/studium/exams/show_backlog_of_exams.rb +125 -0
  482. data/lib/studium/exams/show_next_exams_for.rb +141 -0
  483. data/lib/studium/exams/show_themes/constants.rb +33 -0
  484. data/lib/studium/exams/show_themes/menu.rb +61 -0
  485. data/lib/studium/exams/show_themes/misc.rb +536 -0
  486. data/lib/studium/exams/show_themes/reset.rb +64 -0
  487. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  488. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +170 -0
  489. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  490. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  491. data/lib/studium/exams/show_upcoming_exams/initialize.rb +71 -0
  492. data/lib/studium/exams/show_upcoming_exams/menu.rb +53 -0
  493. data/lib/studium/exams/show_upcoming_exams/report.rb +195 -0
  494. data/lib/studium/exams/show_upcoming_exams/reset.rb +38 -0
  495. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  496. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +494 -0
  497. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +122 -0
  498. data/lib/studium/exams/solved/constants.rb +37 -0
  499. data/lib/studium/exams/solved/help.rb +23 -0
  500. data/lib/studium/exams/solved/menu.rb +35 -0
  501. data/lib/studium/exams/solved/reset.rb +30 -0
  502. data/lib/studium/exams/solved/solved.rb +306 -0
  503. data/lib/studium/exams/steop.rb +99 -0
  504. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +170 -0
  505. data/lib/studium/exams/upcoming_exams/constants.rb +20 -0
  506. data/lib/studium/exams/upcoming_exams/help.rb +38 -0
  507. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  508. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  509. data/lib/studium/exams/upcoming_exams/misc.rb +360 -0
  510. data/lib/studium/exams/upcoming_exams/reset.rb +37 -0
  511. data/lib/studium/exams/upcoming_exams/run.rb +25 -0
  512. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  513. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  514. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  515. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  516. data/lib/studium/exams/upcoming_exams_dataset.rb +251 -0
  517. data/lib/studium/exams/upload_exam_topics.rb +357 -0
  518. data/lib/studium/flashcards/flashcards.rb +95 -0
  519. data/lib/studium/graphviz/README.md +4 -0
  520. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  521. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  522. data/lib/studium/gui/gtk2/constants.rb +52 -0
  523. data/lib/studium/gui/gtk2/exam_card.rb +199 -0
  524. data/lib/studium/gui/gtk2/flip_card.rb +8 -0
  525. data/lib/studium/gui/gtk2/frame.rb +319 -0
  526. data/lib/studium/gui/gtk2/main_box.rb +188 -0
  527. data/lib/studium/gui/gtk2/misc.rb +99 -0
  528. data/lib/studium/gui/gtk2/module_methods.rb +58 -0
  529. data/lib/studium/gui/gtk2/require_gtk_files.rb +25 -0
  530. data/lib/studium/gui/gtk2/run.rb +47 -0
  531. data/lib/studium/gui/gtk2/show_curriculum_entries.rb +186 -0
  532. data/lib/studium/gui/gtk2/simple_widget_question_answer.rb +185 -0
  533. data/lib/studium/gui/gtk2/vbox.rb +748 -0
  534. data/lib/studium/gui/gtk3/README.md +1 -0
  535. data/lib/studium/gui/gtk3/studium_panel.rb +54 -0
  536. data/lib/studium/lectures/show_lectures_on_the_commandline/constants.rb +22 -0
  537. data/lib/studium/lectures/show_lectures_on_the_commandline/determine.rb +630 -0
  538. data/lib/studium/lectures/show_lectures_on_the_commandline/help.rb +44 -0
  539. data/lib/studium/lectures/show_lectures_on_the_commandline/html.rb +599 -0
  540. data/lib/studium/lectures/show_lectures_on_the_commandline/initialize.rb +53 -0
  541. data/lib/studium/lectures/show_lectures_on_the_commandline/konsole.rb +32 -0
  542. data/lib/studium/lectures/show_lectures_on_the_commandline/menu.rb +466 -0
  543. data/lib/studium/lectures/show_lectures_on_the_commandline/misc.rb +598 -0
  544. data/lib/studium/lectures/show_lectures_on_the_commandline/reset.rb +120 -0
  545. data/lib/studium/lectures/show_lectures_on_the_commandline/run.rb +44 -0
  546. data/lib/studium/lectures/show_lectures_on_the_commandline/show.rb +106 -0
  547. data/lib/studium/lectures/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +491 -0
  548. data/lib/studium/lectures/show_lectures_on_the_commandline/sorted_individual_curricula.rb +117 -0
  549. data/lib/studium/logging/README.md +2 -0
  550. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  551. data/lib/studium/logging/html_log_directory.rb +35 -0
  552. data/lib/studium/logging/log_directory.rb +100 -0
  553. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  554. data/lib/studium/misc/return_remote_homepage_of_this_lecture.rb +8661 -0
  555. data/lib/studium/misc/return_remote_moodle_link_of_this_lecture.rb +1343 -0
  556. data/lib/studium/parsers/README.md +2 -0
  557. data/lib/studium/parsers/custom_exam_results_parser.rb +208 -0
  558. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  559. data/lib/studium/pdf/README.md +2 -0
  560. data/lib/studium/pdf/create_pdf_file_for_this_exam_topic.rb +277 -0
  561. data/lib/studium/project/project.rb +80 -0
  562. data/lib/studium/requires/common_popular_requires.rb +37 -0
  563. data/lib/studium/requires/commonly_used_requires.rb +13 -0
  564. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  565. data/lib/studium/requires/require_ects_scripts.rb +25 -0
  566. data/lib/studium/requires/require_encoding.rb +7 -0
  567. data/lib/studium/requires/require_the_exam_scripts.rb +37 -0
  568. data/lib/studium/requires/require_the_studium_constants.rb +14 -0
  569. data/lib/studium/requires/require_the_studium_project.rb +47 -0
  570. data/lib/studium/requires/require_the_utility_scripts.rb +26 -0
  571. data/lib/studium/requires/require_toplevel_methods.rb +26 -0
  572. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  573. data/lib/studium/requires/require_yaml.rb +7 -0
  574. data/lib/studium/requires/with_GUI.rb +12 -0
  575. data/lib/studium/requires/www_mode.rb +17 -0
  576. data/lib/studium/sinatra/app.rb +225 -0
  577. data/lib/studium/sinatra/misc.rb +111 -0
  578. data/lib/studium/statistics/README.md +4 -0
  579. data/lib/studium/statistics/best_exam_months.rb +81 -0
  580. data/lib/studium/statistics/curriculum_comparer.rb +344 -0
  581. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +140 -0
  582. data/lib/studium/statistics/max_stats.rb +171 -0
  583. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +172 -0
  584. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +478 -0
  585. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  586. data/lib/studium/statistics/top_stats.rb +122 -0
  587. data/lib/studium/steop/README.md +4 -0
  588. data/lib/studium/steop/show_all_steop_lectures.rb +101 -0
  589. data/lib/studium/steop/steop_lectures_in_this_curriculum.rb +291 -0
  590. data/lib/studium/steop/steop_lva_dates.rb +102 -0
  591. data/lib/studium/toplevel_methods/all_passed_exams.rb +35 -0
  592. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +98 -0
  593. data/lib/studium/toplevel_methods/available_curricula.rb +71 -0
  594. data/lib/studium/toplevel_methods/available_topics.rb +145 -0
  595. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  596. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  597. data/lib/studium/toplevel_methods/cd.rb +25 -0
  598. data/lib/studium/toplevel_methods/cd_stud.rb +134 -0
  599. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +27 -0
  600. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  601. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +44 -0
  602. data/lib/studium/toplevel_methods/download.rb +157 -0
  603. data/lib/studium/toplevel_methods/e.rb +16 -0
  604. data/lib/studium/toplevel_methods/ects_from_lectures.rb +251 -0
  605. data/lib/studium/toplevel_methods/editor.rb +64 -0
  606. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  607. data/lib/studium/toplevel_methods/exams_dataset.rb +45 -0
  608. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  609. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +2771 -0
  610. data/lib/studium/toplevel_methods/from_curriculum_id_to_university.rb +47 -0
  611. data/lib/studium/toplevel_methods/frozen.rb +32 -0
  612. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  613. data/lib/studium/toplevel_methods/has_a_bachelor_or_master_curriculum.rb +84 -0
  614. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +41 -0
  615. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  616. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  617. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  618. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  619. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  620. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  621. data/lib/studium/toplevel_methods/is_this_lecture_part_of_the_vector_curriculum.rb +110 -0
  622. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +43 -0
  623. data/lib/studium/toplevel_methods/lecture_information.rb +101 -0
  624. data/lib/studium/toplevel_methods/lectures_without_attribution_to_any_curriculum.rb +42 -0
  625. data/lib/studium/toplevel_methods/lva_numbers.rb +339 -0
  626. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  627. data/lib/studium/toplevel_methods/map_curriculum_number_to_curriculum_name.rb +97 -0
  628. data/lib/studium/toplevel_methods/methods_related_to_curricula.rb +47 -0
  629. data/lib/studium/toplevel_methods/methods_related_to_files.rb +197 -0
  630. data/lib/studium/toplevel_methods/mkdir.rb +25 -0
  631. data/lib/studium/toplevel_methods/n_questions_available.rb +128 -0
  632. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  633. data/lib/studium/toplevel_methods/name_of_this_curriculum.rb +38 -0
  634. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  635. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +70 -0
  636. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  637. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  638. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  639. data/lib/studium/toplevel_methods/read_dataset_from_a_curriculum_file.rb +133 -0
  640. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  641. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  642. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  643. data/lib/studium/toplevel_methods/remote_url.rb +57 -0
  644. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  645. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  646. data/lib/studium/toplevel_methods/remove_tags.rb +26 -0
  647. data/lib/studium/toplevel_methods/report.rb +143 -0
  648. data/lib/studium/toplevel_methods/report_all_lectures_matching_this_lecture_type.rb +45 -0
  649. data/lib/studium/toplevel_methods/report_attributed_lectures_to_universities.rb +30 -0
  650. data/lib/studium/toplevel_methods/report_n_ects_per_university.rb +63 -0
  651. data/lib/studium/toplevel_methods/report_n_entries_in_the_file_lecture_information.rb +36 -0
  652. data/lib/studium/toplevel_methods/report_nquestions_of.rb +96 -0
  653. data/lib/studium/toplevel_methods/report_solved_topics.rb +56 -0
  654. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  655. data/lib/studium/toplevel_methods/return_curriculum_of_this_lva_number.rb +82 -0
  656. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  657. data/lib/studium/toplevel_methods/return_dataset_from_this_curriculum_file.rb +150 -0
  658. data/lib/studium/toplevel_methods/return_directory_for.rb +66 -0
  659. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +489 -0
  660. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +197 -0
  661. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +41 -0
  662. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +59 -0
  663. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  664. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +75 -0
  665. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +37 -0
  666. data/lib/studium/toplevel_methods/return_proper_university_image.rb +80 -0
  667. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +56 -0
  668. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +126 -0
  669. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  670. data/lib/studium/toplevel_methods/return_this_curriculum_as_a_string.rb +26 -0
  671. data/lib/studium/toplevel_methods/return_title_from_this_curriculum_file.rb +91 -0
  672. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  673. data/lib/studium/toplevel_methods/rti_conflict.rb +29 -0
  674. data/lib/studium/toplevel_methods/runmode.rb +86 -0
  675. data/lib/studium/toplevel_methods/sanitize_this_theme_topic.rb +128 -0
  676. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  677. data/lib/studium/toplevel_methods/save_all_registered_upcoming_exams.rb +62 -0
  678. data/lib/studium/toplevel_methods/save_file.rb +81 -0
  679. data/lib/studium/toplevel_methods/save_this_delay_between_questions_and_answers.rb +43 -0
  680. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  681. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  682. data/lib/studium/toplevel_methods/show_passed_ects_in_the_individual_bachelor_and_master_curricula.rb +81 -0
  683. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +27 -0
  684. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  685. data/lib/studium/toplevel_methods/time.rb +220 -0
  686. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  687. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  688. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  689. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  690. data/lib/studium/toplevel_methods/url.rb +74 -0
  691. data/lib/studium/toplevel_methods/verbose_truth.rb +21 -0
  692. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +53 -0
  693. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  694. data/lib/studium/tu_vienna/README.md +6 -0
  695. data/lib/studium/tu_vienna/tu_ferien.rb +38 -0
  696. data/lib/studium/tu_vienna/tu_/303/266ffnungszeiten.rb +29 -0
  697. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +389 -0
  698. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +236 -0
  699. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +385 -0
  700. data/lib/studium/utility_scripts/audio_stats.rb +176 -0
  701. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +253 -0
  702. data/lib/studium/utility_scripts/auto_stud/constants.rb +23 -0
  703. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  704. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  705. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +101 -0
  706. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  707. data/lib/studium/utility_scripts/calendar/calendar.rb +244 -0
  708. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  709. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +224 -0
  710. data/lib/studium/utility_scripts/clean_up_lecture_date.rb +151 -0
  711. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  712. data/lib/studium/utility_scripts/currently_participating_in_these_lectures.rb +104 -0
  713. data/lib/studium/utility_scripts/display_lecture_url.rb +117 -0
  714. data/lib/studium/utility_scripts/expand_time_range.rb +422 -0
  715. data/lib/studium/utility_scripts/find_duplicate_lectures.rb +121 -0
  716. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  717. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +28 -0
  718. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +142 -0
  719. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +29 -0
  720. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  721. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +141 -0
  722. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  723. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +57 -0
  724. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  725. data/lib/studium/utility_scripts/generate_spreadsheet.rb +349 -0
  726. data/lib/studium/utility_scripts/holidays.rb +143 -0
  727. data/lib/studium/utility_scripts/lecture_downloader.rb +115 -0
  728. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +344 -0
  729. data/lib/studium/utility_scripts/lva_nummer.rb +440 -0
  730. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month.rb +321 -0
  731. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  732. data/lib/studium/utility_scripts/new_stud.rb +332 -0
  733. data/lib/studium/utility_scripts/next_week.rb +111 -0
  734. data/lib/studium/utility_scripts/passed_ects_per_year.rb +172 -0
  735. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  736. data/lib/studium/utility_scripts/prepare_individual_curriculum.rb +182 -0
  737. data/lib/studium/utility_scripts/priority.rb +126 -0
  738. data/lib/studium/utility_scripts/priority_points.rb +263 -0
  739. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  740. data/lib/studium/utility_scripts/regexes/README.md +2 -0
  741. data/lib/studium/utility_scripts/regexes/generate_regex.rb +278 -0
  742. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +54 -0
  743. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  744. data/lib/studium/utility_scripts/report_outdated_timetable_entries.rb +148 -0
  745. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +120 -0
  746. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +125 -0
  747. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +257 -0
  748. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +273 -0
  749. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +146 -0
  750. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +142 -0
  751. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +381 -0
  752. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  753. data/lib/studium/utility_scripts/show_all_lectures.rb +403 -0
  754. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +127 -0
  755. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/constants.rb +56 -0
  756. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/do_report_the_upcoming_exams.rb +60 -0
  757. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/help.rb +49 -0
  758. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/initialize.rb +28 -0
  759. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/menu.rb +54 -0
  760. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/misc.rb +214 -0
  761. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/report.rb +118 -0
  762. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/reset.rb +80 -0
  763. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/run.rb +22 -0
  764. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +651 -0
  765. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +28 -0
  766. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +62 -0
  767. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +36 -0
  768. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +35 -0
  769. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  770. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +145 -0
  771. data/lib/studium/utility_scripts/show_lectures/constants.rb +16 -0
  772. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  773. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  774. data/lib/studium/utility_scripts/show_lectures/menu.rb +106 -0
  775. data/lib/studium/utility_scripts/show_lectures/misc.rb +582 -0
  776. data/lib/studium/utility_scripts/show_lectures/reset.rb +92 -0
  777. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  778. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  779. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language.rb +129 -0
  780. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme.rb +100 -0
  781. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +154 -0
  782. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +177 -0
  783. data/lib/studium/utility_scripts/show_outdated_lva_dates.rb +218 -0
  784. data/lib/studium/utility_scripts/show_solved_english_lectures.rb +139 -0
  785. data/lib/studium/utility_scripts/show_the_associated_lectures_for_the_individual_curriculum.rb +285 -0
  786. data/lib/studium/utility_scripts/studienkennzahl.rb +109 -0
  787. data/lib/studium/utility_scripts/studium_skeleton.rb +220 -0
  788. data/lib/studium/utility_scripts/stundenplan.rb +603 -0
  789. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +221 -0
  790. data/lib/studium/utility_scripts/ufind.rb +101 -0
  791. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +31 -0
  792. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  793. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +179 -0
  794. data/lib/studium/utility_scripts/vorbesprechungen.rb +293 -0
  795. data/lib/studium/utility_scripts/week_parser/constants.rb +28 -0
  796. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  797. data/lib/studium/utility_scripts/week_parser/menu.rb +56 -0
  798. data/lib/studium/utility_scripts/week_parser/misc.rb +51 -0
  799. data/lib/studium/utility_scripts/week_parser/reset.rb +55 -0
  800. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  801. data/lib/studium/utility_scripts/week_parser/show.rb +242 -0
  802. data/lib/studium/utility_scripts/week_parser/week_parser.rb +362 -0
  803. data/lib/studium/utility_scripts/weekday_parser.rb +159 -0
  804. data/lib/studium/utility_scripts/weekly_schedule.rb +209 -0
  805. data/lib/studium/utility_scripts/wochenplanung.rb +278 -0
  806. data/lib/studium/version/version.rb +46 -0
  807. data/lib/studium/www/curricula_displayer.cgi +170 -0
  808. data/lib/studium/www/curriculum_displayer.rb +162 -0
  809. data/lib/studium/www/exams.cgi +50 -0
  810. data/lib/studium/www/statistics.cgi +55 -0
  811. data/lib/studium/yaml/allowed_themes_for_exams.yml +307 -0
  812. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +68 -0
  813. data/lib/studium/yaml/backlog_of_exams.yml +35 -0
  814. data/lib/studium/yaml/current_exams.yml +19 -0
  815. data/lib/studium/yaml/curricula.yml +530 -0
  816. data/lib/studium/yaml/curricula/README.md +3 -0
  817. data/lib/studium/yaml/curricula/bachelor_agrarwissenschaften_033255.yml +130 -0
  818. data/lib/studium/yaml/curricula/bachelor_biologie_basisblock_033630.yml +65 -0
  819. data/lib/studium/yaml/curricula/bachelor_biologie_botanik_033630.yml +84 -0
  820. data/lib/studium/yaml/curricula/bachelor_biologie_ecology_033630.yml +74 -0
  821. data/lib/studium/yaml/curricula/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  822. data/lib/studium/yaml/curricula/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  823. data/lib/studium/yaml/curricula/bachelor_biologie_zoologie_033630.yml +87 -0
  824. data/lib/studium/yaml/curricula/bachelor_chemie_033662.yml +164 -0
  825. data/lib/studium/yaml/curricula/bachelor_dummy_curriculum.yml +135 -0
  826. data/lib/studium/yaml/curricula/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  827. data/lib/studium/yaml/curricula/bachelor_forstwirtschaft_033225.yml +105 -0
  828. data/lib/studium/yaml/curricula/bachelor_informatik_033521.yml +130 -0
  829. data/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml +1144 -0
  830. data/lib/studium/yaml/curricula/bachelor_ktww_033231.yml +84 -0
  831. data/lib/studium/yaml/curricula/bachelor_lmbt_033217.yml +108 -0
  832. data/lib/studium/yaml/curricula/bachelor_medizinische_informatik_033533.yml +200 -0
  833. data/lib/studium/yaml/curricula/bachelor_molekularbiologie_033665.yml +93 -0
  834. data/lib/studium/yaml/curricula/bachelor_nutrition_science_033638.yml +117 -0
  835. data/lib/studium/yaml/curricula/bachelor_pharmazie_033305.yml +170 -0
  836. data/lib/studium/yaml/curricula/bachelor_technische_chemie_033290.yml +129 -0
  837. data/lib/studium/yaml/curricula/bachelor_technische_informatik_033535.yml +23 -0
  838. data/lib/studium/yaml/curricula/bachelor_ubrm_033227.yml +140 -0
  839. data/lib/studium/yaml/curricula/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  840. data/lib/studium/yaml/curricula/bachelor_verfahrenstechnik_033273.yml +167 -0
  841. data/lib/studium/yaml/curricula/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  842. data/lib/studium/yaml/curricula/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  843. data/lib/studium/yaml/curricula/master_bioinformatik_066875.yml +76 -0
  844. data/lib/studium/yaml/curricula/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  845. data/lib/studium/yaml/curricula/master_biologische_chemie_066863.yml +61 -0
  846. data/lib/studium/yaml/curricula/master_dummy_curriculum.yml +137 -0
  847. data/lib/studium/yaml/curricula/master_food_science_and_plant_biotechnology.yml +30 -0
  848. data/lib/studium/yaml/curricula/master_genetik_und_entwicklungsbiologie_066877.yml +90 -0
  849. data/lib/studium/yaml/curricula/master_lmbt_066418.yml +65 -0
  850. data/lib/studium/yaml/curricula/master_molekulare_biologie_066834.yml +142 -0
  851. data/lib/studium/yaml/curricula/master_pharmazie_066605.yml +170 -0
  852. data/lib/studium/yaml/curricula/master_technische_chemie_066490.yml +123 -0
  853. data/lib/studium/yaml/curricula/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  854. data/lib/studium/yaml/custom_colours.yml +21 -0
  855. data/lib/studium/yaml/daily_questions_solved.yml +789 -0
  856. data/lib/studium/yaml/default_delay.yml +4 -0
  857. data/lib/studium/yaml/default_encoding.yml +1 -0
  858. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  859. data/lib/studium/yaml/editor.yml +1 -0
  860. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  861. data/lib/studium/yaml/german/README.md +2 -0
  862. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  863. data/lib/studium/yaml/grouped_themes.yml +187 -0
  864. data/lib/studium/yaml/holidays.yml +176 -0
  865. data/lib/studium/yaml/important_exams.yml +194 -0
  866. data/lib/studium/yaml/inscription_dates_of_universities.yml +58 -0
  867. data/lib/studium/yaml/lecture_aliases.yml +108 -0
  868. data/lib/studium/yaml/lecture_information.yml +47783 -0
  869. data/lib/studium/yaml/log_dir.yml +1 -0
  870. data/lib/studium/yaml/main_topic.yml +11 -0
  871. data/lib/studium/yaml/max_stats.yml +227 -0
  872. data/lib/studium/yaml/mitteilungsbl/303/244tter.yml +315 -0
  873. data/lib/studium/yaml/n_total_questions.yml +1 -0
  874. data/lib/studium/yaml/participating_in_these_courses.yml +50 -0
  875. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  876. data/lib/studium/yaml/show_topic.yml +1 -0
  877. data/lib/studium/yaml/statistics.yml +57 -0
  878. data/lib/studium/yaml/use_colours.yml +1 -0
  879. data/studium.gemspec +79 -0
  880. data/test/testing_studium.rb +244 -0
  881. data/test/testing_time_component.rb +29 -0
  882. metadata +1079 -0
@@ -0,0 +1,78 @@
1
+ # =========================================================================== #
2
+ # === Biochips
3
+ #
4
+ # This will be about Biochips and Microarrays.
5
+ # =========================================================================== #
6
+
7
+ - In microfluidics, for lab-on-a-chip: name three parameters for the <one>integration of functionality</one>. A: (1) <one>compactness</one> (2) <one>parallelization</one> (3) <one>high-throughput</one>
8
+ - In <one>live cell microarrays</one>, we may wish to put ESCs onto the surface, but prior to that, we may have to coat the surface of our substrate with ...? <one>Fibronectin</one>.
9
+ - Is a <one>reference genome</one> necessary for the design of probes of a DNA microarray? Yes.
10
+ - Why are <one>Carbohydrate Microarrays</one> typically used? This is to study <one>post-translational modifications</one>.
11
+ - Nenne einen Vorteil der Organchips gegenüber Tierversuchen. A: Man kann, dank der Organchips, mit menschlichen Zellen arbeiten.
12
+ - Wann mögen wir den <tomato>MethylScope Microarray</tomato> einsetzen? Wenn wir einen Tumor mit gesundem Gewebe vergleichen möchten.
13
+ - TMAs are ... what microarrays? <tomato>Tissue microarrays</tomato<:
14
+ - In DNA-microarrays, what do we mean with the "target"? These are the amplified, labeled cDNAs generated from the total RNA from a cell or tissue.
15
+ - The concept and methodology of "protein microarrays" was first introduced and illustrated in ... ? "antibody microarrays".
16
+ - In microarrays, what is meant with the term "direct labeling"? This is when we put e. g. a "fluorophore" on primers or nucleotides directly.
17
+ - Name a microarray that starts with the letter "T". A: "Tilingarrays".
18
+ - Which person invented the microarray technology? "Stephen Fodor".
19
+ - Photolitography is a process based on semiconductor technology. It uses light but also ... ? "Light-blocking masks".
20
+ - Name three different "Microarray manufacturers". A: (1) Affymetrix (2) Agilent (3) Illumina
21
+ - In Biochips design, why may we want to swap dyes? The dyes may behave differently; this way we can assess whether they do.
22
+ - In Biochip design, what do we mean with "MDMs"? These are "microbial diagnostic microarrays".
23
+ - In Biochip technology, we may have to check "data quality" on different levels. Name three different levels here. A: (1) Probe level (2) Array level (3) Gene level
24
+ - In Biochip design, we may use spaces, after a NH2 group at one end. This may be Thymidine. How many Thymidines are used? About 12 T.
25
+ - How are microarrays read out? Microarrays are read out via a "laser-based fluorescence scanner".
26
+ - What is the "central assumption" of Gene Expression Microarrays? That the level of a given mRNA is positively correlated with the expression of the associated protein.
27
+ - What does an "expression array" measure? It measures the amount and type of mRNA transcripts.
28
+ - If we may wish to do "patient stratification", which microarray method may we employ? An "antibody microarray".
29
+ - In Biochips, contactless printing requires humidity of ... n%? About 65%.
30
+ - In Biochips, which two different pins are oten used for "contact printing"? (1) split pin (2) solid pin
31
+ - In "contact printing" for biochips, what is the droplet volume (from-to)? About 400-600 pl.
32
+ - In Biochip design, the 16S rRNA is often used for phylogeny, but it is not always ideal. Name an intrinsic problem that the 16S rRNA has. A: It can not provide for "strain-specific information".
33
+ - A phylogenetic marker should ... ? Reflect taxonomy.
34
+ - Name 3 disadvantages of "spotted cDNA microarrays". A: (1) Sequence verification (2) poor surface-adhesion properties (3) The data can be variable
35
+ - For microarrays, we may need a "molecular marker". What do we mean with this? This is a DNA sequence, which is specific for a certain phenotype or genotype.
36
+ - In Biochips, how do we call the method that can find a spot, in general? This is called "spot identification".
37
+ - What must come before applying a microarray to real datasets? Validation.
38
+ - How many cDNA probes can be easily put on an average microarray? About 20.000 cDNAs.
39
+ - Give a reason why "diagnostic microarrays" are used. A: So that we can detect disease-related genes.
40
+ - Give on example for an "alternative microarray format". A: Clondiag, the "ArrayTube".
41
+ - In Macroarrays, probes are on ...? The membrane.
42
+ - Name two fixatives commonly used for CMAs ("cell microarrays"). A: (1) formalin (2) paraformaldehyde
43
+ - In Biochip design, when we use "mixed-genome microarrays", name an advantage in their construction. A: We do not need to have any "a priori" knowledge about the genomes, in order to construct these microarrays.
44
+ - In Biochip sciences, what does "MGM" stand for? Mixed-genome microarrays. URL: https://www.ncbi.nlm.nih.gov/pubmed/12574259
45
+ - In Biochip design, we may use the material "PMMA". What does this abbreviation stand for? Polymethymethacrylate.
46
+ - Name three different types of microarrays. A: (1) DNA Microarrays (2) Peptide Microarrays (3) Carbohydrate Microarrays
47
+ - Why do Biochips usually use plastic rather than glass? Because plastic is much cheaper than glass.
48
+ - The two major dyes used in Biochips, Cy3 and Cy5, have which colour, respectively? (1) Cy3: green dye (2) Cy5: red dye
49
+ - In Biochip-design, the oligonucleotides (mers) should not be too short. Why not? Because too short mers tend to be too unspecific.
50
+ - Cartridge-based microarrays are typically surrounded via ...? A plastic housing.
51
+ - Name 3 different "non-contact printing" ways to create microarrays. A: (1) Thermal (2) Piezo (3) Valve
52
+ - Who developed the "PhyloChip"? Affymetrix.
53
+ - The PhyloChip from Affymetrix uses n-mers biochips? 25-mers.
54
+ - In probe design of biochips, why are different lengths used for different oligos? So that they have, roughly, the same melting temperatures
55
+ - SSELO is a novel labeling approach in biochips design. What does SSELO stand for? "Sequence-specific end-labeling of oligonucleotides".
56
+ - Name the four major "Unique Selling Points" of Biochips. A: (1) parallel approach (2) miniaturization (3) automation (4) integration of functions
57
+ - In Biochips, what are "PM probes"? Perfectlymatching probes. URL: https://www.vsni.co.uk/software/genstat/htmlhelp/marray/AffymetrixChips.htm
58
+ - In Biochips, what are "CMAs"? These are "cell microarrays".
59
+ - Can we use the DNA microarray to determine whether the DNA from a particular individual contains a mutation in different genes? Yes. In fact, this can be used to look at differenial expressions between BRCA1 and BRCA2.
60
+ - What is "fold change" in context of a DNA microarray experiment? Fold change is a measure describing how much a quantity changes going from an initial to a final value. For instance, an initial value of 30 and a final value of 60 corresponds to a fold change of 1, or in common terms, a "one-fold increase".
61
+ - "Experimental design" of microarray experiments has which 3 different design possibilities? (1) Direct Design (2) Reference Design (3) Loop Design
62
+ - For "one colour arrays", of DNA microarrays, what do we actually compare? We compare different arrays here.
63
+ - In a microarray experiment, we may use the dye C3 and C5. Which colour do they display usually? (a) Cy3: Green (b) Cy5: Red
64
+ - What means "limma"? Linear models for microarray data.
65
+ - Welche andere Technik kombiniert die ChIP-chip? Microarray Technologie.
66
+ - A. W. für "Microarrays" in der Gentechnik? "lab-on-a-chip"
67
+ - In Chip-Design, was heisst "LOC"? Lab-on-a-Chip.
68
+ - Was ist am teuersten bei einem Microarray-Experiment? Die Farbstoffe.
69
+ - We may use expression profiles, such as via a "DNA microarray". When we use a one-colour array, what exactly do we measure there? Only the signal intensities will be measured.
70
+ - Why is glass used rather than silica in microarray-chip design? Because we can see through glass; we can't see through silica.
71
+ - In Chip-Design, what means "OOAC"? Organ-on-a-Chip.
72
+ - In Chip-Design, what means "TMAs"? Tissue microrrays.
73
+ - In what year was the first genechip, a prototype, developed? In 1989.
74
+ - When were the first cDNA arrays developed? In 1994, at the Stanford University.
75
+ - Name a "clinically validated HPV genotyping assay". A: The PapilloCheck.
76
+ - In a standard microarray, if we see a yellow dot, what does this mean? This means "no net change", thus uninteresting to us.
77
+ - What means "DArT" in biochips technology? Diversity Arrays Technology. URL: https://en.wikipedia.org/wiki/Diversity_Arrays_Technology
78
+ - DArT is useful for ...? DArT is useful for large gnomes, such as plant genomes.
@@ -0,0 +1,56 @@
1
+ # =========================================================================== #
2
+ # === Bioelektrochemie tag.
3
+ #
4
+ # Bioele tag. Muskel tag- und das dann auslagern.
5
+ # =========================================================================== #
6
+
7
+ - Wo (anatomisch betrachtet) finden wir die <one>Purkinje-Fäden</one>? Im <one>Herzen</one>.
8
+ - Does <orange>pure water</orange> conduct electricity? No.
9
+ - Was muss Elektrokommunikation bei den Tieren leisten? Die Signalübertragung muss über lange Strecken schnell und ohne Verlust von Information erfolgen.
10
+ - Was ist die "Depolarisation"? Das ist die Veränderung eines Membranpotentials, ausgehend vom Ruhepotential bei ca. -80 mV, hin zu positiveren Werten.
11
+ - The human cortex is organized into how many layers? Into 6 layers.
12
+ - Welche 3 wichtigen Bereiche im Neuron muss ein Aktionspotential durchlaufen um weitergeschickt zu werden? (1) Soma (2) Axonhügel (3) Axon
13
+ - Wozu führt die Depolarisation der Nervenzelle? Zur Auslösung des Aktionspotentials.
14
+ - Poren in Neuronen haben einen kugelförmigen Anhang. Wieso? Dieser Anhang verschliesst die Pore des Kanalproteins nach 1-3 ms, und stoppt so den Na-Einstrom.
15
+ - Gib ein Beispiel für Werkzeuggebrauch bei Säugetieren die oft im Wasser leben. A: Seeotter, der einen Stein verwendet um Muscheln zu knacken.
16
+ - Wieso werden wir die PET-Tomografie in der Neurobiologie an? Weil wir damit Bereiche hoher Stoffwechselaktivität aufspüren können.
17
+ - Wie nenn man die Distanz zwischen 2 Z-Scheiben? Sarkomer.
18
+ - Wieso ist das Gift der Kegelschnecke so wirksam? Es unterbricht sowohl die elektrische als auch die chemische Signalgebung der Neurone.
19
+ - A. W. für "erregende" Synapse? Exzitatorische Synapse.
20
+ - Was ist der "Electroplax"? Das elektrische Organ des Zitteraals.
21
+ - Wie nimmt eine Nervenzelle Information wahr? Über ihre Dendriten.
22
+ - Was ist "Sphyrna lewini"? Der Hammerhai.
23
+ - W. h. "Impedanz"? Widerstand.
24
+ - Was sind die "Ryanodinrezeptoren"? Das sind Zellen im Herzmuskelzellen, die calciumgesteuerte Calciumkanäle sind.
25
+ - Welche 3 Kontraktionsmöglichkeiten hat ein Skelettmuskel? (1) isoton (2) isometrisch (3) auxoton
26
+ - Was ist die Aufgabe der "Muskelspindeln"? Sie messen den Dehnungszustand von Skelettmuskeln.
27
+ - Golgi Staining wurde wann erfunden? 1873.
28
+ - Die elektromechanische Kopplung verläuft im Herzmuskel ganz ähnlich wie im Skelettmuskel. Es gibt aber einen wichtigen Unterschied - welchen? Ein Unterschied besteht bei der Calciumfreisetzung.
29
+ - Vergleiche das verwendete Aktionpotential in Herzen (beim Sinusknoten) mit dem Aktionspotential in Nervenzellen. A: Das Aktionspotential in Nervenzellen ist 100-1000 mal schneller.
30
+ - Haben die Zellen des Sinusknoten die Möglichkeit, die Erregung einzustellen? Nein, sie haben keinen Ruhezustand. Das wäre ja auch kontraproduktiv wenn das Herz aufhört zu schlagen.
31
+ - Was macht der Sinusknoten? Der gibt den Herzmuskelzellen den Takt vor.
32
+ - Was sind "Schrittmacherzellen"? Das sind Zellen des Herzmuskelgewebes.
33
+ - Beruht die rhythmische Erregung des Herzens auf neuronaler Aktivität? Nein, sie beruht ausschliesslich auf muskulärer Aktivität = myogene Authorhythmie.
34
+ - Was machen Oligodendrocytes? Produzieren Myelin.
35
+ - Welcher Neurotransmitter-Rezeptor war der erste der gereinigt wurde? Der Nicotinic Acetylcholine Receptor.
36
+ - Die Synthese von GABA benötigt welche Aminosäure? Glutamate.
37
+ - Welches Element wird oft in der PET-Tomografie eingesetzt? 18 F.
38
+ - Besitzen die im Wasser lebenden, mehrzelligen Schwämme ein Nervensystem? Nein.
39
+ - A. W. für "ruhende Nervenzellen"? Terminal differenziert.
40
+ - Neurone unterscheiden sich hinsichtlich ihres Aufbaus, dabei kann man sie optisch aufgrund der Anzahl Fortsätze klassifizieren. Nennen Sie die 4 Gruppen hierzu. A: (1) Unipolar (2) Bipolar (3) Pseudounipolare (4) Multipolare
41
+ - Nenne 3 wichtige Parameter der Grundstoffwechselrate! A: Temperatur, Körpermasse, Gehirngrösse.
42
+ - Aplysia hat n Nervenzellen? 20.000 Nervenzellen.
43
+ - Im Aktionspotenzial wird die Membran für Na+ Ionen durchlässig. Für wie lange? Für ein bis zwei Millisekunden wird die Membran durchlässig.
44
+ - Aktionspotentiale erfolgen durch die Öffnung von Natriumkanälen, dadurch strömen positiv geladene Natrium-Ionen in die Zelle. Wie ändert sich das Membranpotential (von, bis)? Das Potential ändert sich von -80 mV auf +30 mV, in der sogenannten "Depolarisationphase". Die Kanäle werden im Anschluss danach inaktiviert.
45
+ - Wieso kann das Herz gleichmäßig schlagen? Die Muskelfasern der Wände der beiden Herzkammern sind miteinander verbunden. Aus diesem Grund erfasst eine Erregung immer das gesamte Herz; das Herz verhält sich wie ein "funktionelles Synzytium".
46
+ - A. W. für "Ionenpaarbildung"? Assoziate.
47
+ - Welche 2 Signaltypen existieren bei der Kommunikation über Neurone? (1) elektrische Signale: werden über weite Strecken fortgeleitet (2) chemische Signale: werden auf Kurzstrecken eingesetzt
48
+ - Was passiert wenn wir einen Ca2+ Strom in eine Nervenendigung einleiten? Dies führt zur Fusion von Transmitterhaltigen Vesikeln mit der präsynaptischen Membran. Diese Vesikel schütten ihren Inhalt, Acetylcholin, in den synaptischen Spalt aus.
49
+ - Es gibt "elektronenleitende Phasen", Leiter der 1. Art. Gib vier Beispiele hierzu. A: (1) Metalle (2) Halbleiter (3) organische Polymere (4) Ionisierte Gase (Plasma)
50
+ - Was ist die Voraussetzung für die elektrische Stromleitung? Das Vorhandensein von freien geladenen und beweglichen Teilchen.
51
+ - Dielektrizitätskonstante von Wasser? 80.
52
+ - Was sagt die "Hydratationszahl" aus? Die Anzahl der Wassermoleküle in der 1. Sphäre.
53
+ - Wie konnte man die zellulären Vorgänge bei der Muskelkontraktion aufklären? Durch Isolierung des Proteins Aequorin. Bei Kontakt mit Ca2+ emittiert Aequorin bläuliches Licht.
54
+ - Zeigt Aequorin Fluoreszenz? Nein, es zeigt Chemilumineszenz, das heisst die Lichtemission wird nicht durch Absorption von Licht stimuliert (wie bei der Fluoreszenz) sondern durch eine chemische Reaktion
55
+ - in diesem Fall durch die Bindung von Ca2+-Ionen.
56
+ - Bei den Muskelfasern, wieso heissen die T-Tubuli so? Transversales, tubuläres System.
@@ -0,0 +1,22 @@
1
+ # =========================================================================== #
2
+ # === Biofilms
3
+ # =========================================================================== #
4
+
5
+ - "Mature Biofilms" produce what, that could be called "impressive"? "Biofilm towers".
6
+ - In a biofilm, what may flow through its channel? "Nutrients".
7
+ - Does "quorum sensing" occur in biofilm formation? Yes.
8
+ - Give another term for "biofilm development". A: The "biofilm life cycle".
9
+ - In nature, where do biofilms usually form? Where food is abundant, e. g. when there are plentiful nutrients.
10
+ - What do bacteria often do before "biofilm formation" begins? They "secrete (exo)polysaccharides".
11
+ - A biofilm increases resistance of bacteria? Yes; it "increase the reistance to antibiotics", for example.
12
+ - One characteristic feature of "Biofilm Formation"? Marked increase in "Antibiotic Tolerance".
13
+ - Give a very important reason as to why bacteria make use of a "biofilm". A: So that these bacteria can stay where food is abundant and plentiful.
14
+ - Biofilms can "damage non-biological systems", such as ... which fairly big system? "Ventilators". URL: https://www.ncbi.nlm.nih.gov/pubmed/27831764
15
+ - Pseudomonas aeruginosa ist ein berühmt-berüchtigter Biofilm-Former. Was ist das "major signaling molecule" in diesem Bakterium? "Homoserine Lactone".
16
+ - Biofilms contain what? Biofilms contain microbial cells and exopolymeric substances (EPS).
17
+ - Nenne möglichst viele Vorteile von Biofilmen. A: Nährstoffe werden festgesetzt. er vereinfacht intercellular signaling zwischen Bakterien und auch den Austausch von Genen ("close proximy helps genetic exchange".) Der Biofilm schützt gegen das Immunsystem (defence), Biofilme mögen der bevorzugte Weg sein wie Bakterien leben (die Laborkulturen sind hingegen wohl Artefakte), auch hilft er den Bakterien an Ort und Stelle zu verbleiben ("remain at a favourable niche"), z. Bsp in fliessenden Systemen, oder verhaftet als Zahnbelag oder medizinischen Implantaten.
18
+ - Name an important part of bacterial biofilms that does not contain cells. A: The exopolymeric substances.
19
+ - In "Biofilm Formation", name the three general steps. A: (1) Attachment (2) Colonization (3) Development
20
+ - Nenne eine Chemikalie die gegen Biofilm-Formation hilft (Stichwort: "biofilm inhibition"). A: Furanones.
21
+ - Nenne die 3 steps bei Biofilm-Formation. A: Attachment, Colonization, Development.
22
+ - Welche konkrete Krankheit mag durch Biofilme verschlimmert werden? Cystic fibrosis.
@@ -0,0 +1,475 @@
1
+ # =========================================================================== #
2
+ # === BIOINFORMATICS tag
3
+ #
4
+ # Bioinf tag. Informatik Tag. Bioinfo tag. Bioinformatics Tag.
5
+ # Also network-analysis.
6
+ # =========================================================================== #
7
+
8
+ - How do we call the <one>topmost node</one> in a tree? The <one>root node</one>. []
9
+ - What do we mean with a <one>true tree</one> in bioinformatics? This is the tree that correctly reflects the history of our sequences used in (multiple) sequence alignment.
10
+ - What means <one>identity</one> in bioinformatics? Identity describes the degree to which two or more sequnces are identical at each position.
11
+ - Give a classical example of a <one>Bernoulli experiment</one>. A: The <one>(single) toss of a coin</one>. URL: https://en.wikipedia.org/wiki/Bernoulli_distribution []
12
+ - Name a program that can be used in order to <one>identify repetitive elements in a genome</one>. A: <one>RepeatMasker</one>. URL: http://www.repeatmasker.org/ []
13
+ - What is the <one>Burrows-Wheeler Transformation</one> (<one>BWT</one>)? This is a reversible permutation of the characters of a string, used originally for compression.
14
+ - <one>FASTA</one> has <two>k-tuples values</two>. Which are the k values for DNA and protein? A: (1) <one>DNA</one>: <two>k = 6</two> (2) <one>Protein</one>: <two>k = 2</two>
15
+ - Name two methods that are commonly used in <one>structural genomics</one>. A: (1) <one>NMR</one> (2) <one>X-ray crystallography</one>
16
+ - A. W. für <one>dotplot</one>? <one>2D-Matrix</one>. []
17
+ - In <one>BLAST</one>: is it better to have a low or a high <two>E value</two>? The lower the E-value, or the closer it is to zero, the more "significant" the match is. So we ideally should like to have a <one>lower E value</one>.
18
+ - In <peru>Bioinformatics</peru>: we assume that two sequences are homologous if ... ? If they are <two>derived</two> from a <one>common ancestor</one>. []
19
+ - In phyologeny: <one>multifurcation</one> at a leaf means how many branches? At the least 3 branches. []
20
+ - Give three different examples for <one>alphabets from biology</one>. A: (1) The Alphabet of <one>DNA nucleotides</one> (2) The Alphabet of <one>RNA nucleotides</one> (3) The Alphabet of the <one>20 amino acids</one> []
21
+ - Wie unterscheidet sich die <one>deskriptive Statistik</one> von der <one>induktiven Statistik</one>? (1) Bei der "deskriptiven Statistik" beschreiben wir, wir sammeln, ordnen, fassen zusammen. (2) Bei der "induktiven Statistik" hingegen machen wir Schlussfolgerungen, Prognosen und basieren unsere Entscheidungen auf Wahrscheinlichkeiten.
22
+ - What is the <one>FASTQ format</one>? This is like a FASTA file, but it also stores the <one>corresponding quality scores</one>. Very important for high-throughput machines such as Illumina Genome Sequencer.
23
+ - <one>FASTQ</one> uses a <two>Quality score</two>. At <three>Q40</three> we can assume the sequence of a genome to be of high quality, and it may then be called ... ? A <one>reference genome</one>. []
24
+ - Name a program that uses a "greedy algorithm" for nucleotide sequence alignment search. A: <one>Mega BLAST</one>.
25
+ - In <one>applied bioinformatics</one>, we may see information obtained by <two>SRA</two>. What does <two>SRA</two> mean here? <one>Sequence read archives</one>. URL: https://www.ncbi.nlm.nih.gov/sra []
26
+ - Was ist <one>DNA barcoding</one>? A taxonomic method that uses a "short genetic marker" in an organisms DNA to identify it as belonging to a particular species. It differs from "molecular phylogeny" in that the main goal is not to determine classification but to identify an unknown sample in terms of a known classification.
27
+ - Wann wurde die Technik des <one>dynamischen Programmierens</one> eingeführt? <one>1953</one>. URL: https://de.wikipedia.org/wiki/Dynamische_Programmierung []
28
+ - Archetypical example for "homologous proteins"? The <one>globin family of proteins</one>.
29
+ - What match may we expect from a <one>decoy database</one>? <one>Not a true match</one>.
30
+ - In der Bioinformatik: was bedeutet die Abkürzung "PSSM"? <one>Position Specific Scoring Matrix</one>.
31
+ - In bioinformatics: what is the <one>most commonly used measure of similarity</one>? <one>Percent identity</one>. URL: https://en.wikipedia.org/wiki/Sequence_homology []
32
+ - What is a <one>nr-database</one>? A <one>non-redundant database</one>. []
33
+ - Das Programm <one>glimmer</one> benötigt Genomannotationen in welchem Format? Im <one>GFF Format</one> (<two>.gff</two>). []
34
+ - In Bioinformatics: what are <one>variables</one>? These are <one>structures which can hold data</one>.
35
+ - In Bioinformatics: why do we use <one>negative alignment scores</one> in residue pair alignments? This way we can "represent especially unlikely alignments".
36
+ - Was ist eine <one>Metadatenbank</one>? Darstellung aller verfügbaren "biologischen" Datenbanken.
37
+ - Why do we not use the <one>Smith-Waterman algorithm</one> for very large databases? Because <one>it would be way too slow</one>! []
38
+ - Name one <one>SNP database</one>. A: The <one>public dbSNP database</one>. URL: https://en.wikipedia.org/wiki/DbSNP
39
+ - Allgemein formuliert: wann verwenden wir die <one>Hamming distance</one>? Beim <one>Sequenzvergleich</one>.
40
+ - In Bioinformatics: what do we usually mean with the Symbol S? This represents a string.
41
+ - In BLAST: what does the name "E value" stand for? <one>Expect value</one>.
42
+ - In der Bioinformatik: was heisst <one>NCBI</one>? <one>National Centre for Biotechnology Information</one>. URL: https://en.wikipedia.org/wiki/National_Center_for_Biotechnology_Information []
43
+ - Was findet der <one>Needleman-Wunsch Algorithmus</one>? Er findet die minimale Distanz bei globalen paarweisen Alignments.
44
+ - When we see a BLOSUM matrix with a high number, what can we infer from this? That this is a BLOSUM matrix designed for <one>comparing closely related sequences</one>.
45
+ - <one>Quality scores</one> can be stored in FASTQ files. Typically there is the <three>Phred Score</three>. Would we prefer a high or low Phred score? A: A high one. It means <one>high accuracy</one>.
46
+ - Why do we employ the <one>Nussinov algorithm</one>? We use this algorithm to <one>predict possible RNA secondary structure</one>.
47
+ - What do we mean with <one>pairwise alignment</one> in bioinformatics? This is the process of lining up two sequences to achieve maximal levels of identity.
48
+ - Why is <one>BLOSUM62</one> so widely used? Because it is fairly good at <one>detecting distant relationships</one> between proteins.
49
+ - In <one>RNA Bioinformatics</one>: what do we mean with <two>hierarchical folding</two>? This is when the "secondary structure" forms first, and then helices arrange to form a <two>tertiary structure</two>.
50
+ - Nenne mindestens drei wichtige Bioinformatikdatenbanken. A: (1) Protein Data Bank (PDB) (2) <one>GenBank</one> (3) PIR und Swiss-Prot
51
+ - Give one example of a famous <one>nonredundant database</one>. A: <one>RefSeq</one>.
52
+ - Name a <one>sequence graph</one> used in bioinformatics. A: The <one>De Bruijn</one> graph. URL: https://en.wikipedia.org/wiki/De_Bruijn_graph []
53
+ - In the <one>Burrows-Wheeler Transformation</one>, we first have to generate all rotations, followed by ... ? Sorting them <one>lexicographically</one>.
54
+ - <one>Pubmed</one> ist verfügbar seit ... ? <one>1966</one>. URL: https://de.wikipedia.org/wiki/PubMed []
55
+ - The central bioinformatics institute in the USA is called <one>NCBI</one>. How do we call the similar institute in Europe? <one>EBI</one>. URL: https://en.wikipedia.org/wiki/European_Bioinformatics_Institute []
56
+ - In a <one>Hidden Markov model</one>: what is meant with "silent states"? These are states that do not add to the sequence.
57
+ - Anderes Wort für ein <one>Sequence Pattern</one>? A: <one>Motif</one>. []
58
+ - In der <one>Bioinformatik</one>: wie heisst <two>die älteste Motivdatenbank</two>? <one>PROSITE</one>, <two>1988 erstellt</two>. []
59
+ - In der Bioinformatik: wofür steht die Abkürzung "VEGA"? <one>Vertebrate Genome Annotation</one>.
60
+ - Was erreicht man Dank der <one>SMART Datenbank</one> in der Bioinformatik? Eine Beschreibung von Proteindomänen.
61
+ - Name <one>three example alphabets from biology</one>. A: (1) the <one>alphabet of DNA nucleotides</one> (2) the Alphabet of RNA nucleotides (3) the Alphabet of the 20 amino acids
62
+ - From a bioinformatics point of view, how do we call <one>insertions</one> or deletions? A <one>gap in the alignment</one>.
63
+ - If we see an entry such as <one>Q04679-2</one> in <two>UniProt</two>, what may the -2 indicate? This may refer to <one>Isoform 2</one>.
64
+ - Entries in UniProtKB are uniquely identified by ... ? Their <one>accession number</one>.
65
+ - The <one>main database containing protein sequences</one> together with their associated functional information is ... ? <one>UniProt</one>.
66
+ - In Bioinformatics: what is the <one>Hamming distance</one>? Given two strings, the Hamming distance is the number of positions at which the corresponding symbols are different. In another way, it measures the minimum number of substitutions required to change one string into the other. Example: the Hamming distance between "toned" and "roses" is <one>3</one>.
67
+ - In <one>DNA Barcoding</one> gibt es COI. Was heisst COI? mitochondrial cytochrome oxidase I gene.
68
+ - Wann spricht man von einem <one>Laplace-Experiment</one>? Wenn <one>jedes Einzelereignis mit der selben Wahrscheinlichkeit auftreten kann</one>, wie zum Beispiel <two>bei einem Münzwurf</two> wo Kopf oder Zahl mit einer Wahrscheinlichkeit von 0.5 auftreten kann.
69
+ - The plural form of a <one>taxon</one> is ... ? <one>Taxa</one>. []
70
+ - An <one>oriented graph</one> in Bioinformatics has which two components? (1) a <one>start vertex</one> <two>bn</two> (2) an <one>end vertex</one> <two>en</two>
71
+ - The <one>Blast k value</one> is normally <three>x for amino acids</three> and <three>y for nucleotides</three>. A: (1) 3-5 for aminoacids (2) 12 for nucleotides
72
+ - In <one>gene ontology</one>: how do we technically describe "parentage"? Via <one>is_a</one> relationships.
73
+ - Was ist ein <one>Mnemonic</one>? Ein Begriff der das Memorieren erleichtern soll.
74
+ - How do we call the substring <one>S[1 . . . i]</one>? This is called the <one>prefix of S</one>.
75
+ - <three>Which algorithm</three> is commonly used for <one>Maximum Parsimony</one>? The <one>Fitch's algorithm</one>. []
76
+ - When is <one>GenBank</one> updated? <one>Every two months</one>. []
77
+ - Das <one>Abschätzen der Wachstum einer Funktion</one> wird womit erreicht? Mit Hilfe der <one>O-Notation</one>. []
78
+ - <one>Illumina Solexa</one> ist ein Paradebeispiel für die SBS Technologie. Was heisst SBS? <one>Sequencing by synthesis</one>. URL: https://emea.illumina.com/science/technology/next-generation-sequencing/sequencing-technology.html []
79
+ - The <one>initial guide tree</one> that is created in progressive alignment methods, can be created by <three>efficient clustering methods</three>. Give two such examples. A: (1) <one>neighbor-joining</one> (2) <one>UPGMA</one>
80
+ - The <one>Smith-Waterman algorithm</one> scores which 4 particular events? (1) <one>matches</one> (2) <one>mismatches</one> (3) <one>gaps</one> (4) <one>gap extensions</one>
81
+ - What was the first commercial <one>single-molecule sequencer</one>? The <one>HeliScope</one>, by Helicos. URL: https://en.wikipedia.org/wiki/Helicos_single_molecule_fluorescent_sequencing
82
+ - Welche Operationen sind bei der Kalkulation der Levenshtein-Distanz erlaubt (Antwort auf deutsch)? (1) <one>Einfügen</one> (2) <one>Löschen</one> (3) <one>Ersetzen</one>
83
+ - Kann ein <one>progressives alignment</one> durch iterative Methoden verbessert werden? Ja. []
84
+ - By comparing sequences through alignment, patterns of ... can be identified. A: Patterns of <one>conservation</one>.
85
+ - Was heisst <one>homoplasy</one> wortwörtlich? <one>Selbe Form</one>.
86
+ - <one>Unterschied</one> zwischen den primary databases und den secondary databases? A: Secondary databases sind curated, primary databases sind aus experimentellen Daten ohne <one>proofreading</one> entstanden. []
87
+ - When can we say that two sequences are homologous? They are homologous if they are <one>derived</one> from a <two>common ancestor</two>.
88
+ - In a <one>protein database</one>: what do we mean with "annotate"? This is all information other than the sequence.
89
+ - Wann wurde die <one>Roche-454 Pyrosequenzierung</one> erfunden? <one>1996</one>. []
90
+ - Was heisst <one>BLAST</one>? <one>Basic Local Alignment Search Tool</one>. URL: https://en.wikipedia.org/wiki/BLAST_(biotechnology) []
91
+ - Which algorithm is faster: <one>Needleman-Wunsch</one> or <one>Smith-Waterman</one>? A: The <one>Needleman-Wunsch algorithm is faster</one>. (<two>needles are fast!</two>) []
92
+ - <one>BLAST2</one>: why the 2 there? The <two>2</two> stands for the <one>Two-hit-method</one>.
93
+ - <one>Progressive alignment</one> builds up a final MSA (Multiple Sequence Alignment). It starts with? It <one>starts with the similar pair</one> and progresses to the most distantly related one.
94
+ - Was ist die kleinste Einheit in der Taxonomie? Das <one>Taxon</one>. []
95
+ - What kind of algorithm is the <one>Baeza-Yates-Perleberg</one> algorithm? It is a <one>filtering algorithm</one>.
96
+ - Say that a <one>dotplot</one> may show an <two>X-like area</two>. What can we conclude from this? There is <one>a palindrome in the sequence</one>. URL: http://www.globalspec.com/reference/65983/203279/the-dotplot []
97
+ - In der Bioinformatik: angenommen wir möchten verschiedene Domänen darstellen. Was könnten wir hier verwenden? <one>psiBLAST</one>: <two>position specific interacted BLAST</two>
98
+ - In Pseudocode: how to end a conditional <one>if</one>-statement? Via <one>end if</one>.
99
+ - If we see pseudocode such as <one>s := s u 5</one>, what does this really mean, when the variable "s" is assumed to be a set? This <one>adds 5</one> to the set s; the <two>u</two> here stands for "union".
100
+ - In the <one>UniProt Database</one>: how many of thse sequences are reliable and work at the cellular level as well? About <one>15% only</one>.
101
+ - Wie nennt <one>PacBio</one> ihre <three>flowcell</three>? <one>Smart cell</one>. URL: https://www.pacb.com/smrt-science/smrt-sequencing/ []
102
+ - In <one>FASTQ</one>: the <three>description line begins with which character</three>? <one>@</one>. []
103
+ - Woher kommt der Name <one>RasMol</one>? Er kommt von <one>raster display of molecules</one>. []
104
+ - Andere Bezeichnung für die <one>Distanz zwischen Zeichenfolgen</one>? <one>Hamming-Distanz</one>. []
105
+ - In Sanger Sequencing: when <one>dye-terminator sequencing</one> is used, what exactly is fluorescently labeled? The <one>chain terminator ddNTPs</one> are fluorescently labeled.
106
+ - What is a <one>clade</one>? A set of descendants from a single ancestor.
107
+ - Based on their contents, <three>biological databases</three> can be roughly divided into which <one>three categories</one>? (1) <one>primary databases</one> (2) <one>secondary databases</one> (3) <one>specialized databases</one>
108
+ - In Bioinformatics we have the <one>BAM files</one>. What does this stand for? <one>BAM</one> means <two>Binary Sequence Alignment</two>.
109
+ - Was erlaubt einem die <one>O-Notation</one> in der Informatik? Ein Abschätzen des Wachstums einer Funktion.
110
+ - In der Bioinformatik: warum sind <one>Bootstrapwerte</one> hilfreich? Sie <one>geben Auskunft darüber, wie konsistent der Datensatz ist</one>.
111
+ - What can we do with the program <one>GRAIL</one>? We can <one>identify genes in a database</one>.
112
+ - In <one>Gene Ontology</one>, one part also uses <two>evidence code</two>, assigned by automated methods. This automatically assigned evidence code comes from ...? It is <one>inferred from electronic annotation</one> (<two>IEA</two>).
113
+ - Nenne einen <one>Algorithmus</one>, der als <three>Modell für Mutationsereignisse</three> dienen kann. A: Die <one>Maximum-likelihood Algorithmen</one>.
114
+ - Name two different <one>amino acid substitution scoring matrices</one>. A: (1) <one>BLOSUM-62</one> (2) <one>PAM-120</one>
115
+ - Give another name for a <one>rooted tree</one>. A: A <one>dendrogram</one>. []
116
+ - In Bioinformatics or Statistics: what does <one>VCF</one> stand for? The <one>Variant Call Format</one>.
117
+ - In Bioinformatics: why are <one>local alignments</one> often more reasonable than the Needleman-Wunsch agorithm? The Needleman-Wunsch algorithm often does not produce <one>biologically meaningful results</one>.
118
+ - Nenne die 3 grössten, primären Sequenzatenbanken weltweit. A: (1) Genbank (2) EMBL (3) <one>DDBJ</one>
119
+ - In der Bioinformatik: was sind die <one>OTUs</one>? Dies sind die <one>Operational Taxonomic Units</one>, relevant bei der Analyse von Stammbäumen (Phylogeny). URL: https://en.wikipedia.org/wiki/Operational_taxonomic_unit
120
+ - If we have an <one>unrooted tree</one> with <three>4 elements</three>, how many rooted trees may we have? Show the formula for this as well. A: <two>5</two>. The formula is <one>(2n - 3)</one>, so (2 * 4 - 3) = 5. []
121
+ - Seit wann ist der <one>Algorithmus zur Levenshtein-Distanz</one> bekannt? Seit <one>1965</one>. []
122
+ - Give another word for <one>taxa</one>. A: <one>Operational taxonomic units</one>.
123
+ - In Bioinformatics: <one>SRS</one> stands short for ... ? <one>Sequence retrieval system</one>.
124
+ - What does a <one>Cladogram</one> show? It portrays the hierarchy of sister groupings between taxa, in a branching diagram.
125
+ - In Bioinformatics: <one>TrEMBL</one> stands for ... ? <one>Translated EMBL</one>. URL: http://www.bioinfo.pte.hu/more/TrEMBL.htm []
126
+ - Name a <one>multiple alignment program</one>. A: <one>ClustalW</one>. []
127
+ - What are <one>heuristics</one>? <one>Fast algorithms</one> that aim to provide good solution in practice without guaranteeing the optimality or the near-optimality of the solution.
128
+ - In <one>1997</one>: what was the upper limit of the database <two>GenBank</two>? (in KB) A: <one>350 kb</one>. []
129
+ - <one>SRA size</one> is measured in ...bytes. A: <one>Petabytes</one>.
130
+ - In bioinformatics: what is the bedtool <one>"-s"</one> option used for? <one>"-s"</one> stands here for <two>DNA strands</two>. Structural elements have to be on the same DNA strand, rather than the other strand.
131
+ - Why the name <one>UniProt</one> for this database? <one>UniProt</one> stands for <two>universal protein database</two>. []
132
+ - Consider you are given a <one>BLOSUM matrix</one> with very high numbers. What can this be used for? We can compare closely related sequences with a BLOSUM matrix with very high numbers. Low numbers are designed to compare distantly related sequences.
133
+ - Explain this statement: <one>'Homology is a qualitative inference'</one>. A: This simply means that sequences are homologous - or they are not. []
134
+ - Name <one>a substitution matrix</one> used for sequence alignment of proteins. A: <one>BLOSUM</one>. URL: https://en.wikipedia.org/wiki/BLOSUM []
135
+ - In Bioinformatics, in the <one>Levensthein distance</one>: what means <three>Transposition</three> event? The <two>swapping</two> <one>of two characters</one>. []
136
+ - <one>The first major bioinformatics project</one> was undertaken by <two>Margaret Dayhoff</two>, who developed a first protein sequence database called <three>Atlas of Protein Sequence and Structure</three>. In which year did this happen? In <one>1965</one>. []
137
+ - How do we call the <one>default fragment length</one> in <two>FASTA</two>? <one>k-tup</one>. []
138
+ - Why the name <one>dotplot</one>? Because in a dotplot, a <one>dot</one> is used to denote sequences that are similar.
139
+ - In <one>ClustalW</one>, we speak about "once a gap, always a gap". What is meant with this? That <one>early mistakes are never corrected</one>.
140
+ - In Bioinformatics: when we <one>make alignments</one>, what is <two>more costly</two>: a <three>mismatch</three> or a <three>gap</three>? <one>A gap should be more costly</one>. []
141
+ - How can we define a <one>clade</one>? A clade is a group consisting of an ancestor and all its descendants, a single "branch" on the "tree of life".
142
+ - What do we mean with the <one>biologically correct alignment</one>? This is <one>the alignment reflecting the true evolutionary history</one>.
143
+ - A <two>FASTA file</two> may include <one>ASN.1</one>. This abbreviation stands for ... ? <one>Abstract Syntax Notation One</one>.
144
+ - Name <one>a multiorganism genotype-phenotype database</one> that begins with the letter <three>P</three>. A: The <one>PhenomicDB database</one>.
145
+ - When was the term <one>chemoinformatics</one> defined? In <one>1998</one>.
146
+ - A <one>Markov chain</one> is traversed how? It is <one>traversed from state to state</one>, producing a <two>sequence of states</two>.
147
+ - A <one>dotplot</one> in Bioinformatics shows an <three>X-like area</three>. What can we conclude from this? There is a <one>palindrome</one> in the given sequence. []
148
+ - Name 3 different ways how <one>multiple sequence alignments</one> can happen. A: (1) progressive (2) iterative (3) blockwise
149
+ - What are <one>exhaustive algorithms</one>? <one>Algorithms</one> that essentially <two>try all possible solutions</two>.
150
+ - Give an example for <one>positive feedback</one> in biology. A: The conversion of Trypsinogen to Trypsin.
151
+ - In Bioinformatics for a <one>suffix tree</one>, the character <three>$</three> is often used to terminate the given suffix tree. Why is <three>$</three> picked? Because <one>the terminal symbol may not be an existing character in the given string at hand</one>. []
152
+ - The <one>Smith-Waterman algorithm</one> was improved in 1982 by Gotoh. That improvement came by handling ... what exactly? <one>Multiple sized gap penalties</one>.
153
+ - Im <one>BLAST Interface</one> auf der NCBI Webpage, bei Proteinen, was ist der default? <one>BLOSUM62</one>. URL: https://www.ncbi.nlm.nih.gov/blast/html/sub_matrix.html []
154
+ - Wir beobachten <one>unabhängige Vererbung</one>. Worauf deutet dies hin? Das verantwortliche Gene auf unterschiedlichen Chromosomen liegen.
155
+ - Name the two main kinds of information inherent in any <one>phylogenetic tree</one>. A: (1) the <one>topology</one> (2) the <one>branch lengths</one>
156
+ - Define the term <one>homoplasy</one>. A: <one>Structural resemblance</one> due to parallelism or <two>convergent evolution</two>, rather than to <two>common ancestry</two>.
157
+ - Wie heisst der <one>Identifier</one> beim FASTA Format? A: <one>Accession Number.Version Number</one>.
158
+ - When may we wish to use <one>PsiBLAST</one>? PsiBLAST is designed to be more sensitive than the original BLAST algorithm, so we may want to use it when we want to find "more distantly related proteins".
159
+ - Name <one>a program</one> with which we could compare two (different) viral sequences. A: <one>MUMmer</one>. URL: https://mummer.sourceforge.net/ []
160
+ - Andere Bezeichnung für <one>law of parsimony</one>? <one>Occam's razor</one>. URL: https://en.wikipedia.org/wiki/Occam%27s_razor []
161
+ - If we define a word as <one>three letters</one>, which words can we find in the sequence <three>MGQLV</three>? (1) <one>MGQ</one> (2) <one>GQL</one> (3) <one>QLV</one> []
162
+ - Was ist eine <one>binäre Antwort</one>? Eine <one>Ja</one>/<one>Nein Antwort</one>. []
163
+ - Was ist der Unterschied zwischen einer <one>primary database</one> und einer <one>secondary database</one>? A: Eine Primäre Database ist die Rohfassung, eine Sekundäre Database ist die <one>curated</one> (also von anderen Leuten <one>gegengelesen</one>) []
164
+ - Wie kann man einen <one>Dotplot</one> verbessern? Durch den <one>Einsatz von Filtern</one>. []
165
+ - Francis Crick established the <one>central dogma</one>, which uses these common steps: gene → transcript → protein → phenotype. In the <two>NGS era</two>, we can translate this towards ... ? <one>genome</one> <two>→</two> <one>transcriptome</one> <two>→</two> <one>proteome</one> <two>→</two> <one>phenome</one> []
166
+ - BRENDA was originally an acronym for ... ? The <one>Braunschweig Enzyme Database</one>. URL: https://en.wikipedia.org/wiki/BRENDA
167
+ - <one>Molekulare Taxonomie</one> basiert auf ... ? <one>Sequenzen</one>.
168
+ - Der <one>FASTA-Algorithmus</one> hat wieviele Phasen? <one>4</one>. []
169
+ - Was bildet die Grundlage für das Quantifizieren der Sequenzähnlichkeit zwischen zwei Sequenzen? <one>Scores</one>.
170
+ - In Bioinformatics, we have something such as <one>JC69</one>. What does this stand for? <one>Jukes Cantor model</one>. JC69 is the simplest substitution model. []
171
+ - Eine <one>Substitutionsmatrix für den Vergleich von Aminosäurensequenzen</one> beruht auf welchem Prinzip? Auf der <one>chemischen Ähnlichkeit von Aminosäuren</one>.
172
+ - What is <one>High-dimensional data</one>? That is data that requires more than two or three dimensions to represent.
173
+ - What is a <one>substitution matrix</one> in bioinformatics? A substitution matrix describes the rate at which one character in a sequence changes to other character states over time.
174
+ - Name <one>one drawback of GenBank</one>. A: GenBank is <one>highly redundant</one>.
175
+ - What do we mean with a <one>reference genome</one>? This is a prototypic example that is representative of an entire species.
176
+ - The <three>dynamic programming approach</three> can be extended for <one>multiple sequence alignment</one>. Give one example for that. A: Use a <one>multidimensional Needleman-Wunsch</one>, that is, a <two>(hyper)cube</two> instead of a matrix.
177
+ - Name a simple mechanism for <one>generating scale-free networks</one>. A: "Preferential attachment" aka "the rich get richer".
178
+ - Name one type of data that <one>GenBank</one> excludes. A: <one>Next-generation sequencing data</one>. []
179
+ - Name 3 different types of <one>Phylogenetic Trees</one>. A: (1) cladogram (2) additive tree (3) <one>ultrametric tree</one>
180
+ - Wie werden die <one>Strafpunkte</one> beim <two>globalen alignment</two> genannt? <one>Affine gap costs</one>. []
181
+ - Was findet der <one>Needleman-Wunsch Algorithmus</one>? Er findet die <one>minimale Distanz bei globalen, paarweisen Alignments</one>.
182
+ - <one>Starlight</one> uses ... to achieve <three>single-molecule sequencing</three>. A: <one>quantum dots</one>. []
183
+ - In der Bioinformatik: zu welchem Zweck mögen wir eine <one>Dotplot-Analyse</one> einsetzen? Sie ist die einfachste Art und Weise wie wir <one>zwei verschiedene Sequenzen vergleichen</one> können.
184
+ - Wofür steht <one>BLOSUM</one>? <one>BLOcks SUbstitution Matrix</one>.
185
+ - Wofür steht das <peru>tr</peru> in <one>trEMBL</one>? <one>Translated</one>. []
186
+ - In <one>Bioinformatics</one>: what do we mean with <two>ab initio methods</two>? These are methods that are helpful in order to determine new or rather unknown genes in a genome. It is a <one>gene prediction method</one>.
187
+ - <one>ExPASy</one> stands for ...? <one>Expert Protein Analysis System</one>.
188
+ - The <one>NCBI taxonomy database</one> contains over n registered organisms? Over <one>100_000</one> registered organisms.
189
+ - In NGS, we have <one>SMRT sequencing</one>. This stands for ... ? <one>Single molecule real-time</one> sequencing.
190
+ - The <one>PDB format</one> consists of lines of information in a text file. How do we call each line there? A <one>record</one>. []
191
+ - The <one>Pfam database</one> classifies protein families according to <two>profiles</two>. What is meant with a profile in this context? A <one>profile</one> is a pattern that evaluates the probability of the appearance of a given amino acid, an insertion, or a deletion at every position in a protein sequence.
192
+ - What is the name of the most famous <one>local alignment algorithm</one>? The <one>Smith-Waterman algorithm</one>.
193
+ - Give 7 examples of <one>Main Applications of Phylogenies</one>. A: (1) Identification of organisms (bacteria, fungi, viruses) (2) Classification and taxonomy of genes, proteins and species (3) Comparative analysis and character evolution (4) Prediction of protein structure and function (5) Investigating the history and biology of populations (6) Studying the emergence and spread of viral and bacterial pandemics (7) Searching for useful traits in related groups
194
+ - What are <one>NP-complete problems</one>? Problems which are equivalent - if a single problem in a set of thousand problems has a polynomial algorithm, all of them will have one.
195
+ - The <one>post genomic era</one> allowed the formation of which science-division? <one>Proteomics</one>.
196
+ - What means <one>UNA</one> in GenBank's data file entry? <one>Unannotated sequences</one>.
197
+ - Was ist <three>schwieriger handzuhaben</three> in der Bioinformatik: <one>Globales Alignment</one> oder <one>Lokales Alignment</one>? <one>Globales Alignment</one>. Es umfasst ja auch mehr Nukleotide. []
198
+ - Who hosts <one>GenBank</one>? <one>NCBI</one> does. []
199
+ - In bioinformatics: what does the <one>jukes-cantor model</one> (JC69) assume? It assumes that the <one>equilibrium frequencies</one> of the four nucleotides are 25% each and that during evolution, any nucleotide has the same probability to be replaced by any other.
200
+ - In Bioinformatics: what are <one>COGs</one>? <one>Clusters of Orthologous Genes</one> (COGs). These are defined groups of orthologous genes in various prokaryotic (COGs) and eukaryotic (KOGs) species. The COG database provides a functional and phylogenetic classification of protein groups based on "best-hit" blast results.
201
+ - The path in the <one>Needleman and Wunsch algorithm</one> describes what? The <one>alignment of the (two) sequences</one>.
202
+ - Name a software-tool for the identification of motifs. A: <one>COPIA</one>.
203
+ - <one>Gene Ontology</one> uses which 3 ways to group genes together? (1) Where does a gene product act (2) What is the activity or "job" of a gene product, aka its "molecular function" (3) What is its "biological process" in the context of commonly recognized series of events, such as <one>limb development</one>
204
+ - Is <one>homology</one> (in bioinformatics) measured in degrees? No - genes are either homologous or they are not. []
205
+ - In <one>RNA bioinformatics</one>: does this domain focus more on sequence or on structure? RNA bioinformatics focuses more on (<one>RNA</one>) <one>structure</one>. []
206
+ - In bioinformatics: how can we define an <one>edit distance</one>? The edit distance between two objects x and y is <one>the minimum number of operations</one> needed to convert x into y. []
207
+ - When was the <one>Levenshtein distance</one> sequence alignment algorithm first suggested? In <one>1965</one>.
208
+ - Name the 3 <one>principal genome browsers</one>. A: (1) Ensembl (2) UCSC (3) <one>NCBI</one>
209
+ - In Bioinformatics: how is the <one>PAM</one> defined? <one>1 PAM</one> is <two>the time</two> for <one>1 substitution per 100 amino acids</one>.
210
+ - The <one>PDB database</one> held how many structures in April 2020? <one>163141 structures</one>. []
211
+ - Name a <one>major database for human disease</one>. A: <one>OMIM</one>. URL: https://www.omim.org/ []
212
+ - Name the three general steps of the <one>Needleman-Wunsch approach</one>. A: (1) set up the matrix (2) score the matrix (3) identify the "optimal alignment"
213
+ - What is the <one>key property of dynamic programming</one>? <one>Divide and conquer</one> - That a problem can be divided into many smaller parts.
214
+ - Name a specific way in bioinformatics to search for protein sequences. A: <one>BLASTp</one>. URL: https://en.wikipedia.org/wiki/BLAST_(biotechnology) []
215
+ - Is a <one>De Bruijn graph</one> a <three>multigraph</three>? Yes. []
216
+ - If we see a file such as <one>cpg.bed</one>, where <peru>.bed</peru> stands for a <two>bedtools-related file</two>, what could this mean? The <one>cpg</one> could stand for <two>CpG islands</two> in a given genome, such as the human genome.
217
+ - In bioinformatics: are <one>curated databases</one> considered to be <two>secondary databases</two>? Yes. []
218
+ - In <one>Pseudocode</one>: how to do assignments? Via <one>:=</one> such as in <one>a := 5</one>. This would assign 5 to the variable a. []
219
+ - When was <one>BLAST</one> first introduced? In <one>1989</one>.
220
+ - What is the first <one>single-molecule sequencer</one>? <one>Helioscope</one>. URL: http://www.meragenome.com/how-it-works/technology
221
+ - If two proteins are related at the sequence level, what does this imply? Relatedness of two proteins at the sequence level suggests that they are <one>homologous</one>.
222
+ - <one>UniProt</one> stores protein sequences and their annotations where? In <one>UniProtKB</one>, also known as <one>the UniProt Knowledgebase</one>.
223
+ - In der Genomik: wer oder liefert uns gute <one>Expressionsdaten</one>? <one>Microchips</one>.
224
+ - What is <one>the key feature of Entrez</one>? Its ability to <one>integrate information</one>. This is very convenient: users do not have to visit multiple databases located in disparate places.
225
+ - The <one>CAZy</one> database ... the CAZy stands for ... ? <one>Carbohydrate active enzyme database</one>.
226
+ - Nenne einen wichtigen, wesentlichen Unterschied von KEGG zu anderen Datenbanken. A: KEGG besitzt eine deduktive Datenbank die es ermöglicht <one>Wirkdiagramme von Molekülen zu erstellen</one>.
227
+ - Was sagt die <one>statistische Signifikanz</one> eines Experimentes aus? Sie sagt etwas über die Erklärbarkeit eines Resultats mit Hilfe des Zufalles aus.
228
+ - What is a <one>Hamiltonian path</one>? This is a path that <one>visits each vertex exactly (and only) once</one>.
229
+ - In general: how can the <one>Levenshtein distance</one> be computed? Via <one>dynamic programming</one>. []
230
+ - <one>SCOP</one> (<two>Structural Classification Of Proteins</two>) classifies proteins of a known structure in a hierarchical manner. The three main classifications are ... ? (1) <one>families</one> (2) <one>superfamilies</one> (3) <one>folds</one>
231
+ - Nenne zwei Methoden zur <one>Community Profiling</one>. A: (1) <one>DGGE</one> (2) <one>t-RFLP</one>
232
+ - In bioinformatics: <one>SAM files</one> consist of two types of lines: <three>headers</three> and <three>alignments</three>. Headers begin with which character? <one>@</one>. []
233
+ - The <one>third generation</one> of sequencing machines have which part in common? They all aim at <one>avoiding the amplification step</one>. []
234
+ - What is an <one>ontology</one>? An "Ontology" is a formal representation of a set of concepts within a domain and the relationships between those concepts.
235
+ - What is a <one>multiple sequence alignment</one>? This is when we <one>align more than 2 sequences</one>.
236
+ - Was gilt beim <one>Occams Razor</one>? Es sollte bei "widersprüchlichen Modellen" stets das einfachere gewählt werden.
237
+ - In Bioinformatics, what does S[i . . . j] mean? This is the contiguous substring of S that starts at position i, and ends including position j of S. []
238
+ - How can we define <one>similarity</one> in bioinformatics? Similarity is a quantitative measure of how related two sequences are to one another.
239
+ - Beschleunigt ein <one>guide tree</one> eine Berechnung? Ja. []
240
+ - In Bioinformatics: what does <one>UPGMA</one> stand for? Unweighted Pair Group Method with Arithmetic Mean.
241
+ - In bioinformatics: the "sum-of-pairs score, is used to assess ... ? <one>Multiple sequence alignments</one>.
242
+ - <one>UniProt</one> versus <one>SwissPROT</one>: which of these two databases has a <three>higher quality</three>, on average? <one>SwissPROT</one>. []
243
+ - What do we mean with <one>identity</one> in bioinformatics? This is the degree to which two or more sequences are actually <one>identical at each position</one>.
244
+ - What kind of <one>PCR variant</one> is used in Roche/454-Pyrosequencing? An <one>emulsion PCR</one>.
245
+ - In <one>Next-Generation Sequencing</one>: what do we have to do with the <three>raw sequencing reads</three>? We have to <one>align them towards a reference genome</one>.
246
+ - Is the <one>Needleman-Wunsch algorithm</one> useful for database searches? No. []
247
+ - <one>How many new species are added</one>, per month, into <one>GenBank</one>? <one>1000</one>.
248
+ - How can we compare two sequences qualitatively? Via a <one>scoring system</one>.
249
+ - The <one>SAM format</one>: what does SAM stand for? <one>Sequence Alignment</one>/<one>Map</one>.
250
+ - Are <one>Transitions</one> more frequent than <one>Transversions</one>? Yes. []
251
+ - Why do we not really make use of <one>exact string matching</one> for biological sequences? Because typically, two related biological sequences are not identical. Thus, approximate methods have to be used rather than exact ones.
252
+ - In bioinformatics: can <one>literature databases</one> be classified as <two>secondary databases</two>? Yes. []
253
+ - <one>KEGG</one> consists of how many different database? <one>16</one>.
254
+ - What does a low E-value in <one>BLAST</one> mean? <one>This is good</one> - it indicates that the given match is very "significant".
255
+ - What main assumption does UPGMA make? Sequences evolved at a <one>constant equal rate</one>.
256
+ - In Bioinformatics: what is meant with <one>huge</one>? <one>Human genome equivalents</one>.
257
+ - Nenne eine Datenbank, die sich dezidiert <one>Protein-Protein-Interaktionen</one> widmet. A: Die <one>STRING-Datenbank</one>.
258
+ - Was bedeutet <one>maximum likelihood</one> in der Bioinformatik? Wir suchen den Baum der uns mit der größten Wahrscheinlichkeit unsere Daten generiert haben könnte.
259
+ - The database <one>Pfam</one> stands for? <one>Protein families</one>. URL: https://en.wikipedia.org/wiki/Pfam []
260
+ - What do we mean with the software <one>ApE</one>? This is <one>A plasmid Editor</one>.
261
+ - Does a <one>contig</one> have gaps? No. []
262
+ - In <one>pseudocode-expression</one>: how do we typically call an Array? We call an Array <one>a set of elements</one> such as <two>{1, 2, 3}</two>, without the " quotation marks.
263
+ - Name the three steps in <one>dynamic programming</one>. A: (1) Initialization (2) Fill the matrix (3) <one>Traceback</one>
264
+ - Die <one>wichtigste Datenbank für Proteinsequenzen</one> ist ... ? <one>UniProt</one>. URL: https://www.uniprot.org/ []
265
+ - Why are <one>ESTs</one> useful in bioinformatics? Because they <one>indicate</one> - and help identify - <one>expressed genes</one>.
266
+ - Andere Bezeichnung, ebenso auf Englisch, für <one>Parsimony</one>? <one>Minimum evolution</one>. []
267
+ - Die <one>Bewertung des paarweisen Sequenzvergleichs</one> erfolgt mit Hilfe ...? Einer <one>Substitutionsmatrix</one>. []
268
+ - Wann wurden <one>Hidden Markov Modelle</one> erstmals in der Bioinformatik eingesetzt? Im Jahre <one>1992</one>. []
269
+ - The <one>JC69 model</one> is the simplest substitution model. Name the two main assumptions it does. A: (1) It assumes "equal base frequencies" (2) It assumes <one>equal mutation rates</one>
270
+ - What are <one>extant species</one>? Exant species are <one>currently living species</one>. []
271
+ - Beim <one>Log odds ratio</one> gibt es einen Bruch. Was steht im Zähler, was im Nenner? P(obs) / P(prior)
272
+ - Give another term for the expression <one>None of the existing gaps are ever lost.</one>, in bioinformatics. A: <one>Once a gap, always a gap</one>. []
273
+ - <one>ClustalW</one> creates what kind of tree? A <one>guide tree</one>.
274
+ - In bioinformatics and phylogenesis: what means <one>multifurcation</one>? This is the occurrence of a split in an ancestral branch into more than two branches at an internal node.
275
+ - What do we mean with <one>sequence alignment</one>? This is the comparison of different sequences, DNA or aminoacid, to detect <one>sequence similarity</one>.
276
+ - From the point of view of bioinformatics: which problem may exist when we annotate a genome? Errors in a database can be continued and potentiated. This may lead to statements with a low information content such as "a putative protein is similar to another protein of unknown function that has unsubstantiated similarity to a protein kinase".
277
+ - <one>Graphs</one> preserve ... relations. A: <one>neighborhood</one>.
278
+ - In <one>pseudocode</one> used in bioinformatics: how do we denote a comment in that pseudocode? We will surround the comment in curly brackets, such as in <one>{a comment}</one>.
279
+ - <one>Overrepresented sequences</one> in <two>FastQC</two> may indicate ... ? <one>Adapters</one>.
280
+ - <three>Bioinformatic resources</three> come in which <one>two main flavors</one>? (1) <one>algorithms</one> (2) <one>databases</one>
281
+ - Name <one>5 KEGG databases</one>. A: (1) KEGG PATHWAY (2) KEGG BRITE (3) KEGG MODULE (4) KEGG DISEASE (5) KEGG DRUG
282
+ - From a bioinformatics point of view: why may <one>somatic change</one> be important to know about? Because it may be important in order to <one>study cancer</one>.
283
+ - In bioinformatics: what does <one>XP</one> stand for in <one>XP_12345</one>? That these entries are <one>not based on experimental evidence</one>.
284
+ - Name two different <one>substitution matrices</one> in Bioinformatics. A: (1) <one>BLOSUM</one> (2) <one>PAM</one> []
285
+ - Was heisst <one>multifurcation</one> in der Bioinformatik? Das aus einem Ast mehr als zwei Äste entspringen.
286
+ - What exactly do we mean with a <one>non-redundant</one> database in bioinformatics? Such a database, like <one>RefSeq</one>, will have identical sequences from the same organism and associated sequence fragments merged into a single entry.
287
+ - Name <one>the most important format</one> used in <two>next-generation sequence analysis</two>. A: <one>FASTQ</one>. URL: https://en.wikipedia.org/wiki/FASTQ_format []
288
+ - Die wichtigste Referenzdatenbank ist ... ? <one>PubMed</one>.
289
+ - Which three actions could be performed should we wish to <one>calculate the edit distance</one> via the <two>Levensthein algorithm</two>? (1) Insert (2) <one>Delete</one> (3) <one>Replace</one>
290
+ - How many entries did the <one>Protein Databank</one> (<two>PDB</two>) have in 1971 when it was just created? <one>7 entries</one>.
291
+ - Why was the name <one>dynamic programming</one> chosen? The precise behaviour of the algorithm is established only when it runs, because it depends on the sequences being aligned.
292
+ - Name the three main aspects of <one>genome sequencing</one>. A: (1) <one>Generate the sequence</one> (2) <one>Assembly</one> (3) <one>Annotation</one>
293
+ - Is <three>BLAST</three> <one>local alignment</one> or <one>global alignment</one>? <one>Local alignment</one>.
294
+ - <one>UniProt</one> is an abbreviation for ... ? <one>Universal Protein Resource</one>.
295
+ - How many <one>degrees of homology</one> exist? There are <one>no degrees</one> - <two>sequences are either homologous or they are not</two>. []
296
+ - In <peru>phylogeny</peru>: can there be <one>rooted trees</one> <two>without a known root</two>? Yes. []
297
+ - Name a practical advantage of UNIX <one>text streams</one> in Bioinformatics. A: Text-Streams allow us to do processing on a "stream of data" rather than holding it all in memory.
298
+ - Give a slightly longer name for <one>bioinformatics</one>. A: <one>Biological informatics</one>.
299
+ - Which one contains more information: the <one>phylogram</one> or the <one>cladogram</one>? The "Phylogram". It provides the same information as a cladogram, though with the lengths of the branches made proportional to the number of characters transformations borne by them.
300
+ - In Bioinformatics, for a <one>suffix tree</one>, every <three>internal node</three> has at least how many children? <one>Two</one>. []
301
+ - Wann wurde die <one>Protein Data Bank</one> etabliert? Im Jahre <one>1971</one>.
302
+ - Name a common pitfall that may lead to errors, in regards to <one>biological database</one>, if we tap into the information stored in these databases. A: There may be <one>many errors in sequence databases</one>. If such errors are passed to other databases it may lead to <two>a propagation of errors</two>.
303
+ - Does a <one>rooted phylogenetic tree</one> or an <one>unrooted phylogenetic tree</one> contain more information? The <one>rooted phylogenetic tree</one> contains more information. []
304
+ - The main barrier to linking different biological databases in bioinformatics is ... ? <one>Format incompatibility</one>.
305
+ - A <one>hidden markov model</one> has a set of ... ? <one>States</one>.
306
+ - What do we mean with <one>the Ontology of a database</one>? This is the list of valid terms and their definitions.
307
+ - In der Bioinformatik: was versteht man unter <one>Edit distance</one>? Die <one>Edit Distance</one> ist die "Minimalanzahl an Operationen" (z.B. einfache Vertauschung), um Sequenz A in Sequenz B zu überführen.
308
+ - In <one>bioinformatics</one>: give an example for <one>a prominent secondary database</one>. A: <one>SWISS-PROT</one>
309
+ - In <one>metagenome sequence assembly</one> we follow the <three>ICARE</three> method. What does this stand for? (1) <one>Ignore</one> (2) Complement (3) Adapt (4) <one>Revise</one> (5) <one>Evaluate</one>
310
+ - Current <one>biological databases</one> use which three types of database structures? (1) <one>flat files</one> (2) <one>relationa</one> (3) <one>object oriented</one>
311
+ - How can <one>a phylogenetic tree</one> help us in general? It allows us to reconstruct evolutionary paths and thus help deduce functional conservatism.
312
+ - <one>We can sequence whole genomes</one>. Name the 5 steps, starting from "sequence reads". A: (1) sequence reads (2) sequence contigs (3) scaffolds (4) mapped scaffolds (5) <one>genome map</one>
313
+ - Provide one example for <one>sequencing by synthesis</one> and one example for <one>sequencing by ligation</one>. A: (1) <one>Sequencing by synthesis</one>: <two>Roche-454 Pyrosequencing</two>. (2) <one>Sequencing by ligation</one>: <two>ABI SOLID</two>.
314
+ - Nenne zwei Algorithmen die auf den <one>paarweisen Sequenzvergleich</one> setzen. A: (1) <one>Needleman-Wunsch Algorithm</one> (2) <one>Smith-Waterman Algorithm</one> []
315
+ - Give an example for a <one>substitution matrix</one>. A: The <one>BLOSUM-62 substitution matrix</one>. URL: https://en.wikipedia.org/wiki/BLOSUM []
316
+ - Wann wurde der <one>Smith-Waterman Algorithm</one> vorgeschlagen? <one>1981</one>.
317
+ - Relevant for Bioinformatics, name the <one>correct classification for an organism</one>, as a chain. A: <one>Kingdom → Phylum → Class → Order → Family → Genus → Species</one> (<two>7</two>)
318
+ - When was the <one>BLAST algorithm</one> developed? <one>1990</one>.
319
+ - In Bioinformatics: what does the abbreviation <one>NGS</one> stand for? <one>Next Generation Sequencing</one>. []
320
+ - Wann wurde <one>BLOSUM</one> entwickelt? <one>1992</one>.
321
+ - When do we make use of <one>local alignment</one>? When we may have only one common domain.
322
+ - In a <one>suffix array</one>: which character is typically the special <three>sentinel letter</three>? <one>$</one>. []
323
+ - A. W. für <one>gap penalties</one>? <one>Affine gap costs</one>.
324
+ - Wann wurden die <one>ESTs</one> eingeführt? A: <one>1993</one>. []
325
+ - In Bioinformatics, what is a <one>contig</one>? This is a contiguous stretch of DNA sequence without gaps that has been assembled solely based on direct sequencing information.
326
+ - How is a <one>clade</one> defined? A clade is a group consisting of an ancestor and all its descendants.
327
+ - Der wichtigste Datenträger in der Molekularbiologie ist ... ? <one>DNA</one>. []
328
+ - Are <one>negative scores</one> essential for local alignments? Yes. []
329
+ - How does <one>FASTQ</one> extend <one>FASTA</one>? It includes <one>a numeric quality score</one> to each base in the sequence.
330
+ - What exactly do we mean with <one>dynamic programming</one>? This is an algorithm that allows us to "find an optimal solution".
331
+ - In Bioinformatics: what means <one>OTU</one>? <one>Operational taxonomic unit</one>. This is one of the organisms sequence-types being compared in a phylogenetic analysis, often represented by a DNA sequence or a biological pattern. []
332
+ - Name a famous database accessible from <three>Entrez</three>, that contains <one>biomedical literature</one>. A: <one>PubMed</one>. []
333
+ - In bioinformatics: when we use <one>a suffix tree</one>, how do we <two>terminate each substring</two>? We use the special character <peru>$</peru>. []
334
+ - <one>Progressive alignment methods</one> in bioinformatics, have how many steps? <one>Two</one>. []
335
+ - In der <one>Bioinformatik</one>: wann wurden <two>ESTs</two> eingeführt? <one>1993</one>; definiert wurde der Begriff aber bereits im Jahre <two>1991</two>. URL: https://en.wikipedia.org/wiki/Expressed_sequence_tag#History
336
+ - What was the main idea behind <one>gap extension penalty</one>? That introducing a gap is a rare event, that extending a gap, however had, happens more regularly in biological systems.
337
+ - Is <one>Parsimony</one> model-free? No, not really, even though this is often assumed. []
338
+ - The <one>quality of bioinformatics predictions</one> depends on the sophistication of the algorithms being used and ... ? <one>the quality of the data</one>.
339
+ - What is <one>cladistics</one> all about? Identifying clades within clades from the distribution of characters inherited by resulting species.
340
+ - <one>FASTQ</one> is typically used where? In <one>Next-Generation sequencing analysis</one>.
341
+ - In <one>formal bioinformatics</one>: what does <one>|S|</one> indicate? <one>|S|</one> denotes <two>the length of a string S</two>. []
342
+ - Why were the <one>BLOSUM matrices</one> developed? The goal was to replace the Dayhoff matrix with one that would perform best in identifying distant relationships.
343
+ - How do we call the results derived from a <one>Levensthein-Distance</one>? <one>Alignment</one>.
344
+ - What is a <one>gap penalty</one>? We need to penalize gaps in a sequence alignment.
345
+ - We may see a new organism with lots of open reading frames (ORFs). Name a general way how we can infer which ORFs are really coding for proteins and which ones do not. A: An open reading frame that is not translated into protein usually contains all sense codons at about the same frequency, whereas the <one>reading frames that are translated into protein tend to use a subset of the codons</one>.
346
+ - When may we wish to use <one>blastx</one>? When we wish to search protein databases using a translated nucleotide query.
347
+ - Die Klassifikationseinheit ist in <one>SCOP</one> ...? Die <one>Proteindomäne</one>.
348
+ - <one>The first bioinformatics database</one> was created by which person? <one>Margaret Dayhoff</one>. URL: https://en.wikipedia.org/wiki/Margaret_Oakley_Dayhoff []
349
+ - In der Bioinformatik: nenne ein Beispiel für die <one>Poisson-Verteilung</one>. A: Das zufällige Auftreten einer Mutation in einer langen Sequenz.
350
+ - We can use <one>special search terms in PubMed</one>. What does [AU] and [JID] mean, respectively? (1) <one>[AU]</one> will limit a search for the <two>author name</two> (2) <one>[JID]</one> will limit the search for a <two>journal name</two>
351
+ - Name <one>a pioneer in Bioinformatics</one>. A: <one>Margaret Dayhoff</one>. []
352
+ - The most commonly used score for MSAs is ... ? The <one>Sum of Pair Score</one>.
353
+ - All major flatfiles in Bioinformatics include which 3 major parts? (1) The <one>header</one> (2) The <one>feature</one> (3) The <one>nucleotide sequence</one> itself
354
+ - In <one>UPGMA</one>, how do we start? We build a <one>distance matrix</one> and start with the two most closely related sequences.
355
+ - Warum wird das <one>Jukes & Cantor</one> Modell verwendet? Diese Methode wird verwendet, um Distanzdaten, die aus einem Sequenzalignment stammen, zu korrigieren.
356
+ - How do we call the substring <one>S[j . . . |S|]</one>? This is called <one>suffix of S</one>. []
357
+ - The term <one>bioinformatics</one> was coined in the year ... ? <one>1978</one>. []
358
+ - In Bioinformatics: what is a <one>clade</one>? A monophyletic group of taxa sharing a closer common ancestry with one another than with members of any other clades.
359
+ - In a <one>hidden markov model</one>: can a <two>transition</two> go directly back to the same state? Yes. []
360
+ - In a <one>dotplot</one>: when will we use a dot? When the <one>two elements are equal</one>.
361
+ - We have found a gene that may be responsible for a human disease. In which database shall we look first? In <one>OMIM</one> (<two>Online Mendelian Inheritance in Man</two>).
362
+ - In bioinformatics: the <one>best-known genotype-phenotype database</one> is ... ? The <one>Online Mendelian Inheritance in Man (OMIM) database</one> of the NCBI.
363
+ - The <one>FASTA-family</one> uses which BLOSUM by default? <one>BLOSUM50</one>. []
364
+ - Name a database used in bioinformatics that makes use of <one>regular expressions</one>. A: <one>PROSITE</one>.
365
+ - <one>UniRef</one> is a nonredundant sequence database that allows for fast similarity searches. The database exists in three versions: UniRef100, UniRef90, and UniRef50. What does UniRef50 mean here? This is a database that allows for the searching of sequences that are <one>≥50%</one> identical.
366
+ - Bedeutet <one>BLOSUM50</one> <three>50% Ähnlichkeit zwischen zwei Sequenzen</three>? Ja. []
367
+ - In der <one>PAM Substitutionsmatrix</one>: was eigentlich heisst <three>PAM</three>? <one>Percent Accepted Mutations</one>. (1 akzeptierte Punktmutation pro 100 Reste.) []
368
+ - In bioinformatics: <one>query of the GenBank database</one> is carried out via ... ? The <one>NCBI Entrez system</one>.
369
+ - In bioinformatics: the <one>GenBank entry</one> begins with which keyword normally, as a flat file? It begins with the keyword <one>LOCUS</one>, followed by a locus name.
370
+ - In bioinformatics: sequences can be entered into GenBank by anyone via a Web page. How is this called? <one>bankit</one>. URL: https://www.ncbi.nlm.nih.gov/WebSub/
371
+ - In bioinformatics: <one>primary databases</one> contain ... ? <one>Primary sequence information</one>, such as the nucleotide sequence or the protein sequence.
372
+ - Nenne einen Nachteil der <one>primären Sequenzdatenbanken</one> in der Bioinformatik. A: <one>Fehlende Qualitätsprüfung</one>.
373
+ - The first algorithm for comparing protein or DNA sequences was published by Needleman and Wunsch in ... which year? <one>1970</one>.
374
+ - Who developed the <one>Entrez database</one>? The <one>NCBI</one>.
375
+ - In der Bioinformatik: was ist eine <one>SP-Funktion</one>? <one>Sum-of-pair</one> Funktion.
376
+ - Give another name for the term <one>Immunoinformatics</one>. A: <one>Computational immunology</one>.
377
+ - Was ist die <one>feature table</one> bei der Annotation? Dieser Eintrag enthält Angaben zum Organismus, aus dem die DNA stammt.
378
+ - How many genomes have been sequenced as of the year <one>2013</one>? About <one>3000</one>.
379
+ - Wann wurde die <one>PROSITE Datenbank</one> erstellt? <one>1988</one>.
380
+ - <one>Ab initio</one> gene discovery programs recognize such features to identify protein-coding genes. Most popular programs are based on ... ? <one>Hidden Markov Models</one> (<one>HMMs</one>).
381
+ - Warum suchen wir in der Bioinformatik eigentlich nach <one>homologen Sequenzen</one>? Homologe Sequenzen implizieren in der Regel <one>eine ähnliche Funktion und Struktur</one>. []
382
+ - Bei den <one>PacBio Sequencers</one>: nenne ein Problem ausser der "error rate". A: Die Geschwindigkeit beim Sequenzieren ist nicht konstant.
383
+ - Name <one>two algorithms</one> that are based on <two>dynamic programming</two>. A: (1) the <one>Needleman-Wunsch algorithm</one> (2) the <one>Smith-Waterman algorithm</one> []
384
+ - Nenne drei <one>boolesche Operatoren</one>. A: (1) <one>AND</one> (2) <one>OR</one> (3) <one>NOT</one>
385
+ - What does the abbreviation <one>MIAME</one> stand for, in bioinformatics? <one>Minimum information about a microarray experiment</one>.
386
+ - In Bioinformatics we may see SAM and BAM. How do these two relate to one another? BAM is essentially <one>compressed SAM</one>.
387
+ - <one>IUPAC</one> uses the three letters B, D and H. These stand for ... ? (1) <one>B</one>: all bases except for <two>A</two>; <three>B</three> follows A (thus C, G, T) (2) <one>D</one>: all bases except for <two>C</two>; <three>D</three> follows C (thus A, G, T) (3) <one>H</one>: all bases except for <two>G</two>; <three>H</three> follows G (thus A, C, T)
388
+ - <one>FASTQ</one> uses a <two>Quality score</two>, which starts at 0 and can go up to ... ? <one>40</one>.
389
+ - A <one>FASTA file</one> contains which two parts, in general? (1) a <one>description</one> (2) the <one>sequence data</one>
390
+ - When was <one>FASTA</one> introduced? In <one>1988</one>.
391
+ - Who was the <one>predecessor</one> to <two>FASTA</two>? <one>FASTP</one>.
392
+ - In <one>gene ontology</one> (GO), for proteins, we employ schemata that try to capture the entire complexity of protein functions. Name three different groups of GOs that are in use here, as a classification scheme. A: (1) molecular function (2) biological process (3) cellular component
393
+ - Do we see <one>water molecules</one> in <two>RasMol</two>? No.
394
+ - <one>Data splitting</one> in der Bioinformatik meint meistens ... ? Daten in subsets aufteilen und diese auf einem cluster zu parallelisieren.
395
+ - What does <one>Ion Torrent</one> detect? It detects <one>hydrogen ions (H+)</one>.
396
+ - In bioinformatics: why do we use a <one>dot plot</one>? The dot plot is a graphical method that allows the "comparison of two biological sequences".
397
+ - <one>UPGMA</one> uses what kind of matrix? <one>UPGMA</one> uses a <two>distance matrix</two>.
398
+ - The <one>Smith-Waterman algorithm</one> was first proposed by <two>Temple Smith</two> and <two>Michael Waterman</two> in what year? <one>1981</one>.
399
+ - W. h. <one>Phi-Blast</one>? <one>Pattern-hit initiated BLAST</one>.
400
+ - Name the 3 different <one>status levels</one> for <two>RefSeq</two>. A: (1) <one>predicted</one> (2) provisional (3) reviewed URL: https://www.ncbi.nlm.nih.gov/refseq/about/
401
+ - Was sagt die <one>statistische Signifikanz</one> eines Experimentes aus? Sie sagt etwas über die Erklärbarkeit eines Resultats mit Hilfe des Zufalles aus.
402
+ - Definiere in der Bioinformatik die <one>Hamming Distanz</one>. A: Dies ist <one>die Zahl der Austausche</one>, um von <two>Sequenz 1</two> zu <two>Sequenz 2</two> zu gelangen.
403
+ - Bei der <one>KEGG database</one>: wofür steht <two>KEGG</two>? <one>Kyoto Encyclopedia of Genes and Genomes</one>.
404
+ - What exactly is an <one>extant population</one>? This is <one>a population that is still existing</one>.
405
+ - Name an <one>enzyme database</one>. A: <one>Brenda</one>. URL: http://www.brenda-enzymes.org
406
+ - <one>DNA Barcoding</one> beruht auf welchem Verfahren? Auf der <one>Anwendung der Polymerase-Kettenreaktion</one> (<two>PCR</two>).
407
+ - What is a <one>Phred quality score</one>? This is <one>a measure of the quality of the identification of the nucleobases</one> generated by <two>automated DNA sequencing</two>.
408
+ - Wie geht die <one>Laplace-Formel</one>, erklärt? <one>Anzahl günstiger Ereignisse</one> dividiert durch die <two>Anzahl möglicher Ereignisse</two>.
409
+ - Nenne die zwei zentralen Paradigmen/Schlagwörter in der Proteinevolution. A: (1) <one>Duplikation</one> (2) <one>Modifikation</one>
410
+ - <one>Progressive alignment methods</one> represent the relationships between sequences in what form? As a <one>guide tree</one>.
411
+ - In computer science we know of a <one>suffix tree</one>. Give another name for it. A: A <one>position tree</one>.
412
+ - Das <one>FBI</one> verwendet <two>welche Datenbank</two> um genetische Spuren von möglichen Kriminellen zu identifizieren? <peru>CODIS</peru>: <one>Combined DNA Index System</one>.
413
+ - In a <one>HMM</one> (<two>Hidden Markov Model</two>), transition between states has an assigned ...? <one>Probability</one>.
414
+ - The <one>Hamming distance</one> considers only what? It considers only <one>point mutations</one>.
415
+ - What is a <one>specialized database</one> in Bioinformatics? Also give an example for such a database, outside of the human species. A: A database that caters to a particular research interest, for instance: <one>Flybase</one>.
416
+ - How much does it <one>cost</one> to sequence a human genome in the year 2015? About <one>$1000</one>.
417
+ - In der Bioinformatik: was macht der <one>Smith-Waterman algorithm</one>? Er führt "local sequence alignments" durch. Das heisst er erkennt wie ähnlich zwei Strings zueinander sind.
418
+ - What is the <one>ABI 3130xl</one>? A machine used to <one>automate Sanger sequencing</one>.
419
+ - A. W. für <one>Backtracking</one> in der Bioinformatik? Ableiten des Alignments.
420
+ - In order to achieve <one>maximum similarity</one> between two different sequences, of different length, we must do what? We must <one>introduce gaps</one>.
421
+ - In der <peru>Bioinformatik</peru>: was heisst <one>PAM</one>? <one>Percent Accepted Mutation Matrix</one>.
422
+ - Name a shortcoming of the <one>Sum of Pair Score</one>. A: It does not consider phylogeny.
423
+ - What is the <one>holy grail of Bioinformatics</one>? The automatic construction of Metabolic Models from Sequenced Genomes.
424
+ - Why would we wish to make use of <one>comparative genomics</one>? So that we can use a gene from one species, and find a related gene in another species.
425
+ - In <one>ClustalW</one>: what does the <two>W</two> stand for? It stands for <one>weighted</one>.
426
+ - Warum wird <one>blastx</one> verwendet? Da wir eine Nukleotidsequenz translatieren möchten, in allen möglichen Leserahmen - also sechs (<peru>6</peru>) Möglichkeiten in Summe.
427
+ - Why are <one>different BLOSUM-matrices</one> used? Because they <one>can evaluate whether proteins are conserved to one another</one>. <two>BLOSUM62</two> can be used for <three>midrange evolution</three>, <two>BLOSUM80</two> can be used for <three>more related proteins</three> and <two>BLOSUM45</two> can be used for <three>distantly related proteins</three>.
428
+ - What does the <one>law of parsimony</one> say? It states that <one>the simplest sufficient hypothesis</one> is to be preferred even though others are possible.
429
+ - Name a <one>qualitative difference</one> between <two>PsiBLAST</two> and <two>BLAST</two>. A: PsiBLAST is more sensitive - it finds more distantly related sequences.
430
+ - In bioinformatics, the <one>GFF</one> (<two>General Feature Format</two>) format consists of one line per feature, each containing n columns of data? <one>9 columns of data per line</one>.
431
+ - Warum ist <one>Maximum-Parsimony</one> eigentlich <peru>minimal</peru>? Weil die Anzahl der Mutationen, die notwendig sind, um die evolutionäre Entwicklung zu erklären, minimal sein muss.
432
+ - Eine <one>Substitutionsmatrix</one> für den Vergleich von Aminosäurensequenzen beruht auf welchem Prinzip? Es beruht auf dem Prinzip der <one>chemischen Ähnlichkeit von Aminosäuren</one>.
433
+ - What feature does <one>dbEST</one> give its users? Access to <one>expressed sequence tags</one>.
434
+ - Name a sequencing technique that requires a polymerase that is fixed to a surface. A: The <one>PacBio sequencing technique</one>.
435
+ - <one>Gaps</one> in alignment, in bioinformatics, can be of which two types? (1) <one>internal</one> (2) <one>terminal</one>
436
+ - In der Bioinformatik: wozu können wir <one>Hidden Markov Modelle</one> praktisch einsetzen? Zum <one>Detektieren von splice-Stellen</one>.
437
+ - What do we mean with <one>Pseudocode</one> in bioinformatics? This is a language used by computer scientists to describe algorithms.
438
+ - <one>PSI-BLAST</one> is a kind of <two>hybrid program</two> in between ... and ... ? (1) <one>BLAST</one> (2) <one>HMMs</one>
439
+ - Was ist die elementare <one>Voraussetzung</one> für <two>Sequenzevolution</two>? <one>Mutationen</one>.
440
+ - In <one>Bioinformatics</one>: what is meant with the term <one>RefSeq</one>? This is <one>the NCBI's Reference Sequences database</one>.
441
+ - Name a <peru>constraint</peru> of the <one>Hamming distance</one>. A: It is <one>only applicable for sequences equal in length</one>.
442
+ - Der <one>euklidische Abstand</one> ist ein Spezialfall der ...? <one>Minkonski Distanz</one>.
443
+ - Give an example where <one>HMMs</one> have been used in bioinformatics, as an algorithm. A: <one>Gene-finding algorithms</one>.
444
+ - What is <one>the most common bioinformatics task</one>? Given a query sequence, <one>find all similar sequences in a large database</one>.
445
+ - Name two drawbacks of <one>ClustalW</one>. A: (1) Once a gap, always a gap (2) Guide tree bias
446
+ - In order to determine the DNA sequence of an organism, two different methods have been very popular. Which ones? (1) The "ordered sequencing strategy", also called "clone contig method" (2) The "shotgun sequencing approach", with random processing of the fragments
447
+ - When was the Protein databank (PDB) created? In "1971". (It was called "SEARCH" back then though).
448
+ - How to do an assignment in pseudocode? For example via "a := 5".
449
+ - What can we see as the "cancer hub" in human cells? The protein p53.
450
+ - What is the main strength of a profile HMM? It is a "probabilistic model".
451
+ - Name the three commonly used FASTQ quality schemes/scores in use. A: (1) <one>Sanger</one> (fastq-sanger) (2) "Solexa" (fastq-solexa) (3) "Illumina" (fastq-illumina)
452
+ - Wofür steht die "SCOP" Datenbank? "Structural classification of proteins".
453
+ - Ist ein "Progressives Alignment" eine Heuristik? Ja.
454
+ - What does the "Needleman-Wunsch algorithm" seek? It seeks the "optimal (global) alignment between two sequences".
455
+ - Nenne ein "Antibiotikum", das durch metagenomische Forschung entdeckt wurde. A: "Turbomycin".
456
+ - GOLD steht für ... ? "Genomes Online Database". URL: https://gold.jgi.doe.gov/
457
+ - Name one solid reason why we may never be able to reconstruct the "true single tree of life". A: Because of the phenomenon of lateral gene transfer and gene loss, it might never be possible to construct a single tree of life that reflects the evolution of life on planet earth.
458
+ - Die "Pfam-Datenbank" umasst 2008 etwa n Proteinfamilien? 10.340.
459
+ - What do we mean with "Taxonomic novelty", in Bioinormatics? These are sequences without a close relative in a database.
460
+ - Bioinformatic tools can be sequence-based or structure-based. Which variant is more powerful? The structure-based variant.
461
+ - Nenne einen Algorithmus in der Bioinformatik, der mit "G" beginnt und sich mit Alignment von Sequenzen beschäftigt. A: Der "Gotoh-Algorithmus".
462
+ - Give an example for "NGS to RNA". A: RNA-Seq.
463
+ - How do "RefSeq" entries look like? For instance, NP_619745.1 URL: https://www.ncbi.nlm.nih.gov/protein/NP_619745.1
464
+ - Nenne eine praktische Einsatzmöglichkeit eines Dotplots. A: Wenn man die Struktur zweier verschiedener Genome vergleichen möchte.
465
+ - Why are there so many different BLOSUM matrices? Because there is no one correct scoring scheme for all circumstances.
466
+ - What do we mean with "erroneous annotations" in Bioinformatics? The same gene sequence is found under different names, resulting in multiple entries and confusion about the data.
467
+ - Was ist der Unterschied zwischen "primären" und "sekundären" Datenbanken? Sekundäre Datenbanken sind von primären Datenbanken abgeleitet. Primäre Datenbanken enthalten originale Information.
468
+ - In Bioinformatics, what is a "superstring problem"? This is a problem where we have to find the shortest circular superstring that contains all possible k-mers as substrings.
469
+ - A. W. für "Meta Databases"? Database on Databases.
470
+ - In Bioinformatics, which two sets does a "graph" include? A graph includes a set of "vertices", and a set of "arcs".
471
+ - When was the "dot plot" introduced in Bioinformatics? 1970, by Gibbs and McIntyre.
472
+ - Nenne 1 Einschränkung bei der Hamming-Distanz. A: Es wird gleiche Sequenzlänge vorausgesetzt.
473
+ - In Phylogenetic, internal nodes may also be called "HTU". What does the word HTU mean? Hypothetical taxonomic units. URL: http://en.wiktionary.org/wiki/hypothetical_taxonomic_unit
474
+ - In der Bioinformatik, was ist allgemein ein "Alignment"? Das ist das Arrangieren von identischen oder ähnlichen Buchstaben zwischen mindestens 2 Sequenzen.
475
+ - Was ist eine "Transversion"? Eine Veränderung Purin zu Pyrimidin oder umgekehrt.