studium 0.13.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 (871) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2785 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +7 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/search_for_n_ects +7 -0
  38. data/bin/show_lectures_on_the_commandline +7 -0
  39. data/bin/show_themes +7 -0
  40. data/bin/solved +9 -0
  41. data/bin/solved_ects +7 -0
  42. data/bin/studienkennzahl +7 -0
  43. data/bin/studium +7 -0
  44. data/bin/studium_skeleton +7 -0
  45. data/bin/ufind +7 -0
  46. data/bin/upcoming_exams +7 -0
  47. data/bin/week_parser +7 -0
  48. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  49. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  50. data/doc/README.gen +2742 -0
  51. data/doc/SQL_database_specification.md +46 -0
  52. data/doc/deprecated_components.md +24 -0
  53. data/doc/documentation_for_the_file_lecture_information.md +311 -0
  54. data/doc/elegant_colours.md +21 -0
  55. data/doc/todo/TODO_FOR_STUDIUM_GEM.md +112 -0
  56. data/doc/todo/TODO_FOR_THE_GRAPHICAL_PARTS_OF_THE_STUDIUM_GEM_INCLUDING_WWW_RELATED_ASPECTS.md +35 -0
  57. data/img/STUDIES.png +0 -0
  58. data/lib/studium/autoinclude.rb +7 -0
  59. data/lib/studium/base/base.rb +2710 -0
  60. data/lib/studium/base/prototype.rb +543 -0
  61. data/lib/studium/c/README.md +2 -0
  62. data/lib/studium/c/a.out +0 -0
  63. data/lib/studium/c/obtain_random_entry.c +11 -0
  64. data/lib/studium/check_and_sanitize/README.md +11 -0
  65. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  66. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +110 -0
  67. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +90 -0
  68. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +189 -0
  69. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +163 -0
  70. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +115 -0
  71. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  72. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  73. data/lib/studium/colours/colours.rb +549 -0
  74. data/lib/studium/colours/sfancy.rb +46 -0
  75. data/lib/studium/colours/sfile.rb +35 -0
  76. data/lib/studium/colours/simp.rb +40 -0
  77. data/lib/studium/colours/use_colours.rb +39 -0
  78. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  79. data/lib/studium/commandline/commandline.rb +932 -0
  80. data/lib/studium/commandline/menu.rb +903 -0
  81. data/lib/studium/constants/colours.rb +14 -0
  82. data/lib/studium/constants/constants.rb +2142 -0
  83. data/lib/studium/constants/image_constants.rb +217 -0
  84. data/lib/studium/constants/web_constants.rb +25 -0
  85. data/lib/studium/css/project.css +267 -0
  86. data/lib/studium/curricula/curriculum.rb +210 -0
  87. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  88. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  89. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  90. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  91. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  92. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  93. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  94. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  95. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  96. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  97. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  98. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  99. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  100. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  101. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  102. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  103. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  104. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  105. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  106. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  107. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +324 -0
  108. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  109. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  110. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  111. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  112. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +163 -0
  113. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  114. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +11 -0
  115. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  116. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  117. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +264 -0
  118. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +163 -0
  119. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +64 -0
  120. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +38 -0
  121. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  122. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  123. data/lib/studium/ects/ects_per_university.rb +179 -0
  124. data/lib/studium/ects/ects_scanner.rb +141 -0
  125. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  126. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  127. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  128. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  129. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  130. data/lib/studium/ects/return_n_ects_from_this_url.rb +196 -0
  131. data/lib/studium/ects/search_for_n_ects.rb +614 -0
  132. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +191 -0
  133. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  134. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  135. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  136. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  137. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  138. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  139. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  140. data/lib/studium/ects/still_missing.rb +129 -0
  141. data/lib/studium/ects/sum_of_ects.rb +144 -0
  142. data/lib/studium/encoding/encoding.rb +108 -0
  143. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +86 -0
  144. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  145. data/lib/studium/exam_topics/advanced_biochemistry +781 -0
  146. data/lib/studium/exam_topics/advanced_biotechnology +214 -0
  147. data/lib/studium/exam_topics/advanced_cellbiology +27 -0
  148. data/lib/studium/exam_topics/advanced_chemistry +504 -0
  149. data/lib/studium/exam_topics/advanced_microbiology +43 -0
  150. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +85 -0
  151. data/lib/studium/exam_topics/advanced_virology +218 -0
  152. data/lib/studium/exam_topics/ageing +114 -0
  153. data/lib/studium/exam_topics/agrar_ecology +63 -0
  154. data/lib/studium/exam_topics/agrarmarkt +71 -0
  155. data/lib/studium/exam_topics/agrarphysik +35 -0
  156. data/lib/studium/exam_topics/alcohols +29 -0
  157. data/lib/studium/exam_topics/algorithms +52 -0
  158. data/lib/studium/exam_topics/allergie +75 -0
  159. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  160. data/lib/studium/exam_topics/allgemeine_mikrobiologie +946 -0
  161. data/lib/studium/exam_topics/aminoacids +438 -0
  162. data/lib/studium/exam_topics/analytische_chemie_1 +132 -0
  163. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  164. data/lib/studium/exam_topics/anatomie +290 -0
  165. data/lib/studium/exam_topics/anorganische_chemie +311 -0
  166. data/lib/studium/exam_topics/anthropologie +116 -0
  167. data/lib/studium/exam_topics/antibodies_and_antigens +764 -0
  168. data/lib/studium/exam_topics/apoptosis +35 -0
  169. data/lib/studium/exam_topics/archaea +60 -0
  170. data/lib/studium/exam_topics/architecture +8 -0
  171. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  172. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  173. data/lib/studium/exam_topics/audio +11 -0
  174. data/lib/studium/exam_topics/bacteriophages +240 -0
  175. data/lib/studium/exam_topics/basic_biochemistry +1002 -0
  176. data/lib/studium/exam_topics/basic_biotechnology +1001 -0
  177. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  178. data/lib/studium/exam_topics/basic_virology +1008 -0
  179. data/lib/studium/exam_topics/bauwesen +6 -0
  180. data/lib/studium/exam_topics/betriebssysteme +126 -0
  181. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  182. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +382 -0
  183. data/lib/studium/exam_topics/biochips +78 -0
  184. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  185. data/lib/studium/exam_topics/biofilms +22 -0
  186. data/lib/studium/exam_topics/bioinformatics +503 -0
  187. data/lib/studium/exam_topics/biological_therapeutics +153 -0
  188. data/lib/studium/exam_topics/biologie +137 -0
  189. data/lib/studium/exam_topics/biomarkers +106 -0
  190. data/lib/studium/exam_topics/biomaterials +89 -0
  191. data/lib/studium/exam_topics/biomembranes +6 -0
  192. data/lib/studium/exam_topics/bionik +65 -0
  193. data/lib/studium/exam_topics/biophysik +34 -0
  194. data/lib/studium/exam_topics/biopolymers +10 -0
  195. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  196. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  197. data/lib/studium/exam_topics/bodenkunde +373 -0
  198. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  199. data/lib/studium/exam_topics/cancerbiology +442 -0
  200. data/lib/studium/exam_topics/cell_cultures +155 -0
  201. data/lib/studium/exam_topics/cellbiology +995 -0
  202. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  203. data/lib/studium/exam_topics/cellulose +6 -0
  204. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  205. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  206. data/lib/studium/exam_topics/chemisches_labor +60 -0
  207. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +87 -0
  208. data/lib/studium/exam_topics/citric_acid_cycle +80 -0
  209. data/lib/studium/exam_topics/clinical_microbiology +492 -0
  210. data/lib/studium/exam_topics/computer_graphics +5 -0
  211. data/lib/studium/exam_topics/computer_science +280 -0
  212. data/lib/studium/exam_topics/crispr +28 -0
  213. data/lib/studium/exam_topics/cyanobacteria +42 -0
  214. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +551 -0
  215. data/lib/studium/exam_topics/cytokines +5 -0
  216. data/lib/studium/exam_topics/databases_and_sql +106 -0
  217. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +35 -0
  218. data/lib/studium/exam_topics/dna_replication +56 -0
  219. data/lib/studium/exam_topics/ecogenetics +26 -0
  220. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  221. data/lib/studium/exam_topics/ecology +314 -0
  222. data/lib/studium/exam_topics/economy +211 -0
  223. data/lib/studium/exam_topics/elektronenmikroskopie +354 -0
  224. data/lib/studium/exam_topics/elektrophorese +89 -0
  225. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +41 -0
  226. data/lib/studium/exam_topics/elisa +54 -0
  227. data/lib/studium/exam_topics/embryologie_und_entwicklung +547 -0
  228. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  229. data/lib/studium/exam_topics/enzymes_and_cofactors +345 -0
  230. data/lib/studium/exam_topics/epigenetik +179 -0
  231. data/lib/studium/exam_topics/ethik +138 -0
  232. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +328 -0
  233. data/lib/studium/exam_topics/excel +7 -0
  234. data/lib/studium/exam_topics/fish +19 -0
  235. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  236. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +71 -0
  237. data/lib/studium/exam_topics/forensik +11 -0
  238. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  239. data/lib/studium/exam_topics/fortgeschrittene_genetik +511 -0
  240. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +211 -0
  241. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  242. data/lib/studium/exam_topics/fungi +79 -0
  243. data/lib/studium/exam_topics/genetische_krankheiten +176 -0
  244. data/lib/studium/exam_topics/genexpression +1008 -0
  245. data/lib/studium/exam_topics/genomics_and_metagenomics +244 -0
  246. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +901 -0
  247. data/lib/studium/exam_topics/geochemistry +67 -0
  248. data/lib/studium/exam_topics/geography +8 -0
  249. data/lib/studium/exam_topics/geologie_und_mineralogie +621 -0
  250. data/lib/studium/exam_topics/geometrie +47 -0
  251. data/lib/studium/exam_topics/geschichte +93 -0
  252. data/lib/studium/exam_topics/gluconeogenesis +59 -0
  253. data/lib/studium/exam_topics/glycogen +25 -0
  254. data/lib/studium/exam_topics/glycolysis +109 -0
  255. data/lib/studium/exam_topics/glykomik +100 -0
  256. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  257. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  258. data/lib/studium/exam_topics/hormone +134 -0
  259. data/lib/studium/exam_topics/html +7 -0
  260. data/lib/studium/exam_topics/human_ecology +8 -0
  261. data/lib/studium/exam_topics/hygiene +191 -0
  262. data/lib/studium/exam_topics/imaging_and_microscopy +241 -0
  263. data/lib/studium/exam_topics/immunanalytik +94 -0
  264. data/lib/studium/exam_topics/immunologie +982 -0
  265. data/lib/studium/exam_topics/informatik +97 -0
  266. data/lib/studium/exam_topics/innate_immunity +22 -0
  267. data/lib/studium/exam_topics/insekten +57 -0
  268. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  269. data/lib/studium/exam_topics/java +502 -0
  270. data/lib/studium/exam_topics/javascript +12 -0
  271. data/lib/studium/exam_topics/klima +6 -0
  272. data/lib/studium/exam_topics/kryptographie +5 -0
  273. data/lib/studium/exam_topics/landtechnik +26 -0
  274. data/lib/studium/exam_topics/lebensmittel +208 -0
  275. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  276. data/lib/studium/exam_topics/linux +5 -0
  277. data/lib/studium/exam_topics/lipids +94 -0
  278. data/lib/studium/exam_topics/macroeconomics +40 -0
  279. data/lib/studium/exam_topics/mathematics +254 -0
  280. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  281. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +398 -0
  282. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  283. data/lib/studium/exam_topics/metabolismus +406 -0
  284. data/lib/studium/exam_topics/microbial_ecology +35 -0
  285. data/lib/studium/exam_topics/microcontrollers +11 -0
  286. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +33 -0
  287. data/lib/studium/exam_topics/mikrobielle_physiologie +172 -0
  288. data/lib/studium/exam_topics/mitochondria +32 -0
  289. data/lib/studium/exam_topics/mixed +278 -0
  290. data/lib/studium/exam_topics/molecular_biology_of_plants +242 -0
  291. data/lib/studium/exam_topics/molekulare_medizin +131 -0
  292. data/lib/studium/exam_topics/nanotechnologie +453 -0
  293. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +166 -0
  294. data/lib/studium/exam_topics/naturstoffe +9 -0
  295. data/lib/studium/exam_topics/netzwerke +32 -0
  296. data/lib/studium/exam_topics/neurobiology +267 -0
  297. data/lib/studium/exam_topics/nucleotide_sequencing +32 -0
  298. data/lib/studium/exam_topics/nutztierethologie +11 -0
  299. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  300. data/lib/studium/exam_topics/obstbau +234 -0
  301. data/lib/studium/exam_topics/organische_chemie +1007 -0
  302. data/lib/studium/exam_topics/organische_chemie_2 +118 -0
  303. data/lib/studium/exam_topics/paleobiology +35 -0
  304. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  305. data/lib/studium/exam_topics/patent_law +55 -0
  306. data/lib/studium/exam_topics/pathologie +717 -0
  307. data/lib/studium/exam_topics/pcr +144 -0
  308. data/lib/studium/exam_topics/pentosephosphatweg +41 -0
  309. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  310. data/lib/studium/exam_topics/pflanzenanatomie +255 -0
  311. data/lib/studium/exam_topics/pflanzenbau +24 -0
  312. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  313. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  314. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  315. data/lib/studium/exam_topics/physik +433 -1
  316. data/lib/studium/exam_topics/physikalische_chemie +86 -0
  317. data/lib/studium/exam_topics/physiology_and_histology +506 -0
  318. data/lib/studium/exam_topics/phytochemie +33 -0
  319. data/lib/studium/exam_topics/plant_biotechnology +128 -0
  320. data/lib/studium/exam_topics/plant_breeding +64 -0
  321. data/lib/studium/exam_topics/plant_development +50 -0
  322. data/lib/studium/exam_topics/populationsgenetik +136 -0
  323. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +191 -0
  324. data/lib/studium/exam_topics/projektmanagement +219 -0
  325. data/lib/studium/exam_topics/prokaryote_genetics +531 -0
  326. data/lib/studium/exam_topics/protein_engineering +8 -0
  327. data/lib/studium/exam_topics/proteolyse +33 -0
  328. data/lib/studium/exam_topics/proteomik +40 -0
  329. data/lib/studium/exam_topics/prozesstechnik +95 -0
  330. data/lib/studium/exam_topics/psychologie +13 -0
  331. data/lib/studium/exam_topics/python +353 -0
  332. data/lib/studium/exam_topics/quality_management +256 -0
  333. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  334. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  335. data/lib/studium/exam_topics/rna_and_dna +395 -0
  336. data/lib/studium/exam_topics/rna_seq +11 -0
  337. data/lib/studium/exam_topics/ruby +146 -0
  338. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  339. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  340. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  341. data/lib/studium/exam_topics/sexualbiologie +62 -0
  342. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +167 -0
  343. data/lib/studium/exam_topics/splicing_exons_and_introns +63 -0
  344. data/lib/studium/exam_topics/statistik +233 -0
  345. data/lib/studium/exam_topics/stemcells +158 -0
  346. data/lib/studium/exam_topics/stickstofffixierung +75 -0
  347. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  348. data/lib/studium/exam_topics/strukturbiologie +380 -0
  349. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +101 -0
  350. data/lib/studium/exam_topics/systematische_zoologie +433 -0
  351. data/lib/studium/exam_topics/technical_ecology +144 -0
  352. data/lib/studium/exam_topics/technische_chemie +202 -0
  353. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +26 -0
  354. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  355. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  356. data/lib/studium/exam_topics/the_bacterial_cell_wall +97 -0
  357. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +489 -0
  358. data/lib/studium/exam_topics/the_c_programming_language +129 -0
  359. data/lib/studium/exam_topics/the_cellcycle +81 -0
  360. data/lib/studium/exam_topics/the_european_union +119 -0
  361. data/lib/studium/exam_topics/the_interferon_system +38 -0
  362. data/lib/studium/exam_topics/the_microbiome +163 -0
  363. data/lib/studium/exam_topics/the_universe +12 -0
  364. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  365. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  366. data/lib/studium/exam_topics/tierzucht +94 -0
  367. data/lib/studium/exam_topics/toxikologie +408 -0
  368. data/lib/studium/exam_topics/transcription +82 -0
  369. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +142 -0
  370. data/lib/studium/exam_topics/umweltbiotechnologie +63 -0
  371. data/lib/studium/exam_topics/umweltchemie +233 -0
  372. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  373. data/lib/studium/exam_topics/urea_cycle +55 -0
  374. data/lib/studium/exam_topics/vaccines_and_vaccination +242 -0
  375. data/lib/studium/exam_topics/vectors_and_gene_therapy +240 -0
  376. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  377. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  378. data/lib/studium/exam_topics/vitamine +24 -0
  379. data/lib/studium/exam_topics/wasserkunde +137 -0
  380. data/lib/studium/exam_topics/weinbau +59 -0
  381. data/lib/studium/exam_topics/wissenschaft +18 -0
  382. data/lib/studium/exam_topics/yeast +102 -0
  383. data/lib/studium/exam_topics/zoologie +330 -0
  384. data/lib/studium/exams/afterburn/afterburn.rb +257 -0
  385. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  386. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  387. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  388. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +131 -0
  389. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  390. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  391. data/lib/studium/exams/ask_random_question.rb +195 -0
  392. data/lib/studium/exams/autoinclude.rb +7 -0
  393. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  394. data/lib/studium/exams/cycle.rb +291 -0
  395. data/lib/studium/exams/dataset.rb +123 -0
  396. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  397. data/lib/studium/exams/exam/exam.rb +130 -0
  398. data/lib/studium/exams/exam_question/README.md +3 -0
  399. data/lib/studium/exams/exam_question/answer.rb +177 -0
  400. data/lib/studium/exams/exam_question/constants.rb +111 -0
  401. data/lib/studium/exams/exam_question/exam_question.rb +1135 -0
  402. data/lib/studium/exams/exam_question/menu.rb +333 -0
  403. data/lib/studium/exams/exam_question/misc.rb +895 -0
  404. data/lib/studium/exams/exam_question/question.rb +91 -0
  405. data/lib/studium/exams/exam_question/reset.rb +96 -0
  406. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  407. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  408. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  409. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  410. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  411. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  412. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  413. data/lib/studium/exams/exam_topics.rb +194 -0
  414. data/lib/studium/exams/exams.rb +20 -0
  415. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2438 -0
  416. data/lib/studium/exams/exams_this_week.rb +182 -0
  417. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  418. data/lib/studium/exams/frozen.rb +36 -0
  419. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  420. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  421. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1956 -0
  422. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  423. data/lib/studium/exams/n_exams_in_these_topics.rb +404 -0
  424. data/lib/studium/exams/next_exam.rb +107 -0
  425. data/lib/studium/exams/next_exams.rb +378 -0
  426. data/lib/studium/exams/open_exam_associated_url.rb +154 -0
  427. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  428. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  429. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +109 -0
  430. data/lib/studium/exams/pr/303/274fung.rb +289 -0
  431. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  432. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +377 -0
  433. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  434. data/lib/studium/exams/repeat_last_question.rb +78 -0
  435. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  436. data/lib/studium/exams/show_backlog_of_exams.rb +117 -0
  437. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  438. data/lib/studium/exams/show_themes/constants.rb +28 -0
  439. data/lib/studium/exams/show_themes/menu.rb +61 -0
  440. data/lib/studium/exams/show_themes/misc.rb +537 -0
  441. data/lib/studium/exams/show_themes/reset.rb +62 -0
  442. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  443. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +181 -0
  444. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  445. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  446. data/lib/studium/exams/show_upcoming_exams/initialize.rb +77 -0
  447. data/lib/studium/exams/show_upcoming_exams/menu.rb +60 -0
  448. data/lib/studium/exams/show_upcoming_exams/report.rb +200 -0
  449. data/lib/studium/exams/show_upcoming_exams/reset.rb +45 -0
  450. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  451. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +544 -0
  452. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  453. data/lib/studium/exams/solved/constants.rb +32 -0
  454. data/lib/studium/exams/solved/help.rb +24 -0
  455. data/lib/studium/exams/solved/initialize.rb +55 -0
  456. data/lib/studium/exams/solved/menu.rb +41 -0
  457. data/lib/studium/exams/solved/reset.rb +28 -0
  458. data/lib/studium/exams/solved/solved.rb +313 -0
  459. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +162 -0
  460. data/lib/studium/exams/upcoming_exams/constants.rb +15 -0
  461. data/lib/studium/exams/upcoming_exams/help.rb +41 -0
  462. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  463. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  464. data/lib/studium/exams/upcoming_exams/misc.rb +415 -0
  465. data/lib/studium/exams/upcoming_exams/reset.rb +34 -0
  466. data/lib/studium/exams/upcoming_exams/run.rb +26 -0
  467. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  468. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  469. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  470. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  471. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  472. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  473. data/lib/studium/graphviz/README.md +4 -0
  474. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  475. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  476. data/lib/studium/gui/gtk3/README.md +1 -0
  477. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  478. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  479. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  480. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  481. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +510 -0
  482. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  483. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1887 -0
  484. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  485. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  486. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  487. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  488. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  489. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  490. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  491. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  492. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  493. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  494. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  495. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  496. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  497. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  498. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  499. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  500. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  501. data/lib/studium/images/small_logos/DNA.png +0 -0
  502. data/lib/studium/images/small_logos/README.md +2 -0
  503. data/lib/studium/images/studies_favicon.png +0 -0
  504. data/lib/studium/java/Mkdir.java +15 -0
  505. data/lib/studium/java/README.md +2 -0
  506. data/lib/studium/java/ask_exam_question/AskExamQuestion.java +477 -0
  507. data/lib/studium/java/solved/Solved.class +0 -0
  508. data/lib/studium/java/solved/Solved.java +110 -0
  509. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  510. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.java +80 -0
  511. data/lib/studium/logging/README.md +2 -0
  512. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  513. data/lib/studium/logging/html_log_directory.rb +41 -0
  514. data/lib/studium/logging/log_directory.rb +112 -0
  515. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  516. data/lib/studium/parsers/README.md +2 -0
  517. data/lib/studium/parsers/custom_exam_results_parser.rb +206 -0
  518. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  519. data/lib/studium/parsers/parse_remote_lecture.rb +325 -0
  520. data/lib/studium/project/project.rb +76 -0
  521. data/lib/studium/requires/common_popular_requires.rb +37 -0
  522. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  523. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  524. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  525. data/lib/studium/requires/require_encoding.rb +7 -0
  526. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  527. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  528. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  529. data/lib/studium/requires/require_the_exams_files.rb +45 -0
  530. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  531. data/lib/studium/requires/require_the_parsers.rb +28 -0
  532. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  533. data/lib/studium/requires/require_the_studium_project.rb +54 -0
  534. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  535. data/lib/studium/requires/require_the_utility_scripts.rb +49 -0
  536. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  537. data/lib/studium/requires/require_yaml.rb +7 -0
  538. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  539. data/lib/studium/requires/with_GUI.rb +13 -0
  540. data/lib/studium/requires/www_mode.rb +17 -0
  541. data/lib/studium/statistics/README.md +4 -0
  542. data/lib/studium/statistics/best_exam_months.rb +92 -0
  543. data/lib/studium/statistics/curriculum_comparer.rb +336 -0
  544. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  545. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  546. data/lib/studium/statistics/max_stats.rb +170 -0
  547. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  548. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  549. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  550. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  551. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  552. data/lib/studium/statistics/top_stats.rb +127 -0
  553. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  554. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +100 -0
  555. data/lib/studium/toplevel_methods/available_topics.rb +156 -0
  556. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  557. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  558. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  559. data/lib/studium/toplevel_methods/curriculum_related_code.rb +999 -0
  560. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  561. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +51 -0
  562. data/lib/studium/toplevel_methods/download.rb +163 -0
  563. data/lib/studium/toplevel_methods/e.rb +16 -0
  564. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  565. data/lib/studium/toplevel_methods/editor.rb +65 -0
  566. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  567. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  568. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3442 -0
  569. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  570. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  571. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  572. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  573. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  574. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  575. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  576. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  577. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +42 -0
  578. data/lib/studium/toplevel_methods/java.rb +32 -0
  579. data/lib/studium/toplevel_methods/lecture_information.rb +106 -0
  580. data/lib/studium/toplevel_methods/lva_numbers.rb +355 -0
  581. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  582. data/lib/studium/toplevel_methods/methods_related_to_directories.rb +225 -0
  583. data/lib/studium/toplevel_methods/methods_related_to_files.rb +205 -0
  584. data/lib/studium/toplevel_methods/misc.rb +169 -0
  585. data/lib/studium/toplevel_methods/n_questions_available.rb +137 -0
  586. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  587. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  588. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  589. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  590. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  591. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  592. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  593. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  594. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  595. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  596. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  597. data/lib/studium/toplevel_methods/remove_tags.rb +32 -0
  598. data/lib/studium/toplevel_methods/report.rb +419 -0
  599. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  600. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  601. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +498 -0
  602. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  603. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  604. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  605. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +60 -0
  606. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  607. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  608. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +60 -0
  609. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  610. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  611. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +9400 -0
  612. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +1661 -0
  613. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  614. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  615. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  616. data/lib/studium/toplevel_methods/rti_conflict.rb +35 -0
  617. data/lib/studium/toplevel_methods/runmode.rb +87 -0
  618. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  619. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  620. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  621. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +34 -0
  622. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  623. data/lib/studium/toplevel_methods/time.rb +239 -0
  624. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  625. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  626. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  627. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  628. data/lib/studium/toplevel_methods/url.rb +100 -0
  629. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  630. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  631. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  632. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +189 -0
  633. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  634. data/lib/studium/universities_in_austria/README.md +2 -0
  635. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  636. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  637. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  638. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  639. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  640. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  641. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  642. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  643. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  644. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  645. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  646. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  647. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  648. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  649. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  650. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  651. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +101 -0
  652. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  653. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  654. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  655. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  656. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  657. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  658. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  659. data/lib/studium/utility_scripts/display_lecture_url.rb +160 -0
  660. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +414 -0
  661. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  662. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  663. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  664. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  665. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  666. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  667. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  668. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  669. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  670. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  671. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  672. data/lib/studium/utility_scripts/holidays/holidays.rb +150 -0
  673. data/lib/studium/utility_scripts/homepage_of_these_courses.rb +118 -0
  674. data/lib/studium/utility_scripts/lecture_downloader.rb +107 -0
  675. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +336 -0
  676. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  677. data/lib/studium/utility_scripts/lva_nummer.rb +431 -0
  678. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  679. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  680. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  681. data/lib/studium/utility_scripts/next_week.rb +103 -0
  682. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  683. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +177 -0
  684. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  685. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  686. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  687. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  688. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +312 -0
  689. data/lib/studium/utility_scripts/priority.rb +164 -0
  690. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  691. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  692. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  693. data/lib/studium/utility_scripts/regexes/generate_regex.rb +300 -0
  694. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  695. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  696. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  697. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +116 -0
  698. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  699. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  700. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  701. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  702. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  703. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  704. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  705. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +95 -0
  706. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +119 -0
  707. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1238 -0
  708. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  709. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  710. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  711. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  712. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  713. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  714. data/lib/studium/utility_scripts/show_lectures/constants.rb +11 -0
  715. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  716. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  717. data/lib/studium/utility_scripts/show_lectures/menu.rb +127 -0
  718. data/lib/studium/utility_scripts/show_lectures/misc.rb +584 -0
  719. data/lib/studium/utility_scripts/show_lectures/reset.rb +89 -0
  720. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  721. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  722. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  723. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  724. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/constants.rb +17 -0
  725. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/determine.rb +673 -0
  726. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/help.rb +44 -0
  727. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/html.rb +605 -0
  728. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/initialize.rb +56 -0
  729. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/konsole.rb +32 -0
  730. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/menu.rb +472 -0
  731. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/misc.rb +837 -0
  732. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/reset.rb +121 -0
  733. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/run.rb +44 -0
  734. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show.rb +106 -0
  735. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +261 -0
  736. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/sorted_individual_curricula.rb +121 -0
  737. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +149 -0
  738. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +169 -0
  739. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +91 -0
  740. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +210 -0
  741. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  742. data/lib/studium/utility_scripts/steop/README.md +4 -0
  743. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  744. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  745. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  746. data/lib/studium/utility_scripts/studienkennzahl.rb +116 -0
  747. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +227 -0
  748. data/lib/studium/utility_scripts/stundenplan.rb +595 -0
  749. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  750. data/lib/studium/utility_scripts/ufind/ufind.rb +98 -0
  751. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  752. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  753. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +181 -0
  754. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  755. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  756. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  757. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  758. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  759. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  760. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  761. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  762. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  763. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  764. data/lib/studium/utility_scripts/wochenplanung.rb +261 -0
  765. data/lib/studium/version/version.rb +46 -0
  766. data/lib/studium/www/curricula_displayer.cgi +197 -0
  767. data/lib/studium/www/curriculum_displayer.rb +162 -0
  768. data/lib/studium/www/exams.cgi +53 -0
  769. data/lib/studium/www/fast_ask_exam_question.cgi +155 -0
  770. data/lib/studium/www/sinatra/app.rb +231 -0
  771. data/lib/studium/www/sinatra/misc.rb +115 -0
  772. data/lib/studium/www/statistics/statistics.cgi +59 -0
  773. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  774. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +15 -0
  775. data/lib/studium/yaml/allowed_themes_for_exams.yml +344 -0
  776. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +70 -0
  777. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  778. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  779. data/lib/studium/yaml/colours/custom_colours.yml +28 -0
  780. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  781. data/lib/studium/yaml/current_exams.yml +19 -0
  782. data/lib/studium/yaml/curricula/README.md +9 -0
  783. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +142 -0
  784. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +65 -0
  785. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +84 -0
  786. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  787. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  788. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  789. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  790. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  791. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +183 -0
  792. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  793. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  794. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +130 -0
  795. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  796. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +118 -0
  797. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +203 -0
  798. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  799. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +129 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +136 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  806. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  807. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  808. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  809. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  810. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +76 -0
  811. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  812. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +61 -0
  813. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  814. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  815. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +111 -0
  816. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +142 -0
  817. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +170 -0
  818. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  819. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  820. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  821. data/lib/studium/yaml/curricula.yml +538 -0
  822. data/lib/studium/yaml/daily_questions_solved.yml +1468 -0
  823. data/lib/studium/yaml/default_delay.yml +4 -0
  824. data/lib/studium/yaml/default_encoding.yml +1 -0
  825. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  826. data/lib/studium/yaml/editor.yml +1 -0
  827. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  828. data/lib/studium/yaml/german/README.md +2 -0
  829. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  830. data/lib/studium/yaml/grouped_themes.yml +192 -0
  831. data/lib/studium/yaml/holidays.yml +194 -0
  832. data/lib/studium/yaml/important_exams.yml +226 -0
  833. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  834. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  835. data/lib/studium/yaml/lecture_information/lecture_information.yml +55870 -0
  836. data/lib/studium/yaml/log_dir.yml +1 -0
  837. data/lib/studium/yaml/main_topic.yml +11 -0
  838. data/lib/studium/yaml/max_stats.yml +241 -0
  839. data/lib/studium/yaml/meta_themes/README.md +13 -0
  840. data/lib/studium/yaml/meta_themes/biochemistry.md +6 -0
  841. data/lib/studium/yaml/meta_themes/bioinformatics.md +6 -0
  842. data/lib/studium/yaml/meta_themes/biotechnology.md +9 -0
  843. data/lib/studium/yaml/meta_themes/chemistry.md +9 -0
  844. data/lib/studium/yaml/meta_themes/genetics.md +10 -0
  845. data/lib/studium/yaml/meta_themes/immunology.md +5 -0
  846. data/lib/studium/yaml/meta_themes/metabolic_pathways.md +12 -0
  847. data/lib/studium/yaml/meta_themes/molecular_biology.md +9 -0
  848. data/lib/studium/yaml/meta_themes/protein_engineering.md +10 -0
  849. data/lib/studium/yaml/meta_themes/statistics.md +2 -0
  850. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  851. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +23 -0
  852. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  853. data/lib/studium/yaml/n_total_questions.yml +1 -0
  854. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  855. data/lib/studium/yaml/show_topic.yml +1 -0
  856. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  857. data/lib/studium/yaml/statistics/statistics.yml +69 -0
  858. data/lib/studium/yaml/week/01_monday.yml +5 -0
  859. data/lib/studium/yaml/week/02_tuesday.yml +75 -0
  860. data/lib/studium/yaml/week/03_wednesday.yml +62 -0
  861. data/lib/studium/yaml/week/04_thursday.yml +14 -0
  862. data/lib/studium/yaml/week/05_friday.yml +31 -0
  863. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  864. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  865. data/lib/studium/yaml/week/README.md +13 -0
  866. data/lib/studium.rb +5 -0
  867. data/studium.gemspec +80 -0
  868. data/test/testing_studium.rb +244 -0
  869. data/test/testing_studium_base_class.rb +17 -0
  870. data/test/testing_time_component.rb +29 -0
  871. metadata +1078 -0
@@ -0,0 +1,503 @@
1
+ # =========================================================================== #
2
+ # === BIOINFORMATICS tag
3
+ #
4
+ # Bioinf tag. Informatik Tag. Bioinfo tag. Bioinformatics Tag.
5
+ # Also network-analysis.
6
+ # =========================================================================== #
7
+
8
+ - In bioinformatics we may see syntax such as <one>[1, 5)</one>. What does the [ and ) mean, respectively? This refers to a range. The [ means that it is included, so 1 is part of the range; the ) means that the last number, aka 5, is excluded, so it is not part of the range. Thus, the sequence here is: <two>1, 2, 3, 4</two>.
9
+ - 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>)
10
+ - The <one>NCBI taxonomy database</one> <two>contains over n registered organisms</two>? Over <one>100_000</one> registered organisms.
11
+ - 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 <two>union</two>.
12
+ - A <one>hidden markov model</one> has a set of ... ? <one>States</one>. []
13
+ - <one>What kind of algorithm</one> is the <two>Baeza-Yates-Perleberg</two> algorithm? It is a <one>filtering algorithm</one>.
14
+ - In bioinformatics: the <one>GenBank entry</one> <two>begins with which keyword</two> normally, as a flat file? It begins with the keyword <one>LOCUS</one>, followed by a locus name.
15
+ - Name a program that uses a <one>greedy algorithm</one> for <two>nucleotide sequence alignment search</two>. A: <one>Mega BLAST</one>.
16
+ - What does a low E-value in <one>BLAST</one> mean? <one>This is good</one> - it indicates that the given match is <two>very significant</two>.
17
+ - An <one>oriented graph</one> in Bioinformatics has <two>which two components</two>? (1) a <one>start vertex</one> <two>bn</two> (2) an <one>end vertex</one> <two>en</two>
18
+ - Name one drawback of the <one>dbEST</one> database. A: This database contains redundant ESTs, especially for strongly expressed genes such as actin.
19
+ - What is the name of the database that <one>collects all EST data</one>? This is the <one>dbEST</one>.
20
+ - The abbreviation <one>bl2seq</one> stands for ... ? <one>Blast two sequences</one>.
21
+ - The database <one>Pfam</one> stands for? <one>Protein families</one>. URL: https://en.wikipedia.org/wiki/Pfam []
22
+ - 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.
23
+ - Die <one>Pfam-Datenbank</one> umfasste im Jahre <two>2008</two> etwa <three>n Proteinfamilien</three>? <one>10.340</one>. []
24
+ - If we want to find out to which families a specific protein belongs to, which database should we consult? <one>InterPro</one>.
25
+ - Give another name for <one>immunoinformatics</one>. A: <one>Computational immunology</one>.
26
+ - <one>NCBI BLAST</one> uses <two>COBALT</two> (Papadopoulos and Agarwala 2007) to generate the multiple sequence alignment. What does <two>COBALT</two> stand for? <one>Constraint-based Multiple Alignment Tool</one>.
27
+ - The most common strategy to compare two proteins involves ... ? <one>aligning their sequences</one>.
28
+ - An individual <one>FASTQ record</one> must always contain ... how many lines? <one>4</one>.
29
+ - The <one>Q</one> in <two>FASTQ</two> stands for ... ? <one>Quality</one>.
30
+ - The computational methodology that tries to find the best matching between two molecule (such as a receptor and a ligand) is called ... ? Molecular docking.
31
+ - The <one>Hamming distance</one> is basically equivalent in bioinformatics to ... ? SNPs: <two>single-nucleotide polymorphisms</two>.
32
+ - What does the <one>Needleman-Wunsch algorithm</one> seek? It seeks the <one>optimal (global) alignment between two sequences</one>.
33
+ - PAM matrices versus BLOSUM matrices: which one of these two is more often used for reconstructing phylogenetic trees? The <one>PAM matrices</one>.
34
+ - What does <one>BLOSUM62</one>, that is the 62 there, indicate? BLOSUM62 indicates that the sequences selected for constructing the matrix share an average identity value of 62%.
35
+ - We have found a gene that may be responsible for a human disease. In <one>which database</one> shall we look first? In <one>OMIM</one> (<two>Online Mendelian Inheritance in Man</two>). []
36
+ - In Bioinformatics: what is meant with <one>huge</one>? <one>Human genome equivalents</one>. []
37
+ - In Bioinformatics we may see <one>SAM</one> and <one>BAM</one>. How do these two relate to one another? <two>BAM</two> is essentially <one>compressed SAM</one>.
38
+ - <one>Gene Ontology</one> uses <two>which three ways</two> to group genes together? (1) <one>Where</one> 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>
39
+ - In Bioinformatics: why do we use <one>negative alignment scores</one> in residue pair alignments? This way we can <one>represent especially unlikely alignments</one>.
40
+ - Give an example for an <one>empirical matrix</one> used in bioinformatics. A: The <one>BLOSUM matrices</one>.
41
+ - <one>Welche Operationen</one> 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> []
42
+ - Is <one>BLAST</one> a <two>heuristic algorithm</two>? Yes. []
43
+ - In Bioinformatics: <one>SRS</one> stands short for ... ? <one>Sequence retrieval system</one>. []
44
+ - Does the <one>Smith-Waterman algorithm</one> use <two>negative scores</two>? No. []
45
+ - What kind of <one>PCR variant</one> is used in Roche/454-Pyrosequencing? An <one>emulsion PCR</one>. URL: https://pubmed.ncbi.nlm.nih.gov/26843044/ []
46
+ - Are <one>SAM files</one> stored in <two>plain text</two>? Yes. []
47
+ - 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 []
48
+ - In bioinformatics: <one>query of the GenBank database</one> is carried out via ... ? The <one>NCBI Entrez system</one>. URL: https://www.ncbi.nlm.nih.gov/Web/Search/entrezfs.html []
49
+ - The main barrier to linking different biological databases in bioinformatics is ... ? <one>Format incompatibility</one>. []
50
+ - Bei den <one>PacBio Sequencers</one>: nenne ein Problem ausser der <two>error rate</two>. A: Die Geschwindigkeit beim Sequenzieren ist nicht konstant. []
51
+ - In <one>BLAST</one>: is it better to have a low or a high <two>E value</two>? The lower the E-value, the more <one>significant</one> the match is. So we should ideally <one>prefer to have a very low lower E value</one>.
52
+ - <one>UniProt</one> is an abbreviation for ... ? <one>Universal Protein Resource</one>. URL: https://en.wikipedia.org/wiki/UniProt
53
+ - 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.
54
+ - What exactly is an <one>extant population</one>? This is <one>a population that is still existing</one>. []
55
+ - In <one>gene ontology</one> (<one>GO</one>), for proteins, we employ schemata that attempt to capture the entire complexity of protein functions. Name three different groups of <one>GOs</one> that are in use here, as a classification scheme. A: (1) <one>biological process</one> (2) <one>cellular component</one> (3) <one>molecular function</one>
56
+ - 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>
57
+ - What is a <one>gap penalty</one>? We need to penalize gaps in a sequence alignment.
58
+ - Name <one>three example alphabets from biology</one>. A: (1) the <one>alphabet of DNA nucleotides</one> (2) the <one>alphabet of RNA nucleotides</one> (3) the <one>alphabet of the 20 amino acids</one> []
59
+ - <one>How many new species are added</one>, per month, into <one>GenBank</one>? <one>1000</one>. []
60
+ - How do we call the results derived from a <one>Levensthein-Distance</one>? <one>Alignment</one>. []
61
+ - How can we compare two sequences qualitatively? Via a <one>scoring system</one>. []
62
+ - Nenne eine <one>Einschränkung</one> bei der Hamming-Distanz. A: Es wird bei der Hamming-Distanz <one>gleiche Sequenzlänge vorausgesetzt</one>. []
63
+ - Nenne ein "Antibiotikum", das durch metagenomische Forschung entdeckt wurde. A: <one>Turbomycin</one>.
64
+ - When was the <one>Protein databank</one> (PDB) created? In <one>1971</one>. (It was called <two>SEARCH</two> back then though). []
65
+ - Name two different <one>amino acid substitution scoring matrices</one>. A: (1) <one>BLOSUM-62</one> (2) <one>PAM-120</one> []
66
+ - Was ist eine <one>Transversion</one>? Eine Veränderung Purin zu Pyrimidin oder umgekehrt. []
67
+ - What is meant with the term <one>Taxonomic novelty</one>, in Bioinformatics? These are sequences without a close relative in a database.
68
+ - Name a simple mechanism for <one>generating scale-free networks</one>. A: <one>Preferential attachment</one> aka <two>the rich get richer</two>.
69
+ - Archetypical example for <one>homologous proteins</one>? The <one>globin family of proteins</one>. []
70
+ - What is an <one>ontology</one>? An <one>Ontology</one> is a formal representation of a set of concepts within a domain and the relationships between those concepts.
71
+ - <one>Overrepresented sequences</one> in <two>FastQC</two> may indicate ... ? <one>Adapters</one>. URL: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ []
72
+ - <one>Molekulare Taxonomie</one> basiert auf ... ? <one>Sequenzen</one>. []
73
+ - What do we mean with <one>pairwise alignment</one> in bioinformatics? This refers to <one>the process of lining up two sequences to achieve maximal levels of identity</one>.
74
+ - <one>When</one> was <two>FASTA</two> introduced? In the year <one>1988</one>.
75
+ - 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/
76
+ - In der <one>Genomik</one>: wer oder was liefert uns gute <two>Expressionsdaten</two>? <one>Microchips</one>.
77
+ - Wofür steht die "SCOP" Datenbank? <one>Structural classification of proteins</one>.
78
+ - Nenne die <one>zwei zentralen Paradigmen</one>/</one>Schlagwörter</one> in der Proteinevolution. A: (1) <one>Duplikation</one> (2) <one>Modifikation</one>
79
+ - Do we see <one>water molecules</one> in <two>RasMol</two>? No. []
80
+ - In Bioinformatics: what is a <one>superstring problem</one>? This is a problem where we have to find the shortest circular superstring that contains all possible k-mers as substrings.
81
+ - 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 []
82
+ - Is <one>homology</one> quantifiable? No. Either two sequences are homologous - or they are not. []
83
+ - When can we say that two sequences are homologous? They are homologous if they are <one>derived</one> from a <two>common ancestor</two>. []
84
+ - The <one>Smith-Waterman algorithm</one> was improved in <two>1982</two> by Gotoh. That improvement came by handling ... what exactly? <one>Multiple sized gap penalties</one>.
85
+ - What do we mean with <one>the Ontology of a database</one>? This is <one>the list of valid terms and their definitions</one>.
86
+ - What is <one>the main strength of a profile HMM</one>? <one>HMM</one> is a <two>probabilistic model</two>.
87
+ - Nenne mindestens <one>drei wichtige Bioinformatikdatenbanken</one>. A: (1) <one>Protein Data Bank</one> (<one>PDB</one>) (2) <one>GenBank</one> (3) <one>PIR</one> und <one>UniProt</one>
88
+ - In der Bioinformatik: was versteht man unter <one>Edit distance</one>? Die <one>Edit Distance</one> ist die <two>Minimalanzahl an Operationen</two> (zum Beispiel durch einfache Vertauschung), um Sequenz A in Sequenz B zu überführen.
89
+ - Wofür steht <one>BLOSUM</one>? <one>BLOcks SUbstitution Matrix</one>. URL: https://de.wikipedia.org/wiki/BLOSUM []
90
+ - How does <one>FASTQ</one> extend <one>FASTA</one>? It includes <one>a numeric quality score</one> <two>to each base in the sequence</two>.
91
+ - <one>Which three actions</one> could be performed should we wish to <two>calculate the edit distance</two> via the <three>Levensthein algorithm</three>? (1) <one>Insert</one> (2) <one>Delete</one> (3) <one>Replace</one> []
92
+ - <one>When</one> may we wish to use <two>PsiBLAST</two>? <one>PsiBLAST</one> is designed to be more sensitive than the original BLAST algorithm, so we may want to use it when we want to find <two>more distantly related proteins</two>.
93
+ - A. W. für <one>Backtracking</one> in der Bioinformatik? <one>Ableiten des Alignments</one>.
94
+ - What <one>main assumption</one> does <two>UPGMA</two> make? <one>UPGMA</one> assumes that sequences have evolved at a <two>constant equal rate</two>.
95
+ - In a <one>protein database</one>: what do we mean with <two>annotate</two>? This is all information other than the sequence.
96
+ - <one>Bioinformatic tools</one> can be sequence-based or structure-based. Which variant is more powerful? The <one>structure-based variant</one>. []
97
+ - Name a practical advantage of UNIX <one>text streams</one> in Bioinformatics. A: Text-Streams allow us to do processing on a <one>stream of data</one> rather than holding it all in memory.
98
+ - How to do an assignment in pseudocode? For example via <one>a := 5</one>. []
99
+ - The <one>main database containing protein sequences</one> together with their associated functional information is ... ? <one>UniProt</one>. URL: https://en.wikipedia.org/wiki/UniProt []
100
+ - Name <one>a sequencing technique</one> that requires a polymerase that is fixed to a surface. A: The <one>PacBio sequencing technique</one>.
101
+ - <one>ClustalW</one> creates what kind of tree? A <one>guide tree</one>. URL: https://www.biostars.org/p/70676/ []
102
+ - <one>Progressive alignment methods</one> represent the relationships between sequences in what form? As a <one>guide tree</one>. []
103
+ - 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>. URL: https://en.wikipedia.org/wiki/Combined_DNA_Index_System []
104
+ - <one>GOLD</one> steht für ... ? <one>Genomes OnLine Database</one>. URL: https://gold.jgi.doe.gov/
105
+ - When was <one>BLAST</one> first introduced? In <one>1989</one>. URL: https://en.wikipedia.org/wiki/BLAST_(biotechnology) []
106
+ - 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> []
107
+ - <one>ClustalW</one> was subsequently superseded by ... ? <one>Clustal Omega</one>.
108
+ - Was ist der Unterschied zwischen <one>primären</one> und "sekundären" Datenbanken? Sekundäre Datenbanken sind von primären Datenbanken abgeleitet. Primäre Datenbanken enthalten originale Information.
109
+ - In bioinformatics: two protein sequences can be regarded as <one>homologous</one> if the percentage sequence identity falls in the ... ? <one>safe zone</one>.
110
+ - <one>Wann</one> wurde die <two>Protein Data Bank</two> etabliert? Im Jahre <one>1971</one>.
111
+ - Nenne die drei grössten, primären Sequenzatenbanken weltweit. A: (1) <one>Genbank</one> (2) <one>EMBL</one> (3) <one>DDBJ</one>
112
+ - In a <one>Hidden Markov model</one>: what is meant with <two>silent states</two>? These are states that do not add to the sequence.
113
+ - In bioinformatics: <one>Scoring matrices</one> allow the computation of ... ? <one>optimal alignments</one>.
114
+ - In bioinformatics: the <one>sum-of-pairs score</one>, is used to assess ... ? <one>Multiple sequence alignments</one>.
115
+ - Which one contains more information: the <one>phylogram</one> or the <one>cladogram</one>? The <one>Phylogram</one>. 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.
116
+ - Name one solid reason why we may never be able to reconstruct the <one>true single tree of life</one>. 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.
117
+ - Nenne eine <two>Datenbank</two>, die sich dezidiert <one>Protein-Protein-Interaktionen</one> widmet. A: Die <one>STRING-Datenbank</one>.
118
+ - Ist ein <one>Progressives Alignment</one> eine <two>Heuristik</two>? Ja. []
119
+ - 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>. []
120
+ - What do we mean with a <one>reference genome</one>? This is <one>a prototypic example that is representative of an entire species</one>.
121
+ - Name a <peru>constraint</peru> of the <one>Hamming distance</one>. A: The <two>Hamming distance</two> is <one>only applicable for sequences equal in length</one>. []
122
+ - Nenne drei <one>bool'schen Operatoren</one>. A: (1) <one>AND</one> (2) <one>OR</one> (3) <one>NOT</one> []
123
+ - What are <one>exhaustive algorithms</one>? These are <one>algorithms</one> that essentially <two>try all possible solutions</two>.
124
+ - In Bioinformatics: what do we usually mean with the <one>Symbol S</one>? This represents a string. []
125
+ - 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>.
126
+ - <one>Parallel diagonal lines</one> within a dot-plot matrix represent ...? <one>Repetitive regions of the sequences</one>.
127
+ - What was the first <one>single-molecule sequencer</one>? <one>Helioscope</one>. URL: https://en.wikipedia.org/wiki/Helicos_single_molecule_fluorescent_sequencing
128
+ - The most basic sequence alignment method is ... ? The <one>dot matrix method</one>, as can be seen in a <two>dot plot</two>.
129
+ - In a given .pdb file, what is the <one>centroid</one> of a structure? This is <one>the average position of the atoms</one>.
130
+ - Wir beobachten <one>unabhängige Vererbung</one>. Worauf deutet dies hin? Das verantwortliche Gene auf unterschiedlichen Chromosomen vorzufinden sind. []
131
+ - Was heisst <one>Phi-Blast</one>? <one>Pattern-hit initiated BLAST</one>.
132
+ - How do we call the substring <one>S[1 . . . i]</one>? This is called the <one>prefix of S</one>. []
133
+ - Name the three general steps of the <one>Needleman-Wunsch approach</one>. A: (1) set up the matrix (2) score the matrix (3) <one>identify</one> the <two>optimal alignment</two>
134
+ - When we see a <one>BLOSUM matrix</one> with a high number, what can we infer from this? That this is a <two>BLOSUM matrix</two> designed for <one>comparing closely related sequences</one>.
135
+ - We can distinguish between global alignment and local alignment when doing sequence alignment. One of these two alignment strategies assumes that the two sequences have similarity over their entire length. Which one of these two does assume this? <one>Global alignment</one>.
136
+ - Simply put: <one>the overall goal of pairwise sequence alignment is ... </one>? <one>To find the best pairing of two sequences, such that there is maximum correspondence among residues</one>.
137
+ - Name an <one>enzyme database</one>. A: <one>Brenda</one>. URL: https://www.brenda-enzymes.org/ []
138
+ - In der Bioinformatik: was macht der <one>Smith-Waterman algorithm</one>? Er führt <two>local sequence alignments</two> durch. Das heisst er erkennt wie ähnlich zwei Strings zueinander sind.
139
+ - <one>IUPAC</one> uses the three letters <two>B</two>, 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)
140
+ - Current <one>biological databases</one> use which three types of database structures? (1) <one>flat files</one> (2) <one>relational</one> (3) <one>object oriented</one>
141
+ - In Bioinformatics: what is the <one>Hamming distance</one>? Given two strings, <two>the Hamming distance is the number of positions at which the corresponding symbols are different</two>. In another way, the Hamming distance 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>.
142
+ - Name the three commonly used <one>FASTQ quality schemes</one>/<one>scores</one> in use. A: (1) <one>Sanger</one> (fastq-sanger) (2) <one>Solexa</one> (fastq-solexa) (3) <one>Illumina</one> (<two>fastq-illumina</two>)
143
+ - In der Bioinformatik: was sind die <one>OTUs</one>? Dies sind die <one>Operational Taxonomic Units</one>, <two>relevant bei der Analyse von Stammbäumen</two> (<three>Phylogeny</three>). URL: https://en.wikipedia.org/wiki/Operational_taxonomic_unit
144
+ - In <one>gene ontology</one>: how do we technically describe <two>parentage</two>? Via <one>is_a</one> relationships.
145
+ - When was the <one>dot plot</one> introduced in Bioinformatics? <one>1970</one>, by Gibbs and McIntyre.
146
+ - <one>SRA size</one> is measured in ... bytes. A: <one>Petabytes</one>.
147
+ - In the <one>UniProt Database</one>: how many of these sequences, in percent, are reliable and work at the cellular level as well? About <one>15% only</one>.
148
+ - In order to determine the DNA sequence of an organism, two different methods have been very popular. Which ones? (1) The <one>ordered sequencing strategy</one>, also called "clone contig method" (2) The "shotgun sequencing approach", with random processing of the fragments
149
+ - In Bioinformatics: which two sets does a <one>graph</one> include? A graph includes a set of "vertices", and a set of "arcs".
150
+ - Die <one>wichtigste Referenzdatenbank</one> ist ... ? <one>PubMed</one>.
151
+ - The <one>most commonly used score for MSAs</one> is ... ? The <one>Sum of Pair Score</one>.
152
+ - How many entries did the <one>Protein Databank</one> (<two>PDB</two>) have in 1971 when it was just created? Only <one>7 entries</one>.
153
+ - What exactly do we mean with <one>dynamic programming</one>? This is an algorithm that allows us to <one>find an optimal solution</one>.
154
+ - In der Bioinformatik: was bedeutet die Abkürzung <one>PSSM</one>? <one>Position Specific Scoring Matrix</one>.
155
+ - <two>Warum</two> wird das <one>Jukes & Cantor</one> Modell verwendet? Diese Methode wird verwendet, um Distanzdaten, die aus einem Sequenzalignment stammen, zu korrigieren.
156
+ - Nenne einen wichtigen, wesentlichen Unterschied von KEGG zu anderen Datenbanken. A: <two>KEGG</two> besitzt eine deduktive Datenbank die es ermöglicht <one>Wirkdiagramme von Molekülen zu erstellen</one>.
157
+ - Name <one>one drawback of GenBank</one>. A: <two>GenBank</two> is <one>highly redundant</one>.
158
+ - Give another name for <one>Meta Databases</one>. A: <one>Database on Databases</one>. []
159
+ - Was gilt beim <one>Occams Razor</one>? Es sollte bei <one>widersprüchlichen Modellen</one> stets das einfachere gewählt werden.
160
+ - <one>We can sequence whole genomes</one>. Name the 5 steps, starting from <two>sequence reads</two>. A: (1) sequence reads (2) sequence contigs (3) scaffolds (4) <one>mapped scaffolds</one> (5) <one>genome map</one>
161
+ - Entries in <one>UniProtKB</one> are uniquely identified by ... ? Their <one>accession number</one>.
162
+ - Eine <one>Substitutionsmatrix für den Vergleich von Aminosäurensequenzen</one> beruht auf welchem Prinzip? Auf der <one>chemischen Ähnlichkeit von Aminosäuren</one>. []
163
+ - In bioinformatics: why do we use a <one>dot plot</one>? The dot plot is a graphical method that allows the <one>comparison of two biological sequences</one>.
164
+ - Give an example for <one>NGS to RNA</one>. A: <one>RNA-Seq</one>. URL: https://en.wikipedia.org/wiki/RNA-Seq []
165
+ - Was erlaubt einem die <one>O-Notation</one> in der Informatik? Ein <one>Abschätzen des Wachstums einer Funktion</one>.
166
+ - <one>BRENDA</one> was originally an acronym for ... ? The <one>Braunschweig Enzyme Database</one>. URL: https://en.wikipedia.org/wiki/BRENDA
167
+ - Nenne einen Algorithmus in der Bioinformatik, der mit dem Buchstaben <one>G</one> beginnt und sich mit Alignment von Sequenzen beschäftigt. A: Der <one>Gotoh-Algorithmus</one>. URL: https://de.wikipedia.org/wiki/Gotoh-Algorithmus []
168
+ - In Phylogenetics: internal nodes may also be called <one>HTU</one>. What does the word <one>HTU</one> mean? <one>Hypothetical taxonomic units</one>. URL: https://en.wiktionary.org/wiki/hypothetical_taxonomic_unit []
169
+ - Is <three>BLAST</three> <one>local alignment</one> or <one>global alignment</one>? <one>Local alignment</one>. []
170
+ - All <one>major flatfiles</one> in Bioinformatics include which 3 major parts? (1) The <one>header</one> (2) The <one>feature</one> (3) The <one>nucleotide sequence</one> itself
171
+ - What does <one>Ion Torrent</one> detect? It detects <one>hydrogen ions (H⁺)</one>.
172
+ - When was the term <one>chemoinformatics</one> defined? In the year <one>1998</one>. []
173
+ - What can we see as the <one>cancer hub</one> in human cells? The protein <one>p53</one>.
174
+ - In Pseudocode: <two>how to end</two> a conditional <one>if</one>-statement? Via <one>end if</one>.
175
+ - From a bioinformatics point of view: how do we call <one>insertions</one> or <one>deletions</one>? A <one>gap in the alignment</one>.
176
+ - <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 <two>high one</two>. It means <one>high accuracy</one>.
177
+ - The golden rule of applied bioinformatics is ... ? To not trust your tools or data.
178
+ - How do we call the <one>topmost node</one> in a tree? The <one>root node</one>. []
179
+ - 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.
180
+ - What means <one>identity</one> in bioinformatics? Identity describes the degree to which two or more sequnces are identical at each position.
181
+ - 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 []
182
+ - 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/ []
183
+ - 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.
184
+ - <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>
185
+ - Name two methods that are commonly used in <one>structural genomics</one>. A: (1) <one>NMR</one> (2) <one>X-ray crystallography</one>
186
+ - A. W. für <one>dotplot</one>? <one>2D-Matrix</one>. []
187
+ - In <peru>Bioinformatics</peru>: we assume that two sequences are homologous if ... ? If they are <two>derived</two> from a <one>common ancestor</one>. []
188
+ - In phyologeny: <one>multifurcation</one> at a leaf means how many branches? At the least 3 branches. []
189
+ - 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> []
190
+ - 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.
191
+ - 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.
192
+ - <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>. []
193
+ - 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 []
194
+ - 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.
195
+ - Wann wurde die Technik des <one>dynamischen Programmierens</one> eingeführt? <one>1953</one>. URL: https://de.wikipedia.org/wiki/Dynamische_Programmierung []
196
+ - What match may we expect from a <one>decoy database</one>? <one>Not a true match</one>.
197
+ - 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 []
198
+ - What is a <one>nr-database</one>? A <one>non-redundant database</one>. []
199
+ - Das Programm <one>glimmer</one> benötigt Genomannotationen in welchem Format? Im <one>GFF Format</one> (<two>.gff</two>). []
200
+ - In Bioinformatics: what are <one>variables</one>? These are <one>structures which can hold data</one>.
201
+ - Was ist eine <one>Metadatenbank</one>? Darstellung aller verfügbaren "biologischen" Datenbanken.
202
+ - Why do we not use the <one>Smith-Waterman algorithm</one> for very large databases? Because <one>it would be way too slow</one>! []
203
+ - Name one <one>SNP database</one>. A: The <one>public dbSNP database</one>. URL: https://en.wikipedia.org/wiki/DbSNP
204
+ - Allgemein formuliert: wann verwenden wir die <one>Hamming distance</one>? Beim <one>Sequenzvergleich</one>.
205
+ - In BLAST: what does the name "E value" stand for? <one>Expect value</one>.
206
+ - 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 []
207
+ - Was findet der <one>Needleman-Wunsch Algorithmus</one>? Er findet die minimale Distanz bei globalen paarweisen Alignments.
208
+ - Why do we employ the <one>Nussinov algorithm</one>? We use this algorithm to <one>predict possible RNA secondary structure</one>.
209
+ - Why is <one>BLOSUM62</one> so widely used? Because it is fairly good at <one>detecting distant relationships</one> between proteins.
210
+ - 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>.
211
+ - Give one example of a famous <one>nonredundant database</one>. A: <one>RefSeq</one>.
212
+ - 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 []
213
+ - In the <one>Burrows-Wheeler Transformation</one>, we first have to generate all rotations, followed by ... ? Sorting them <one>lexicographically</one>.
214
+ - <one>Pubmed</one> ist verfügbar seit ... ? <one>1966</one>. URL: https://de.wikipedia.org/wiki/PubMed []
215
+ - 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 []
216
+ - Anderes Wort für ein <one>Sequence Pattern</one>? A: <one>Motif</one>. []
217
+ - In der <one>Bioinformatik</one>: wie heisst <two>die älteste Motivdatenbank</two>? <one>PROSITE</one>, <two>1988 erstellt</two>. []
218
+ - In der Bioinformatik: wofür steht die Abkürzung "VEGA"? <one>Vertebrate Genome Annotation</one>.
219
+ - Was erreicht man Dank der <one>SMART Datenbank</one> in der Bioinformatik? Eine Beschreibung von Proteindomänen.
220
+ - 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>.
221
+ - In <one>DNA Barcoding</one> gibt es COI. Was heisst COI? mitochondrial cytochrome oxidase I gene.
222
+ - 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.
223
+ - The plural form of a <one>taxon</one> is ... ? <one>Taxa</one>. []
224
+ - 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
225
+ - Was ist ein <one>Mnemonic</one>? Ein Begriff der das Memorieren erleichtern soll.
226
+ - <three>Which algorithm</three> is commonly used for <one>Maximum Parsimony</one>? The <one>Fitch's algorithm</one>. []
227
+ - When is <one>GenBank</one> updated? <one>Every two months</one>. []
228
+ - Das <one>Abschätzen der Wachstum einer Funktion</one> wird womit erreicht? Mit Hilfe der <one>O-Notation</one>. []
229
+ - <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 []
230
+ - 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>
231
+ - Kann ein <one>progressives alignment</one> durch iterative Methoden verbessert werden? Ja. []
232
+ - By comparing sequences through alignment, patterns of ... can be identified. A: Patterns of <one>conservation</one>.
233
+ - Was heisst <one>homoplasy</one> wortwörtlich? <one>Selbe Form</one>.
234
+ - <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. []
235
+ - Wann wurde die <one>Roche-454 Pyrosequenzierung</one> erfunden? <one>1996</one>. []
236
+ - Was heisst <one>BLAST</one>? <one>Basic Local Alignment Search Tool</one>. URL: https://en.wikipedia.org/wiki/BLAST_(biotechnology) []
237
+ - 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>) []
238
+ - <one>BLAST2</one>: why the 2 there? The <two>2</two> stands for the <one>Two-hit-method</one>.
239
+ - <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.
240
+ - Was ist die kleinste Einheit in der Taxonomie? Das <one>Taxon</one>. []
241
+ - 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 []
242
+ - 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>
243
+ - Wie nennt <one>PacBio</one> ihre <three>flowcell</three>? <one>Smart cell</one>. URL: https://www.pacb.com/smrt-science/smrt-sequencing/ []
244
+ - In <one>FASTQ</one>: the <three>description line begins with which character</three>? <one>@</one>. []
245
+ - Woher kommt der Name <one>RasMol</one>? Er kommt von <one>raster display of molecules</one>. []
246
+ - Andere Bezeichnung für die <one>Distanz zwischen Zeichenfolgen</one>? <one>Hamming-Distanz</one>. []
247
+ - 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.
248
+ - What is a <one>clade</one>? A set of descendants from a single ancestor.
249
+ - 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>
250
+ - In Bioinformatics we have the <one>BAM files</one>. What does this stand for? <one>BAM</one> means <two>Binary Sequence Alignment</two>.
251
+ - In der Bioinformatik: warum sind <one>Bootstrapwerte</one> hilfreich? Sie <one>geben Auskunft darüber, wie konsistent der Datensatz ist</one>.
252
+ - What can we do with the program <one>GRAIL</one>? We can <one>identify genes in a database</one>.
253
+ - 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>).
254
+ - Nenne einen <one>Algorithmus</one>, der als <three>Modell für Mutationsereignisse</three> dienen kann. A: Die <one>Maximum-likelihood Algorithmen</one>.
255
+ - Give another name for a <one>rooted tree</one>. A: A <one>dendrogram</one>. []
256
+ - In Bioinformatics or Statistics: what does <one>VCF</one> stand for? The <one>Variant Call Format</one>.
257
+ - 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>.
258
+ - 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. []
259
+ - Seit wann ist der <one>Algorithmus zur Levenshtein-Distanz</one> bekannt? Seit <one>1965</one>. []
260
+ - Give another word for <one>taxa</one>. A: <one>Operational taxonomic units</one>.
261
+ - What does a <one>Cladogram</one> show? It portrays the hierarchy of sister groupings between taxa, in a branching diagram.
262
+ - In Bioinformatics: <one>TrEMBL</one> stands for ... ? <one>Translated EMBL</one>. URL: http://www.bioinfo.pte.hu/more/TrEMBL.htm []
263
+ - Name a <one>multiple alignment program</one>. A: <one>ClustalW</one>. []
264
+ - 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.
265
+ - In <one>1997</one>: what was the upper limit of the database <two>GenBank</two>? (in KB) A: <one>350 kb</one>. []
266
+ - 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.
267
+ - Why the name <one>UniProt</one> for this database? <one>UniProt</one> stands for <two>universal protein database</two>. []
268
+ - 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.
269
+ - Explain this statement: <one>'Homology is a qualitative inference'</one>. A: This simply means that sequences are homologous - or they are not. []
270
+ - Name <one>a substitution matrix</one> used for sequence alignment of proteins. A: <one>BLOSUM</one>. URL: https://en.wikipedia.org/wiki/BLOSUM []
271
+ - In Bioinformatics, in the <one>Levensthein distance</one>: what means <three>Transposition</three> event? The <two>swapping</two> <one>of two characters</one>. []
272
+ - <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>. []
273
+ - How do we call the <one>default fragment length</one> in <two>FASTA</two>? <one>k-tup</one>. []
274
+ - Why the name <one>dotplot</one>? Because in a dotplot, a <one>dot</one> is used to denote sequences that are similar.
275
+ - 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>.
276
+ - 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>. []
277
+ - 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".
278
+ - What do we mean with the <one>biologically correct alignment</one>? This is <one>the alignment reflecting the true evolutionary history</one>.
279
+ - A <two>FASTA file</two> may include <one>ASN.1</one>. This abbreviation stands for ... ? <one>Abstract Syntax Notation One</one>.
280
+ - Name <one>a multiorganism genotype-phenotype database</one> that begins with the letter <three>P</three>. A: The <one>PhenomicDB database</one>.
281
+ - A <one>Markov chain</one> is traversed how? It is <one>traversed from state to state</one>, producing a <two>sequence of states</two>.
282
+ - 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. []
283
+ - Name 3 different ways how <one>multiple sequence alignments</one> can happen. A: (1) progressive (2) iterative (3) blockwise
284
+ - Give an example for <one>positive feedback</one> in biology. A: The conversion of Trypsinogen to Trypsin.
285
+ - 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>. []
286
+ - 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 []
287
+ - 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>
288
+ - 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>.
289
+ - Wie heisst der <one>Identifier</one> beim FASTA Format? A: <one>Accession Number.Version Number</one>.
290
+ - Name <one>a program</one> with which we could compare two (different) viral sequences. A: <one>MUMmer</one>. URL: https://mummer.sourceforge.net/ []
291
+ - Andere Bezeichnung für <one>law of parsimony</one>? <one>Occam's razor</one>. URL: https://en.wikipedia.org/wiki/Occam%27s_razor []
292
+ - 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> []
293
+ - Was ist eine <one>binäre Antwort</one>? Eine <one>Ja</one>/<one>Nein Antwort</one>. []
294
+ - 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>) []
295
+ - Wie kann man einen <one>Dotplot</one> verbessern? Durch den <one>Einsatz von Filtern</one>. []
296
+ - 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> []
297
+ - Der <one>FASTA-Algorithmus</one> hat wieviele Phasen? <one>4</one>. []
298
+ - Was bildet die Grundlage für das Quantifizieren der Sequenzähnlichkeit zwischen zwei Sequenzen? <one>Scores</one>.
299
+ - 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. []
300
+ - What is <one>High-dimensional data</one>? That is data that requires more than two or three dimensions to represent.
301
+ - 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.
302
+ - 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.
303
+ - Name one type of data that <one>GenBank</one> excludes. A: <one>Next-generation sequencing data</one>. []
304
+ - Name 3 different types of <one>Phylogenetic Trees</one>. A: (1) cladogram (2) additive tree (3) <one>ultrametric tree</one>
305
+ - Wie werden die <one>Strafpunkte</one> beim <two>globalen alignment</two> genannt? <one>Affine gap costs</one>. []
306
+ - Was findet der <one>Needleman-Wunsch Algorithmus</one>? Er findet die <one>minimale Distanz bei globalen, paarweisen Alignments</one>.
307
+ - <one>Starlight</one> uses ... to achieve <three>single-molecule sequencing</three>. A: <one>quantum dots</one>. []
308
+ - 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.
309
+ - Wofür steht das <peru>tr</peru> in <one>trEMBL</one>? <one>Translated</one>. []
310
+ - 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>.
311
+ - <one>ExPASy</one> stands for ...? <one>Expert Protein Analysis System</one>.
312
+ - In NGS, we have <one>SMRT sequencing</one>. This stands for ... ? <one>Single molecule real-time</one> sequencing.
313
+ - 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>. []
314
+ - What is the name of the most famous <one>local alignment algorithm</one>? The <one>Smith-Waterman algorithm</one>.
315
+ - 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
316
+ - 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.
317
+ - The <one>post genomic era</one> allowed the formation of which science-division? <one>Proteomics</one>.
318
+ - What means <one>UNA</one> in GenBank's data file entry? <one>Unannotated sequences</one>.
319
+ - 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. []
320
+ - Who hosts <one>GenBank</one>? <one>NCBI</one> does. []
321
+ - 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.
322
+ - 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.
323
+ - The path in the <one>Needleman and Wunsch algorithm</one> describes what? The <one>alignment of the (two) sequences</one>.
324
+ - Name a software-tool for the identification of motifs. A: <one>COPIA</one>.
325
+ - Is <one>homology</one> (in bioinformatics) measured in degrees? No - genes are either homologous or they are not. []
326
+ - 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>. []
327
+ - 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. []
328
+ - When was the <one>Levenshtein distance</one> sequence alignment algorithm first suggested? In <one>1965</one>.
329
+ - Name the 3 <one>principal genome browsers</one>. A: (1) Ensembl (2) UCSC (3) <one>NCBI</one>
330
+ - 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>.
331
+ - The <one>PDB database</one> held how many structures in April 2020? <one>163141 structures</one>. []
332
+ - Name a <one>major database for human disease</one>. A: <one>OMIM</one>. URL: https://www.omim.org/ []
333
+ - 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.
334
+ - Name a specific way in bioinformatics to search for protein sequences. A: <one>BLASTp</one>. URL: https://en.wikipedia.org/wiki/BLAST_(biotechnology) []
335
+ - Is a <one>De Bruijn graph</one> a <three>multigraph</three>? Yes. []
336
+ - 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.
337
+ - In bioinformatics: are <one>curated databases</one> considered to be <two>secondary databases</two>? Yes. []
338
+ - 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. []
339
+ - 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>.
340
+ - <one>UniProt</one> stores protein sequences and their annotations where? In <one>UniProtKB</one>, also known as <one>the UniProt Knowledgebase</one>.
341
+ - 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.
342
+ - The <one>CAZy</one> database ... the CAZy stands for ... ? <one>Carbohydrate active enzyme database</one>.
343
+ - Was sagt die <one>statistische Signifikanz</one> eines Experimentes aus? Sie sagt etwas über die Erklärbarkeit eines Resultats mit Hilfe des Zufalles aus.
344
+ - What is a <one>Hamiltonian path</one>? This is a path that <one>visits each vertex exactly (and only) once</one>.
345
+ - In general: how can the <one>Levenshtein distance</one> be computed? Via <one>dynamic programming</one>. []
346
+ - <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>
347
+ - Nenne zwei Methoden zur <one>Community Profiling</one>. A: (1) <one>DGGE</one> (2) <one>t-RFLP</one>
348
+ - 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>. []
349
+ - The <one>third generation</one> of sequencing machines have which part in common? They all aim at <one>avoiding the amplification step</one>. []
350
+ - What is a <one>multiple sequence alignment</one>? This is when we <one>align more than 2 sequences</one>.
351
+ - 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. []
352
+ - How can we define <one>similarity</one> in bioinformatics? Similarity is a quantitative measure of how related two sequences are to one another.
353
+ - Beschleunigt ein <one>guide tree</one> eine Berechnung? Ja. []
354
+ - In Bioinformatics: what does <one>UPGMA</one> stand for? Unweighted Pair Group Method with Arithmetic Mean.
355
+ - <one>UniProt</one> versus <one>SwissPROT</one>: which of these two databases has a <three>higher quality</three>, on average? <one>SwissPROT</one>. []
356
+ - 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>.
357
+ - 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>.
358
+ - Is the <one>Needleman-Wunsch algorithm</one> useful for database searches? No. []
359
+ - The <one>SAM format</one>: what does SAM stand for? <one>Sequence Alignment</one>/<one>Map</one>.
360
+ - Are <one>Transitions</one> more frequent than <one>Transversions</one>? Yes. []
361
+ - 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.
362
+ - In bioinformatics: can <one>literature databases</one> be classified as <two>secondary databases</two>? Yes. []
363
+ - <one>KEGG</one> consists of how many different database? <one>16</one>.
364
+ - 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.
365
+ - What do we mean with the software <one>ApE</one>? This is <one>A plasmid Editor</one>.
366
+ - Does a <one>contig</one> have gaps? No. []
367
+ - Name the three steps in <one>dynamic programming</one>. A: (1) Initialization (2) Fill the matrix (3) <one>Traceback</one>
368
+ - Die <one>wichtigste Datenbank für Proteinsequenzen</one> ist ... ? <one>UniProt</one>. URL: https://www.uniprot.org/ []
369
+ - Why are <one>ESTs</one> useful in bioinformatics? Because they <one>indicate</one> - and help identify - <one>expressed genes</one>.
370
+ - Andere Bezeichnung, ebenso auf Englisch, für <one>Parsimony</one>? <one>Minimum evolution</one>. []
371
+ - Die <one>Bewertung des paarweisen Sequenzvergleichs</one> erfolgt mit Hilfe ...? Einer <one>Substitutionsmatrix</one>. []
372
+ - Wann wurden <one>Hidden Markov Modelle</one> erstmals in der Bioinformatik eingesetzt? Im Jahre <one>1992</one>. []
373
+ - 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>
374
+ - What are <one>extant species</one>? Exant species are <one>currently living species</one>. []
375
+ - Beim <one>Log odds ratio</one> gibt es einen Bruch. Was steht im Zähler, was im Nenner? P(obs) / P(prior)
376
+ - 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>. []
377
+ - 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.
378
+ - 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>.
379
+ - 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".
380
+ - <one>Graphs</one> preserve ... relations. A: <one>neighborhood</one>.
381
+ - 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>.
382
+ - <three>Bioinformatic resources</three> come in which <one>two main flavors</one>? (1) <one>algorithms</one> (2) <one>databases</one>
383
+ - Name <one>5 KEGG databases</one>. A: (1) KEGG PATHWAY (2) KEGG BRITE (3) KEGG MODULE (4) KEGG DISEASE (5) KEGG DRUG
384
+ - 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>.
385
+ - 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>.
386
+ - Name two different <one>substitution matrices</one> in Bioinformatics. A: (1) <one>BLOSUM</one> (2) <one>PAM</one> []
387
+ - Was heisst <one>multifurcation</one> in der Bioinformatik? Das aus einem Ast mehr als zwei Äste entspringen.
388
+ - 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.
389
+ - 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 []
390
+ - 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.
391
+ - 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>
392
+ - How many <one>degrees of homology</one> exist? There are <one>no degrees</one> - <two>sequences are either homologous or they are not</two>. []
393
+ - In <peru>phylogeny</peru>: can there be <one>rooted trees</one> <two>without a known root</two>? Yes. []
394
+ - Give a slightly longer name for <one>bioinformatics</one>. A: <one>Biological informatics</one>.
395
+ - In Bioinformatics, for a <one>suffix tree</one>, every <three>internal node</three> has at least how many children? <one>Two</one>. []
396
+ - 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>.
397
+ - 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. []
398
+ - In <one>bioinformatics</one>: give an example for <one>a prominent secondary database</one>. A: <one>SWISS-PROT</one>
399
+ - 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>
400
+ - How can <one>a phylogenetic tree</one> help us in general? It allows us to reconstruct evolutionary paths and thus help deduce functional conservatism.
401
+ - 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>.
402
+ - Nenne zwei Algorithmen die auf den <one>paarweisen Sequenzvergleich</one> setzen. A: (1) <one>Needleman-Wunsch Algorithm</one> (2) <one>Smith-Waterman Algorithm</one> []
403
+ - Give an example for a <one>substitution matrix</one>. A: The <one>BLOSUM-62 substitution matrix</one>. URL: https://en.wikipedia.org/wiki/BLOSUM []
404
+ - Wann wurde der <one>Smith-Waterman Algorithm</one> vorgeschlagen? <one>1981</one>.
405
+ - When was the <one>BLAST algorithm</one> developed? <one>1990</one>.
406
+ - In Bioinformatics: what does the abbreviation <one>NGS</one> stand for? <one>Next Generation Sequencing</one>. []
407
+ - Wann wurde <one>BLOSUM</one> entwickelt? <one>1992</one>.
408
+ - When do we make use of <one>local alignment</one>? When we may have only one common domain.
409
+ - In a <one>suffix array</one>: which character is typically the special <three>sentinel letter</three>? <one>$</one>. []
410
+ - A. W. für <one>gap penalties</one>? <one>Affine gap costs</one>.
411
+ - Wann wurden die <one>ESTs</one> eingeführt? A: <one>1993</one>. []
412
+ - How is a <one>clade</one> defined? A clade is a group consisting of an ancestor and all its descendants.
413
+ - Der wichtigste Datenträger in der Molekularbiologie ist ... ? <one>DNA</one>. []
414
+ - Are <one>negative scores</one> essential for local alignments? Yes. []
415
+ - 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. []
416
+ - Name a famous database accessible from <three>Entrez</three>, that contains <one>biomedical literature</one>. A: <one>PubMed</one>. []
417
+ - 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>. []
418
+ - <one>Progressive alignment methods</one> in bioinformatics, have how many steps? <one>Two</one>. []
419
+ - 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.
420
+ - Is <one>Parsimony</one> model-free? No, not really, even though this is often assumed. []
421
+ - The <one>quality of bioinformatics predictions</one> depends on the sophistication of the algorithms being used and ... ? <one>the quality of the data</one>.
422
+ - What is <one>cladistics</one> all about? Identifying clades within clades from the distribution of characters inherited by resulting species.
423
+ - <one>FASTQ</one> is typically used where? In <one>Next-Generation sequencing analysis</one>.
424
+ - In <one>formal bioinformatics</one>: what does <one>|S|</one> indicate? <one>|S|</one> denotes <two>the length of a string S</two>. []
425
+ - 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.
426
+ - 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>.
427
+ - When may we wish to use <one>blastx</one>? When we wish to search protein databases using a translated nucleotide query.
428
+ - Die Klassifikationseinheit ist in <one>SCOP</one> ...? Die <one>Proteindomäne</one>.
429
+ - <one>The first bioinformatics database</one> was created by which person? <one>Margaret Dayhoff</one>. URL: https://en.wikipedia.org/wiki/Margaret_Oakley_Dayhoff []
430
+ - In der Bioinformatik: nenne ein Beispiel für die <one>Poisson-Verteilung</one>. A: Das zufällige Auftreten einer Mutation in einer langen Sequenz.
431
+ - Name <one>a pioneer in Bioinformatics</one>. A: <one>Margaret Dayhoff</one>. []
432
+ - In <one>UPGMA</one>, how do we start? We build a <one>distance matrix</one> and start with the two most closely related sequences.
433
+ - How do we call the substring <one>S[j . . . |S|]</one>? This is called <one>suffix of S</one>. []
434
+ - The term <one>bioinformatics</one> was coined in the year ... ? <one>1978</one>. []
435
+ - 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.
436
+ - In a <one>hidden markov model</one>: can a <two>transition</two> go directly back to the same state? Yes. []
437
+ - In a <one>dotplot</one>: when will we use a dot? When the <one>two elements are equal</one>.
438
+ - In bioinformatics: the <one>best-known genotype-phenotype database</one> is ... ? The <one>Online Mendelian Inheritance in Man (OMIM) database</one> of the NCBI.
439
+ - The <one>FASTA-family</one> uses which BLOSUM by default? <one>BLOSUM50</one>. []
440
+ - Name a database used in bioinformatics that makes use of <one>regular expressions</one>. A: <one>PROSITE</one>.
441
+ - <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.
442
+ - Bedeutet <one>BLOSUM50</one> <three>50% Ähnlichkeit zwischen zwei Sequenzen</three>? Ja. []
443
+ - In der <one>PAM Substitutionsmatrix</one>: was eigentlich heisst <three>PAM</three>? <one>Percent Accepted Mutations</one>. (1 akzeptierte Punktmutation pro 100 Reste.) []
444
+ - In bioinformatics: <one>primary databases</one> contain ... ? <one>Primary sequence information</one>, such as the nucleotide sequence or the protein sequence.
445
+ - Nenne einen Nachteil der <one>primären Sequenzdatenbanken</one> in der Bioinformatik. A: <one>Fehlende Qualitätsprüfung</one>.
446
+ - The first algorithm for comparing protein or DNA sequences was published by Needleman and Wunsch in ... which year? <one>1970</one>.
447
+ - Who developed the <one>Entrez database</one>? The <one>NCBI</one>.
448
+ - In der Bioinformatik: was ist eine <one>SP-Funktion</one>? <one>Sum-of-pair</one> Funktion.
449
+ - Give another name for the term <one>Immunoinformatics</one>. A: <one>Computational immunology</one>.
450
+ - Was ist die <one>feature table</one> bei der Annotation? Dieser Eintrag enthält Angaben zum Organismus, aus dem die DNA stammt.
451
+ - How many genomes have been sequenced as of the year <one>2013</one>? About <one>3000</one>.
452
+ - Wann wurde die <one>PROSITE Datenbank</one> erstellt? <one>1988</one>.
453
+ - <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>).
454
+ - 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>. []
455
+ - 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> []
456
+ - What does the abbreviation <one>MIAME</one> stand for, in bioinformatics? <one>Minimum information about a microarray experiment</one>.
457
+ - <one>FASTQ</one> uses a <two>Quality score</two>, which starts at 0 and can go up to ... ? <one>40</one>.
458
+ - A <one>FASTA file</one> contains which two parts, in general? (1) a <one>description</one> (2) the <one>sequence data</one>
459
+ - Who was the <one>predecessor</one> to <two>FASTA</two>? <one>FASTP</one>.
460
+ - <one>Data splitting</one> in der Bioinformatik meint meistens ... ? Daten in subsets aufteilen und diese auf einem cluster zu parallelisieren.
461
+ - <one>UPGMA</one> uses what kind of matrix? <one>UPGMA</one> uses a <two>distance matrix</two>.
462
+ - 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>.
463
+ - 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/
464
+ - Was sagt die <one>statistische Signifikanz</one> eines Experimentes aus? Sie sagt etwas über die Erklärbarkeit eines Resultats mit Hilfe des Zufalles aus.
465
+ - 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.
466
+ - Bei der <one>KEGG database</one>: wofür steht <two>KEGG</two>? <one>Kyoto Encyclopedia of Genes and Genomes</one>.
467
+ - <one>DNA Barcoding</one> beruht auf welchem Verfahren? Auf der <one>Anwendung der Polymerase-Kettenreaktion</one> (<two>PCR</two>).
468
+ - 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>.
469
+ - Wie geht die <one>Laplace-Formel</one>, erklärt? <one>Anzahl günstiger Ereignisse</one> dividiert durch die <two>Anzahl möglicher Ereignisse</two>.
470
+ - In computer science we know of a <one>suffix tree</one>. Give another name for it. A: A <one>position tree</one>.
471
+ - In a <one>HMM</one> (<two>Hidden Markov Model</two>), transition between states has an assigned ...? <one>Probability</one>.
472
+ - The <one>Hamming distance</one> considers only what? It considers only <one>point mutations</one>.
473
+ - 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>.
474
+ - How much does it <one>cost</one> to sequence a human genome in the year 2015? About <one>$1000</one>.
475
+ - What is the <one>ABI 3130xl</one>? A machine used to <one>automate Sanger sequencing</one>.
476
+ - 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>.
477
+ - In der <peru>Bioinformatik</peru>: was heisst <one>PAM</one>? <one>Percent Accepted Mutation Matrix</one>.
478
+ - Name a shortcoming of the <one>Sum of Pair Score</one>. A: It does not consider phylogeny.
479
+ - What is the <one>holy grail of Bioinformatics</one>? The automatic construction of Metabolic Models from Sequenced Genomes.
480
+ - 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.
481
+ - In <one>ClustalW</one>: what does the <two>W</two> stand for? It stands for <one>weighted</one>.
482
+ - 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.
483
+ - 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>.
484
+ - 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.
485
+ - 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.
486
+ - 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>.
487
+ - 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.
488
+ - What feature does <one>dbEST</one> give its users? Access to <one>expressed sequence tags</one>.
489
+ - <one>Gaps</one> in alignment, in bioinformatics, can be of which two types? (1) <one>internal</one> (2) <one>terminal</one>
490
+ - In der Bioinformatik: wozu können wir <one>Hidden Markov Modelle</one> praktisch einsetzen? Zum <one>Detektieren von splice-Stellen</one>.
491
+ - What do we mean with <one>Pseudocode</one> in bioinformatics? This is a language used by computer scientists to describe algorithms.
492
+ - <one>PSI-BLAST</one> is a kind of <two>hybrid program</two> in between ... and ... ? (1) <one>BLAST</one> (2) <one>HMMs</one>
493
+ - Was ist die elementare <one>Voraussetzung</one> für <two>Sequenzevolution</two>? <one>Mutationen</one>.
494
+ - In <one>Bioinformatics</one>: what is meant with the term <one>RefSeq</one>? This is <one>the NCBI's Reference Sequences database</one>.
495
+ - Der <one>euklidische Abstand</one> ist ein Spezialfall der ...? <one>Minkonski Distanz</one>.
496
+ - Give an example where <one>HMMs</one> have been used in bioinformatics, as an algorithm. A: <one>Gene-finding algorithms</one>.
497
+ - What is <one>the most common bioinformatics task</one>? Given a query sequence, <one>find all similar sequences in a large database</one>.
498
+ - Name two drawbacks of <one>ClustalW</one>. A: (1) Once a gap, always a gap (2) Guide tree bias
499
+ - How do "RefSeq" entries look like? For instance, NP_619745.1 URL: https://www.ncbi.nlm.nih.gov/protein/NP_619745.1
500
+ - Nenne eine praktische Einsatzmöglichkeit eines Dotplots. A: Wenn man die Struktur zweier verschiedener Genome vergleichen möchte.
501
+ - Why are there so many different BLOSUM matrices? Because there is no one correct scoring scheme for all circumstances.
502
+ - 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.
503
+ - In der Bioinformatik, was ist allgemein ein "Alignment"? Das ist das Arrangieren von identischen oder ähnlichen Buchstaben zwischen mindestens 2 Sequenzen.