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,531 @@
1
+ # =========================================================================== #
2
+ # === Prokaryote Genetics
3
+ #
4
+ # Contains questions about Bacteria, especially in regards to genetics.
5
+ #
6
+ # Preferentially store prokaryotice genetics here in this section.
7
+ # Also applied bacterial genetics. (Bacteria tag. Prokaryote tag. Prokarya
8
+ # tag. Bact tag, Bakt tag. Bakterien tag, Bac tag. Prokaryotes tag.
9
+ # Prok Tag. Ecoli tag, Plasmid tag, Prok2 tag.
10
+ # =========================================================================== #
11
+
12
+ - <one>UAS (upstream activator sequences)</one> sind in etwa wie lange? Etwa <one>20 bp</one> lang.
13
+ - Der σ-Faktor bindet etwa wieviele Nukleotide stromaufwärts von der Transkriptionsstartelle? Etwa <one>-35 Nukleotide</one> stromaufwärts.
14
+ - An die -35 Box bindet ... ? Der <one>σ-Faktor</one>.
15
+ - When <i>E. coli</i> is mutated in the <one>dam-gene</one>, what may be the consequence of this? <one>dam</one> codes for a <two>DNA adenine methylase</two>. The mutation will block methylation of adenine residues in the recognition sequence 5'-G*ATC-3'.
16
+ - What is <one>the major helicase of E. coli</one>? The <one>DnaB protein</one>. URL: https://en.wikipedia.org/wiki/DnaB_helicase []
17
+ - <one>Which species</one> has <two>the most CRISPR clusters</two>? <one>Chloroflexus</one>. URL: https://www.sciencedirect.com/topics/biochemistry-genetics-and-molecular-biology/chloroflexus-aurantiacus
18
+ - Nenne ein Antibiotikum das die bakterielle Polymerase hemmen kann und mit dem Buchstaben 'R' beginnt. A: <one>Rifampicin</one>.
19
+ - <i>Escherichia coli</i> besitzt eine <one>RNA-Polymerase</one> bestehend aus n Untereinheiten. A: <one>Fünf</one> (5) Untereinheiten.
20
+ - Andere Bezeichnung für das <one>F' Plasmid</one>? <one>Substituiertes F-Plasmid</one>.
21
+ - Unterscheiden sich die einzelnen <one>lacO-Sequenzen</one> (<two>lacO1</two>, <two>lacO2</two>, <two>lacO3</two>) im lac-Operon voneinander, qualitativ betrachtet? Ja - sie haben <one>eine unterschiedliche relative Affinität zum lac-Repressor</one>. Von den drei Sequenzen hat lacO1 die höchste Affinität.
22
+ - Wir teilen <one>Plasmide</one> in verschiedene <two>Kompatibilitätsgruppen</two> ein. Welches Kriterium ist hierbei das Entscheidene? Der <one>Replikationsursprung</one> dieser Plasmide.
23
+ - Are <one>F-Pili</one> <two>involved in DNA transfer</two>? No, at the least not directly - they only bring two bacteria close together. The DNA moves through a newly formed conjugation channel.
24
+ - <one>Wann</one> entdeckte Theodor Escherich <two><i>E. coli</i></two>? Im Jahre <one>1886</one>.
25
+ - Es gibt den sogenannten Plaque-Assay. Was aber heisst <one>plaque</one>? <one>Loch</one>. []
26
+ - How does a bacterial cell know that <one>it should induce competence</one>? By accepting <one>competence pheromones</one> when cell density is high.
27
+ - In <one>quorum sensing</one>, at the least for <i>Staphylococcus aureus</i>, the <two>AGR</two> system is important. What does <two>AGR</two> stand for? <one>Accessory gene regulator</one> (AGR) system.
28
+ - Name three sites in the <one>F-factor</one> where <three>DNA replication</three> can be initiated. A: (1) <one>oriV</one> (2) <one>oriS</one> (3) <one>oriT</one>
29
+ - <one>RecA</one> <two>in E. coli</two> ähnelt welchem Protein in Eukaryoten? <one>Rad51</one>. URL: https://de.wikipedia.org/wiki/Rad51
30
+ - In the <one>trp-Operon</one>, <two>at the leader region</two>: <three>which two different states does the resulting mRNA secondary structure have</three>? (1) mRNA secondary structure allowing continued synthesis of the mRNA (2) mRNA secondary structure causing premature termination
31
+ - Is it better to be a <one>male</one> <two>E. coli</two> or rather a <two>female</two>? <one>Female</one>. The male ones are attacked through their pili by phages like M13 or <one>fd</one>.
32
+ - The <one>Beta-Lactamase</one> <two>help against which antibiotic</two> that can also be used against prokaryotic organisms? <one>Ampicillin</one>.
33
+ - Welche drei Abteilungen unterscheidet man innerhalb der Bacteria? (1) <one>Posibacteriota</one> (2) "Negibacteriota" (3) <one>Cyanobacteriota</one>
34
+ - Which two <one>faces</one> does the protein <two>Tus</two> in E. coli have? (1) <one>permissive face</one> (2) <one>non-permissive face</one>
35
+ - Exprimiert <one>E. coli</one> <two>Cellulase</two>? <one>Ja</one>. []
36
+ - <one>In which organisms</one> can the <two>70S ribosome</two> be found? In <one>Prokaryotes</one>. []
37
+ - Besitzt <one>E. coli</one> Protein-Exporter? <one>Ja</one>. []
38
+ - <one>E. coli</one> <two>besitzt wieviele RNA-Polymerasen</two>? Nur eine. (Eigentlich sollten wir dieses Enzym <one>DNA-­abhängige RNA-Polymerase</one> nennen.)
39
+ - <one>Where</one> do we find <one>Z-DNA</one> structurally? In <one>GC-rich</one> or "GT-rich" regions.
40
+ - Eine typische <one>E. coli</one> Zelle <two>hat wieviele RNA-Polymerase Moleküle</two>? Über <one>3000</one>.
41
+ - <one>Specialized transduction</one> requires ...? <one>Lysogenic bacteriophages</one>.
42
+ - Nenne ein konkretes Beispiel für eine <one>indirekte Mutation</one> in Bakterien. A: <one>Indirekte Mutationen</one> werden hervorgerufen durch das <two>Einwirken alkylierender Chemikalien</two>. Dies führt dann im Zuge der SOS-Antwort zu einer fehlerhaften Reparatur, oder sogar zur Ausbildung von AP-Stellen.
43
+ - In prokaryotes: what does the <one>CAI index</one> reflect? The <one>Codon Adaption Index</one> reflects the preferred codon usage for an organism.
44
+ - <one>Wann</one> exprimiert eine bakterielle Zelle vermehrt das <two>RpoS-Gen</two>? Am Ende der exponentiellen Phase.
45
+ - <one>Wieviel Prozent der E. coli Gene</one> sind <two>unbekannter Natur</two>? <one>35%</one>.
46
+ - Schnell wachsende wachsende <one>E. coli Zellen</one> teilen sich alle <one>20 Minuten</one>. <two>Wie nennen wir deren Replikationsmodell</two>? <one>Multifork replication</one>.
47
+ - <one>RF1</one> in E. coli (<one>Release factor 1</one>) <two>binds to which mRNA sequence specifically</two>? To <one>UAG</one>.
48
+ - <one>Bacillus subtilis</one> has the <two>TRAP complex</two>. <three>What can it bind</three>? <one>TRAP can bind tryptophan</one>. Since it has 11 subunits, it can bind a total of 11 tryptophan molecules.
49
+ - During <one>conjugation</one>: which two transformation means exist? (1) <one>plasmid transfer</one> (2) <one>partial genome transfer</one>
50
+ - <one>Wie lange</one> ist <two>E. coli</two> (von-bis), als einzelne Zelle? <one>2-4 Mikrometer</one>.
51
+ - In bacteria: <one>TisB-translation</one> is under ... control? It is under <one>LexA control</one>.
52
+ - Die <one>Replikase</one> bei E. coli ist ... ? Die <one>DNA-Polymerase III</one>.
53
+ - <one>Which RNA</one> is <two>a widespread regulator of eubacterial RNA polymerase</two> that <three>resembles an open promoter</three>? The <one>6S RNA</one>.
54
+ - In Bakterien: die <one>Helikase DnaB</one> aktiviert welche Primase? <one>DnaG</one>.
55
+ - The <one>oriC</one> in the E. coli genome contains about n bp? About <orange>260 bp</orange>.
56
+ - <one>Which protein</one> replaces the <two>SSB Protein</two>? <one>PriA</one>. URL: https://www.uniprot.org/uniprot/P17888 []
57
+ - Name <one>a bacterium with three chromosomes</one>. A: <one>Rhizobium meliloti</one>. URL: https://en.wikipedia.org/wiki/Ensifer_meliloti []
58
+ - Das <one>F-Plasmid</one> kodiert für ein Enzym das auch <two>nickase</two> genannt wird. <three>Nenne ein anderes Wort für dieses Enzym.</three> A: <one>Strand transferase</one>. URL: https://en.wikipedia.org/wiki/Nicking_enzyme []
59
+ - Der <one>Exconjugant</one>, in der Genetik, hat <two>welche zwei Elemente</two>? (1) <one>Endogenote</one> (2) <one>Exogenote</one> []
60
+ - <one>rpoH</one> <two>in E. coli</two> kodiert für ...? Den <one>Sigmafaktor-32</one>, ein Protein. URL: https://en.wikipedia.org/wiki/Sigma_factor []
61
+ - What is the purpose of the <one>single-trand binding proteins</one> in prokaryotes? These proteins prevent the rejoining of the DNA-strands during DNA replication.
62
+ - Andere Bezeichnung für <one>auxotrophe Stämme</one>? <one>Nährstoffabhängige Mutanten</one>. URL: https://de.wikipedia.org/wiki/Auxotrophie []
63
+ - At the <three>F-Factor</three>: <one>homologous areas</one> act as? They act as <one>a pairing region</one>. []
64
+ - <one>Welche Person</one> löste das <two>Hfr-Rätsel</two> rund um die verschiedenen <three>Hfr maps</three>? <one>Allan Campbell</one>. URL: https://en.wikipedia.org/wiki/Allan_Campbell_(biologist) []
65
+ - Die gleichmäßige Verteilung von Plasmiden auf Tochterzellen während der Zellteilung nennt man ... ? <one>Plasmid-Segregation</one>. URL: https://faculty.washington.edu/jkoll/plasmid-segregation.html []
66
+ - The genome size of <one>Mesorhizobium loti</one> is ... <two>n bp</two>? More than 7 million bp.
67
+ - How much percent of E. coli's genome has been acquired from other bacteria through horizontal gene transfer? About <one>17%</one>.
68
+ - Why does <one>transduction</one> normally take place between bacteria of the same or closely related species only? Because <one>most bacteriophages have a limited host range</one>.
69
+ - Do the <one>IS elements</one> in a bacterial chromome 'regulate' anything? <one>Yes</one>, sort of: <two>IS elements regulate insertion into the bacterial chromosome</two>.
70
+ - Is the <one>F plasmid</one> in E. coli an episome? <one>Yes</one>. It <two>controls mating</two>.
71
+ - Why is the <one>origin of replication</one> important for a plasmid? It allows this plasmid to replicate independently of the bacterial chromosome.
72
+ - E. coli alone is estimated to have more than n different types of naturally occurring plasmids? 270.
73
+ - In <three>Mycoplasma capricolum</three> kodiert <one>UGA</one> für? Die Aminosäure <one>Tryptophan</one>. URL: https://en.wikipedia.org/wiki/Mycoplasma_capricolum []
74
+ - We can group the <one>plasmids</one> into two general groups, <two>conjugative plasmids</two> and <two>non-conjugative plasmids</two>. Which ones are <three>present at a low copy number</three>, in general? The <one>conjugative plasmids</one> tend to be larger and are also present at a low copy number, normally. []
75
+ - Ab wann sprechen wir von einem <one>high-copy-Plasmid</one>? Ab etwa mehr als 20 Kopien pro Bakterienzelle.
76
+ - Der Anteil nichtcodierender DNA ist eher gering bei Prokaryoten. In E. coli beträgt er nur etwa n%? Etwa <one>10%</one>.
77
+ - In der <one>RNA-Polymerase in E. coli</one>: <two>welche Untereinheit ist am größten her vom Molekulargewicht</two>? <one>Beta'</one>; <two>155 kDa</two>.
78
+ - Bacteria that contain a <one>F factor</one> gain which ability? They can <one>transfer genes to other bacteria</one>.
79
+ - In the <one>E. coli genome</one>: <two>the average distance between different genes is n bp</two>? <one>118 bp</one>.
80
+ - Das Protein <one>HU</one> in <two>E. coli</two> hat etwa 60.000 Kopie pro E. coli Zelle. Wofür steht die Abkürzung <one>HU</one>? <one>Heat-unstable nucleoid protein</one>.
81
+ - <one>E. coli</one> has <two>how many different DNA-Polymerases</two>? <one>5</one>. []
82
+ - <one>Welche Antibiotika-Klasse</one> greift die "bakterielle Gyrase" an? Die "Chinolone", wie zum Beispiel <two>Ciprofloxacin</two>.
83
+ - Es gibt sogenannte <one>lig-Stämme</one> in E. coli, in denen die Ligase fehlt. <two>Was sieht man bei ihnen</two>? <one>Viele unverbundene Okazaki-Fragmente</one>.
84
+ - The <one>E. coli genome</one> can recognize foreign methylation. <two>Methyl-adenine containing DNA</two> is destroyed by products of which gene? The <one>mrr gene</one>. mcr stands for "methylated adenine recognition and restriction".
85
+ - <one>RNA</one> kann <two>als Sensor in Bakterien</two> dienen. Nenne hierzu zwei allgemeine Beispiele. A: (1) <one>Temperatur</one> (2) <one>Metabolitkonzentration</one>
86
+ - In der prokaryoten Genetik: was gilt allgemein bei Bakterien als der Wildtyp-Stamm? Die <one>prototrophe Form</one>.
87
+ - The <one>CRISPR System</one> is similar to what system in Animal cells? The <one>piRNA pathway</one>.
88
+ - <one>Ändert</one> sich <two>die Stabilität des Sigmafaktors 32</two> bei höherer Temperatur? Ja - Sigmafaktor 32 wird allgemein stabiler bei Temperaturen <one>um 37°C oder mehr</one>. []
89
+ - Das <one>Ecoli Genom</one> weist <three>n IS Elemente auf</three>? <one>20</one>. []
90
+ - The <one>lac-mRNA</one> has a half-life of ...? <one>3 minutes</one>. []
91
+ - What is the "basic idea" behind one-sided termination sequence in E. coli for DNA-replication? Such a setup avoids a <one>fork collision</one>.
92
+ - What happens to <one>old CRISPR spacers</one>? They are <one>sporadically deleted</one>. []
93
+ - Reguliert sich der <one>Sigmafaktor-32</one> selbst? Ja. []
94
+ - Name the <one>three top start codons used in prokaryotes</one>. A: (1) <one>AUG</one> (<two>77%</two>) (2) <one>GUG</one> (<two>14%</two>) (3) <one>UUG</one> (<two> 8%</two>) []
95
+ - Das <one>AraC Protein</one> des Arabinose-Operons interagiert mit wievielen regulierenden Regionen? Mit <one>2</one>; <two>araI</two> und araO2. []
96
+ - Können Bakterien ohne <one>SSB-Protein</one> überleben? Nein. []
97
+ - Im Durchschnitt besteht ein proteincodierendes Gen aus n bp, in Bakterien (von-bis)? <one>600 bp - 1200 bp</one>.
98
+ - Name two general <one>microorganism-groups</one> in which <two>geomic streamlining</two> has occurred. A: (1) <one>symbionts</one> (2) <one>pathogens</one>
99
+ - What happens if <one>datA</one> is deleted in E. coli? This will result in an <one>asynchronic initiation of DNA-replication</one>.
100
+ - <two>When</two> was the division between <one>prokaryotes</one> and <one>eukaryotes</one> firmly established? In the year <one>1962</one>, by the microbiologists Roger Stanier and C. B. van Niel, in a paper called <two>'The concept of a bacterium'</two>.
101
+ - Bakterien mit induzierbaren Prophagen heissen ... ? <one>Lysogene Bakterien</one>. URL: https://de.wikipedia.org/wiki/Lysogener_Zyklus []
102
+ - Welches <one>Lambda-Protein</one> stabilisiert cII? <one>cIII</one> (cIII → cII). URL: https://en.wikipedia.org/wiki/CII_protein []
103
+ - The <one>E. coli proteome</one> contains n entries, <two>in 2020</two>? <one>4_391</one>.
104
+ - In E. coli: there is the <one>hflA</one> gene which may have something to do with phages. What does <one>hfl</one> stand for here? <one>High frequency of lysogeny</one>. []
105
+ - What does the <one>emm gene</one> of <two>S. pyogenes</two> code for? It codes for the <one>M protein</one> - easy to memorize. URL: https://www.cdc.gov/streplab/groupa-strep/emm-background.html []
106
+ - Im lac-Operon System: warum der Name <one>I</one> für lac I? <one>I</one> für Inducer. []
107
+ - <one>Generalized transduction</one> was discovered by Joshua Lederberg in 1952, using ... which bacterium? <one>Salmonella typhimurium</one>. []
108
+ - When is the <one>rpoH mRNA</one> translated? At <one>high temperature</one>. []
109
+ - Was ist die erste Aminosäure in einem bakteriellen Bakterium? <one>fmet</one> (aka <two>N-formylmethionine</two>). []
110
+ - Since when was the process of <one>conjugation</one> in bacteria known? Since 1946, thanks to Joshua Lederberg and Edward Tatum.
111
+ - <one>Which gene</one> codes for <two>adenylate cyclase</two>? <one>cya</one>.
112
+ - In <one>type II segregation</one> in bacteria, <two>bacterial ALP filaments</two> drive plasmid separation. <two>ALP</two> stands for ... ? <one>Actin-like protein</one>.
113
+ - <one>Welche Proteine</one> sind in Bakterien für die dichte Packung des Nucleoids wichtig? Die <one>NAPs</one> (<two>nucleoid associated proteins</two>).
114
+ - <one>Wieviel % der prokaryotischen Gene von B. subtilis</one> werden durch <two>Riboswitches</two> reguliert? <one>2%</one>.
115
+ - Die Grundlage des bakteriellen <one>Ntr Zwei-Komponentensystem</one> ist das Protein NtrB. Was für ein Typ ist dieses Protein? Es ist eine Sensorkinase.
116
+ - In Bakterien nennt man <one>Riboswitches</one> auch ... ? <one>Regulator RNA</one>.
117
+ - In a given <one>prokaryotic operon</one>, if a repressor protein manages to bend the DNA, how is this phenomenon commonly called? <one>Repressive loop formation</one>. This loop will typically block access to the given promoter at hand.
118
+ - In <one>Escherichia coli</one>: <two>sodB</two> codes for ... ? An <one>iron superoxide dismutase</one>.
119
+ - Was sind <one>leaderless mRNAs</one>? <one>Leaderless mRNA</one> sind mRNAs ohne 5' untranslated Region (5' UTR). Sie starten somit sofort mit einem 5' AUG Start codon und können vor allem bei gram+ Bakterien, wie bei Streptomyces, gefunden werden. Poly-U wäre zum Beispiel eine leaderless mRNA.
120
+ - Was sind <one>RNA Antitoxine</one>? RNA Antitoxine unterdrücken die Translation von mRNAs, die für Toxine kodieren.
121
+ - Do Bacteria have Introns? Yes. []
122
+ - Erkennen Sigmafaktoren unterschiedliche Sequenzen? Ja. []
123
+ - Name a <one>plasmid</one> in E. coli that replicates <two>unidirectionally</two>. A: The <one>ColE1 plasmid</one>. URL: https://en.wikipedia.org/wiki/ColE1
124
+ - The <one>ROSE element</one> can be found in several gram-negative bacteria, including Rhizobia. It is present in the 5'-UTR of which genes in particular? Of <one>small heat-shock genes</one>.
125
+ - Wie lange sind die Terminationssequenzen in <one>Prokaryoten</one>? Etwa <one>40bp</one>. []
126
+ - <one>Wie lange dauert</one> es bis das lac-operon in E. coli nach Zugabe von Lactose inudizert wird? Etwa <one>3 Minuten</one>.
127
+ - <one>Streptomycin</one> wirkt gegen welches prokaryote, ribosomale Protein? <one>S12</one>.
128
+ - <one>Branch Migration</one> und <one>Auflösen der Holliday-Strukturen</one> bei Bakterien werden über welche Proteine orchestriert? Über <one>RuvABC-Proteine</one>. URL: https://en.wikipedia.org/wiki/RuvABC
129
+ - Ein <one>RecA Filament</one> mag in einer prokaryoten Zelle wozu fürhen? Zur Einrichtung einer <one>Holliday Struktur</one>.
130
+ - In E. coli: das RecBCD Enzym arbeitet mit welch anderem Protein sehr eng zusammen? Mit dem <one>RecA-Protein</one>.
131
+ - In E. coli: was passiert unmittelbar wenn das RecBCD Enzym an eine chi-Sequenz gelangt? Das RecBCD Enzym hält an.
132
+ - Das <two>E. coli Genom</two> besitzt n <one>chi Elemente</one>? <one>1000</one>.
133
+ - Die Nukleotidsequenz die vom RecBDC Enzym erkannt wird, ist ... ? Die Chi-Sequenz (chi: cross over hot spot instigator).
134
+ - Das <one>RecBCD-Enzym</one> in E. coli kann an DNA binden. Welche Untereinheit ermöglicht dies? Die <one>RecC-Untereinheit</one>.
135
+ - Das <one>RecBCD-Enzym</one> in E. coli besitzt eine Helikase-Aktivität sowohl in 3'-5' Richtung als auch in 5'-3' Richtung. Welche zwei Teile vermitteln dies? <one>RecB</one> und <one>RecD</one>.
136
+ - Das <one>Arabinose-Operon</one> in Bakterien wird benötigt um den Zucker <two>Arabinose</two> abzubauen. Dieser Zucker wird zu welcher Substanz konvertiert? Zu <one>Xylulose 5-Phosphat</one>, einem Zwischenmolekül im Pentose Phosphate Pathway.
137
+ - <one>Which molecule</one> degrades the <two>lambda cII-Protein</two>? The <one>FtsH host cell protease</one>.
138
+ - Nenne <one>drei Bakterien</one> die natürlicherweise Transformation verwenden. A: (1) <one>Bacillus subtilis</one> (2) <one>Streptococcus pneumoniae</one> (3) <one>Neisseria gonorrhoeae</one>
139
+ - Die <one>rho-unabhängige Termination</one> in Bakterien wird auch als ... bezeichnet. A: <one>Intrinsic termination</one>. URL: https://en.wikipedia.org/wiki/Intrinsic_termination []
140
+ - <one>Welches Protein</one> bindet in Bakterien an überkreuzte DNA? Das <one>Ruv A Protein</one>.
141
+ - The RNA polymerase <one>holoenzyme</one>, from E. coli, has a molecular weight of n Da? Almost <one>500.000 Dalton</one>.
142
+ - <one>Which protein</one> recognizes the ter-site in E.coli and B. subtilis, respectively? (1) <one>E. coli</one>: <two>Tus</two>. (2) <one>B. subtilis</one>: <two>RTP</two> (Replication Terminator Protein).
143
+ - A surprising variety of partitioning systems exist in prokaryotes. Most of them rely on <one>three components</one>: → a <two>centromeric DNA region</two> → a cytomotive filament, and ... ? An <one>adaptor protein</one> linking these two other components.
144
+ - In Bakterien: das <one>mer-operon</one> kodiert für ... ? <one>mercury resistance</one>. []
145
+ - <one>Conjugation</one>, <one>Transformation</one> and <one>Transduction</one> in Bacteria - which of these three is <three>sensitive to Dnase</three>? <one>Only</one> <two>Transformaton</two> is sensitive to DNase. []
146
+ - Das <one>Pol-III Holoenzym</one> besteht aus <two>n Untereinheiten</two>? Mindestens <one>10 Untereinheiten</one>.
147
+ - In welchem System finden wir das <three>RNA-bindende Protein</three>, <one>TRAP</one>? A: In <one>Bacillus subtilis</one>. URL: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0088097 []
148
+ - In bacteria and their genomes: give another name for <one>genomic sites that determine infectivity</one>. A: <one>Virulence factors</one>.
149
+ - <one>How many genes</one> can be found in the E. coli genome? About <one>4405 genes</one>.
150
+ - Name a characteristic feature of the <one>Trp Leader</one> in <two>E. coli</two>. A: It contains <one>two consecutive Trp codons</one> (<two>UGG|UGG</two>).
151
+ - Können <one>Bakterien</one> Gene mit <two>Eukaryoten</two> austauschen? Ja. []
152
+ - Eine einzelne <two>E. coli Zelle</two> besitzt n Kopien des <one>HU-Proteins</one>? <one>60.000</one>.
153
+ - The <one>DnaA Protein</one> of <two>E. coli</two> can bind where to exactly? It <one>can bind to the 9-mers in oriC</one>. About 10-20 DnaA proteins can bind to these 9-mer repeats.
154
+ - Welche <one>zwei Haarnadelschleifen</one> gibt es im <two>trp-Operon</two>? (1) Terminator-Haarnadelschleife (2) Antiterminator-Haarnadelschleife
155
+ - Lab strains used for protein expression usually come from E. coli <one>B strains</one>, because this strain lacks ... which gene? It lacks the gene coding for the <one>lon protease</one>, which results in an improved protein yield.
156
+ - <one>Where</one> does the <two>replication of the bacterial chromosome</two> typically <three>start</three>? At the <one>oriC</one> - the <two>origin of chromosomal replication</two>. URL: https://en.wikipedia.org/wiki/Origin_of_replication []
157
+ - Do <two>bacteria</two> have <one>retrotransposoons</one>? No. []
158
+ - The classic example of <one>transcriptional attenuation</one> in Bacteria is ... ? The <one>trp-Operon</one> in <two>E. coli</two>.
159
+ - The <one>master initioator protein in bacteria for chromosomal replication</one> is called ... ? <one>DnaA</one>. []
160
+ - <one>Bacterial mRNA</one> is usually <two>degraded first from which end</two>? From the <one>5' end</one>.
161
+ - Give another word/term for the bacterial <one>-10 consensus sequence</one>. A: The <one>Pribnow box</one>. URL: https://en.wikipedia.org/wiki/Pribnow_box
162
+ - In der Genetik gibt es <one>REP</one> im bakteriellen Genom, <two>repeated extragenic palindrome</two>. Was ist das und welche Funktion mögen diese REPs haben? REPs besitzen Sequenzabschnitte von 30-40 bp, machen insgesamt etwa 0.5% der Gesamt-DNA aus, sind bevorzugte Proteinbindungsstellen und haben wohl eine Rolle bei der Ausbildung der Domänenschleifen und der mRNA Stabilität.
163
+ - The <one>simplest bacterial transposons</one> are ... ? The <one>IS elements</one> (<two>insertion sequences</two>). []
164
+ - The <one>Klenow fragment</one> is derived from E. coli's ... ? <one>DNA Polymerase I</one>. []
165
+ - Which two processes can we find in the <one>CRISPR defense system</one>? (1) <one>Immunization process</one> (2) <one>Immunity process</one>
166
+ - Welches <one>bakterielle Genom</one> ist dem mitochondrialem Genom am ähnlichstens? Das von <one>Rickettsia prowazekii</one>. URL: https://en.wikipedia.org/wiki/Rickettsia_prowazekii
167
+ - <one>Which antibiotics</one> kill bacteria by inhibiting DNA gyrase? <one>Quinolone antibiotics</one>.
168
+ - Andere Bezeichnung für ein <one>Codon</one>? <one>Triplett</one>. []
169
+ - Name one amazing strategy used by E. coli to <one>get iron</one>. A: E. coli uses a plasmid-encoded siderophore called "aerobactin" that readily removes iron bound to transferrin (acts as a thief).
170
+ - Ein durchschnittliches E. coli Gen macht wieviel % des Gesamt-DNA aus? <one>0,01%</one>.
171
+ - Nenne ein Beispiel für einen Anti-Sigmafaktor, der gegen Bakterien zum Einsatz kommen mag. A: Der anti-Sigmafaktor AsiA, vom T4-Phagen.
172
+ - Das <one>ara-Operon</one> kodiert für Enzyme, die beim Abbau von Arabinose involviert sind. Normalerweise ist das <one>ara-Operon</one> abgeschaltet. Welches Gen in dem ara-Operon fungiert hier als Repressor, der in Abwesenheit von L-Arabinose an den ara-Operator binden kann? <one>araC</one> (Mnemonic: C für Control).
173
+ - Nenne drei Operons in Bakterien, die vom Protein <one>CAP</one> (Catabolite Activator Protein) induziert werden können. A: (1) das lac-operon (2) das Ara-operon (3) das Gal-operon
174
+ - Name a technique with which we could identify <one>riboswitches</one>. A: Via <one>in-line probing</one>.
175
+ - Give an example for a gene in the E. coli genome that can be called a <one>Thermosensor</one>. A: The <one>rpoH gene</one>, coding for <two>sigmafaktor 32</two>. It is expressed as part of the <three>heat shock response</three>.
176
+ - The <one>binding of SSB to ssDNA</one> <two>protects it from</two> ... ? <one>Degradation</one>. []
177
+ - We can see the so called <one>discriminator element</one> past the TATA box, which usually has G-residues such as "GGG". What does this element do? The "discriminator element" determines the half-life of the "open complex"; in other words, <one>the G residues destabilize the open complex</one>.
178
+ - Compare the speed of the <one>T7-Polymerase</one> with the <three>speed</three> of the "E. coli Polymerase". A: The T7-Polymerase is <one>significantly faster</one>.
179
+ - Name a <one>regulatory RNA</one> in E. coli. A: The <one>6S RNA</one>.
180
+ - Die beiden Proteine <one>GroEL</one> und <one>GroES</one> sind Chaperone. Wieso der Buchstabe E? Da sie mit dem <one>GenE-Protein des Lambda-Phagen</one> interagieren.
181
+ - <one>Riboswitches in bacteria</one> are more typically found in the 5'UTR or in the 3'UTR? They are <one>more commonly located in the 5' untranslated regions</one> (<two>5'UTR</two>) of a bacterial mRNA.
182
+ - When we see <one>Escherichia coli</one> cells with 100S ribosome-dimers, what can we conclude? That E. coli is undergoing "nutrient starvation"; hence, <one>the 100S ribosome-dimers are a way to globally reduce and adapt gene expression</one>.
183
+ - Der <one>stringent factor</one> ist ein Enzym, das <three>wo</three> in der bakteriellen Zelle gefunden werden mag? An jedem 100. bis 200. <one>Ribosom</one>, locker daran gebunden.
184
+ - Im <one>Mal-operon</one> ist das Aktivatorprotein ... ? <one>MalT</one>. Es kann nur dann an den Mal-Operator binden wenn auch Maltose an MalT gebunden ist.
185
+ - Do <three>Bacteria</three> contain <one>retrotransposons</one>? No. []
186
+ - The CcdA/CCdB Toxin-antitoxin system ... what does <one>ccd</one> stand for? <one>Control of cell death</one>.
187
+ - Wieviele <one>superhelikale Schleifen</one> hat das Genom von E. coli (von-bis)? Es hat zwischen 50 und 100 superhelikale Bereiche, die in der Zellmembran verankert sind. []
188
+ - Nenne einen <one>harmlosen E. coli Stamm</one>. A: <one>K12</one>. []
189
+ - <one>Wieviele Aminosäuren</one> heftet ein Ribosom in einer E. coli Zelle pro Sekunde im Zuge der Translation an, in etwa? <one>20</one>.
190
+ - Is the <one>trp-promoter</one> a <three>strong promoter</three>? Yes. []
191
+ - Die <one>Primase</one> in E. coli (<one>DnaG-Protein</one>) hat ein Molekulargewicht von etwa <three>n kDa</three>? <one>60 kDa</one>.
192
+ - Das <one>SSB-Protein</one> bedeckt n Nukleotide? <one>8-12</one>.
193
+ - Pol III: welcher Komplex erhöht die Prozessivität? Der Gamma-Komplex (und die Beta-Untereinheiten).
194
+ - In welchem Jahr wurde Pol II (die replikative DNA-Polymerase II) erstmals isoliert? Im Jahr <one>1969</one>.
195
+ - Ist die Pol III ein Monomer oder ein Dimer? Pol III ist ein <one>Dimer</one>, verbunden durch das Protein <two>Tau</two>.
196
+ - What happens when <one>RecA</one> is mutated? <one>Genetic recombination</one> will be reduced 1000-fold.
197
+ - Das <one>E. coli Genom</one> besitzt <three>n REPs</three>? <one>581</one> REPs</one>. []
198
+ - <one>How many genes</one> are required for <three>plasmid transfer</three>? <one>Over 30 genes</one>.
199
+ - Das <one>lacY-Gen</one> (in <two>E. coli</two>) kodiert für ... ? Die <one>lac-Permease</one>. []
200
+ - Anderes Wort für den <one>heat-shock sigma factor</one>? <one>Sigma 32</one>. []
201
+ - What is <one>attenuation</one>? A form of <one>transcriptional control</one> that function by <two>premature temination of mRNA synthesis</two>.
202
+ - Wie sind <one>bakterielle Chromosomen</one> organisiert und wie sind sie gewunden? <two>Bakterielle Chromosomen</two> sind <three>in loops organisiert</three> und sind <one>negativ supercoiled</one>. []
203
+ - Was ist <one>die Hauptaufgabe der DNA-Polymerase II</one>? Die <one>Reparatur von DNA-Schäden</one>.
204
+ - Die Proteine <one>GroEL</one> und <one>GroES</one> bilden eine Art Zylinder; interagieren somit. Wieso der Buchstabe <one>L</one> und <one>S</one>, jeweils? <two>s</two> steht hier für <one>small</one>; <two>l</two> steht für <one>large</one>. []
205
+ - The <one>E. coli map</one> is set to zero where exactly? At <royalblue>thrABC</royalblue> - the <one>threonine operon</one>. []
206
+ - Im <one>E. coli Genom</one>: wieviel beträgt hier der durchschnittliche Abstand zwischen zwei Genen? Etwas mehr als <one>100bp</one>.
207
+ - What is the <one>hsd locus</one> in E. coli doing? It includes restriction and modificating genes.
208
+ - The <one>T3SS complex</one> contains approximately how many different proteins? <one>30</one>. []
209
+ - Das <one>groL Gen</one> kodiert für das GroEL Protein (<three>Hsp60</three>). Warum aber die Abkürzung gro hier? <two>gro</two> steht hier für <one>growth</one> (<three>growth of phages</three>). []
210
+ - Das Protein <one>MukB</one>, in E. coli, hat grosse Ähnlichkeit zu welch anderer Proteingrupe? Zu den <one>SMC</one> - <two>Structural Maintenance of Chromosomes</two>. URL: https://en.wikipedia.org/wiki/SMC_protein
211
+ - Nenne zwei Bestandteile eines <one>R-Plasmids</one>. A: (1) Resistenztransferfaktor (RTF-Segment) (2) R-Determinanten
212
+ - Nenne ein Kennzeichen der <one>REPs</one> im <three>E. coli Genom</three>. A: Sie besitzen <one>Palindromsequenzen</one>.
213
+ - <one>E. coli</one> enthält in der Zelle was für <three>"Typen"</three> an DNA? (1) <one>genomische DNA</one> (2) <one>Plasmid-DNA</one>
214
+ - What is the <one>bacterial initiator protein</one>? <one>DnaA</one>. URL: https://en.wikipedia.org/wiki/DnaA []
215
+ - Give two examples for <one>natural transformation</one> in <three>gram-negative bacteria</three>. A: (Mnemonic: <two>HaeNei</two>) (1) <one>Haemophilus influenzae</one> (2) <one>Neisseriae gonorrhoeae</one>
216
+ - How many <one>GATC sequences</one> can we see within the oriC region and the promoter of the dnaA gene, in the E. coli genome? <one>11</one>.
217
+ - Der <one>Tryptophan-Repressor</one> kann an seinen Operator binden - aber nur wann welche Bedingung erfüllt ist? Wenn Tryptophan vorhanden ist. []
218
+ - Give an example of <one>a global regulon</one> in Bacteria. A: The <one>virulence genes of pathogenic bacteria</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5093120/
219
+ - Was heisst <one>Cas genes</one> in Prokaryoten? <one>CRISPR-associated genes</one>. []
220
+ - Why are the two <one>Lambda-Terminase</one> subunits required? One subunit binds to the <one>cos-site</one>; the other subunit cuts the DNA.
221
+ - <one>How many differenct CRISPR systems</one> have been identified so far? <two>3</two> so far, termed <one>type I</one>, <one>II</one> and <one>III</one>.
222
+ - In E. coli: how do we call <one>the assemblage of proteins reponsible for DNA synthesis</one>? This refers to the <one>Replisome</one>. []
223
+ - Nenne <one>3 Komponenten des NER-Repair</one> in <two>E. coli</two>. A: (1) <one>uvrA</one> (2) <one>uvrB</one> (3) </one>uvrC</one> []
224
+ - In Bakterien: anderes Wort für das <one>9mer</one>? <one>DnaA-Box</one>. []
225
+ - How long does it take for the two <one>replisomes</one> in E. coli to complete the replication of the E. coli genome? It takes them <one>about 38 minutes</one> to complete one round of replication. []
226
+ - What will happen if the protein <one>SpoOA</one> becomes <three>highly phosphorylated</three>, in <two>Bacillus subtilis</two>? This <one>will trigger sporulation</one>; in other words, <one>sporulation will begin</one>.
227
+ - In E. coli: <one>which enzyme</one> gets rid of the <three>catenated chromosomes</three> after DNA replication? The <one>DNA topoisomerase IV</one>. URL: https://en.wikipedia.org/wiki/Topoisomerase_IV
228
+ - Was war <one>lac-Iq</one>? Ein mutierter E. coli Stamm, der etwa 10x soviel lac-Repressor Moleküle enthält wie E. coli Wildtyp.
229
+ - Allgemein formuliert: <three>rRNA-Gene in Bakterien</three>, zumindest in E. coli, sind <one>wie organisiert</one>? In Form von <one>Operons</one>.
230
+ - What do the 3 different processes of <one>conjugation</one>, <one>transformation</one> and <one>transduction</one> all have in common, mechanistically viewed? All three require the transferred DNA to undergo recombination with the bacterial chromosome.
231
+ - Does the E. coli <one>DNA ligase</one> require ATP? No. []
232
+ - In the <one>lac-operon</one>, the inducer is <three>allolactose</three>. But which molecule creates allolactose within the bacterial cell? Allolactose is derived from lactose, in a reaction catalyzed by the <one>Beta-Galactosidase</one>. []
233
+ - Name one key difference between <one>animal viruses</one> and <one>prokaryotic viruses</one>. A: Animal virions typically enter the animal cell, prokaryotic viruses do not.
234
+ - Why the name <one>Col plasmids</one>? Because they contain genes that <one>code for bacteriocins</one>.
235
+ - The <one>lac-repressor</one> contains <three>n binding sites</three> <two>"for"</two> IPTG? <one>4</one>.
236
+ - The mechanism of attenuation for the <one>trp-operon</one> in Bacillus subtilis involves a protein called <two>TRAP</two>. What does this stand for? <one>trp RNA-binding attenuation protein</one>.
237
+ - Where can we find the genes for the cholera toxin? This toxin is carried by <one>phage CTX(phi)</one>, a temperate bacteriophage.
238
+ - <one>Bacteria</one> <three>prefer which stop codon</three>? <one>UAA</one>. []
239
+ - Findet man <one>Ubiquitin</one> in Prokarya? Nein. []
240
+ - Anderer Begriff für das <one>Bakterienchromosom</one>? <one>Kernäquivalent</one>. []
241
+ - Welche <one>drei natürliche Möglichkeiten</one> hat ein Bakterium <three>DNA aufzunehmen</three>? (1) <one>Konjugation</one> (2) <one>Transformation</one> (3) <one>Transduktion</one> []
242
+ - Im <three>E. coli Genom</three> finden wir <one>n rRNA Gene</one>? <one>7</one>.
243
+ - E. coli hat n Kopien von <one>HU</one>? <one>60.000</one>. []
244
+ - Was <one>garantiert</one> ein <three>Operon</three>? Ein Operon garantiert die <one>koordinierte Expression zusammengehörender Gene</one>.
245
+ - Warum wird die <one>w-Untereinheit</one> (<violet>omega</violet>) der bakteriellen Polymerase benötigt? Sie hat eine <one>Funktion beim Zusammenbau des Enzyms</one>.
246
+ - Wie lange (physische Längenangabe) ist das E.coli-Chromosom? <one>1.1 mm</one>.
247
+ - What means <one>Transferability</one>? The ability of certain plasmids to move from one bacterial cell to another.
248
+ - Eine normale E. coli Zelle hat, bei normaler Temperatur, wieviele <one>Sigma-32 Moleküle</one>, pro Zelle, in etwa? Etwa <one>30</one>. []
249
+ - Name a <lightgreen>major cold shock protein</lightgreen> of E. coli. A: <one>CspA</one>, a <two>RNA chaperone</two>.
250
+ - Nenne eine Einschränkung bei der <one>Transduktion</one>. A: Die Bakteriophagen können nur jeweils wenige Bakterien infizieren (<one>limited host range</one>).
251
+ - Der <one>Lambda-Vektor</one> kann in das <three>E. coli Genom</three> integrieren. Wo genau? Zwischen <one>attP</one> (Lambda) und "attB" (E. coli; das liegt zwischen dem <two>gal-Operon</two> und dem <two>bio-Operon</two>).
252
+ - Why did Lederberg use <one>double auxotroph mutations</one> in his experiment 1948? Because double auxotroph mutations made sure that no revertants occur, which may have had a rate of 10 **-12 to 10 **-14.
253
+ - In Bacteria, what normal role does <one>NrpR</one> play? It represses nitrogen assimilation.
254
+ - Wir können sogenannte <one>SASPs</one> in Bakterien finden. Was bedeutet dieser Name, und was machen diese SASPs? SASPs heisst <one>Small, acid-soluble spore proteins</one>. Sie binden eng an die "Core-DNA" und schützen sie so gegen "wet heat damage". URL: http://aem.asm.org/content/75/16/5202.full
255
+ - In E. coli: what does <one>RseA</one> do? It is an anti-sigma factor that can bind to Sigmafactor-E.
256
+ - Im Zuge der <one>Konjugation</one> bei Bakterien wird DNA Material übertragen. Wie nennen wir die beiden Zellen, die dabei involviert sind? (1) <one>Donor</one> (2) <one>Rezipient</one> []
257
+ - Do bacteria use <one>pre-mRNA</one>? No. []
258
+ - Was passiert wenn einer E. coli Zelle das <one>Sigma-32-Protein</one> fehlt? Dann sind <one>Temperaturen über 30°C</one> tödlich für diese E. coli Zelle/Zellen. []
259
+ - Liebevoller Name für <one>E. coli</one>? <one>The Bug</one>. []
260
+ - In prokaryotes: may an <one>extended -10 sequence</one> compensate the lack of a <three>-35 sequence</three>? Yes. []
261
+ - Does <one>antigenic variation</one> occur in bacteria? Yes - in <one>Salmonella</one>, for instance. URL: https://en.wikipedia.org/wiki/Phase_variation []
262
+ - Name 3 factors that the <one>generation time</one> of bacteria depends on. A: (1) temperature (2) nutritional factors (3) genetic factors
263
+ - In <one>Prokaryotes</one>: the large 50S ribosomal subunit consists of which RNAs? 5S rRNA and 23S rRNA
264
+ - The <one>sigmafactor 70</one> is encoded by which gene? The <one>rpoD</one>" gene. (Mnemonic: <two>D</two> for <two>default</two>) []
265
+ - In a <one>bacterial cell</one>: compare the amount of mRNA, rRNA and tRNA, among the RNAs that this cell has, in percent. A: (1) <one>rRNA</one>: <two>~80%</two> (2) <one>tRNA</one>: <two>~15%</two> (3) <one>mRNA</one>:<two> ~ 2%</two>
266
+ - The <one>corepressor</one> of the <three>TrpR repressor protein</three> is ... ? <one>Tryptophan</one>. []
267
+ - <one>IS elements</one> were first found where exactly? In the E. coli <one>gal operon</one>. URL: https://en.wikipedia.org/wiki/Gal_operon []
268
+ - The E. coli protease called <one>Lon</one> - why does it have this name? Lon stands for <one>long form</one> of proteins when this protease is absent.
269
+ - In der prokaryoten Genetik: gegeben sind zwei absolut idente Bakterienkulturen, eines mit Plasmid, eines ohne. Wer setzt sich durch nach 10000 Replikationsdurchgängen? Die <two>Bakterien ohne Plasmid</two>, da sie schneller wachsen können als Bakterien mit Plasmid, und dies ihnen einen <one>Selektionsvorteil</one> verleiht. []
270
+ - <one>F' cell conjugation</one> produces what? <one>Merozygotes</one> aka <two>partial diploids</two>, which are <three>cells with two copies of some genes</three>.
271
+ - Wieviele Aminosäuren finden wir im <one>Rho-Protein</one>? <one>419</one>.
272
+ - <one>Lambda Excision</one> requires which two enzymes? (1) <one>Lambda integrase</one> (2) <one>Lambda excisase</one>
273
+ - Der <one>E. coli oriC Locus</one> befindet sich wo? Bei <one>84.3 Minuten</one>. []
274
+ - Das E. coli Genom besitzt <one>Ter-Stellen</one>, an die welche Proteine binden können? <one>Tus-Proteine</one>. []
275
+ - Was sind <one>kryptische Plasmide</one>? <one>Plasmide ohne erkennbaren Phänotyp</one>.
276
+ - Where on the <one>E. coli map</one> can we find the <three>oriC</three>? <one>84.3</one>. []
277
+ - Name a bacterium that uses and codes for <one>Pyrrolysine</one>. A: The bacterium <one>Desulfitobacterium hafniense</one>.
278
+ - Hauptunterschied zwischen <one>gram-negativen</one> und <one>gram-positiven Bakterien</one> bei der <two>Konjugation</two>? <one>Grampositive Bakterien</one> bilden im Gegensatz zu den <one>gramnegativen Bakterien</one> <two>keine Sexpili</two> aus.
279
+ - In <one>E. coli</one>: nenne die beiden jeweiligen Consensussequenzen von -10 und -35. A: (1) <one>-10</one>: <two>TATAAT</two> (2) <one>-35</one>: <two>TTGACA</two> []
280
+ - Where may we find <one>positively supercoiled DNA</one>? In certain species of <one>Archaea</one> that <two>grow at very high temperatures</two>. []
281
+ - The <one>Lex-A repressor</one> can, in general, bind to ...? A <one>SOS box</one>. URL: https://en.wikipedia.org/wiki/Repressor_lexA []
282
+ - <two>Grampositive Bakterien</two> sind bei der <one>Konjugation</one> flexibler als <two>Gramnegative Bakterien</two>. Sie können nicht nur Plasmide verwenden, sondern auch Konjugation über ... vermitteln? Auch über <one>konjugative Transposons</one>. []
283
+ - <three>E. coli</three> has a protein called <one>HU</one>. What does this stand for? <one>Heat unstable</one> protein.
284
+ - What is a <one>Toxin-antitoxin system</one> in Prokarya? Two proteins are encoded - the toxin, and the antitoxin. This ensures that plasmid-carrying daughter cells are propagated whereas newborn bacteria without such a plasmid copy, will be killed - which is also called "post-segregational killing".
285
+ - Das <one>E. coli Genom</one> enthält <one>n tRNA-Gene</one>? <one>83</one>. []
286
+ - Do the <one>E. coli laboratory strains</one> usually contain <three>wild-type dam genes</three>? Yes. []
287
+ - In <one>Transduction</one>, does <three>recombination</three> occur? Yes. []
288
+ - Warum sind <one>IS Elemente</one> wichtig fürs Bakterium? Da <one>Crossing-over</one> stattfinden kann zwischen IS Elementen.
289
+ - Which two genes encode for <one>IHF</one>? (1) "him A" (2) <one>him D</one>
290
+ - An <one>RNA thermosensor</one> can <three>control the expression of virulence genes</three>. Name one organism where we may find this specifically. A: <one>Listeria monocytogenes</one>. https://www.ncbi.nlm.nih.gov/pubmed/12230973
291
+ - Ist der <one>Sigmafaktor</one> für die <two>Elongation</two> wichtig? Nein. []
292
+ - How do we denote the <one>elongation component of DNA-Polymerase III</one>? <one>DnaE</one>. URL: http://rsob.royalsocietypublishing.org/content/7/9/170146
293
+ - The <one>E. coli genome</one> can recognize foreign methylation. "Methyl-cytosine containing DNA" is destroyed by products of which gene? The <one>mcr gene</one>. <one>mcr</one> stands for <two>methylated C recognition</two>.
294
+ - Nenne einen Weg im Labor um das das dichte Knäuel des bakteriellen Nucleoids aufzulösen. A: Wir verwenden eine <one>Endonuclease</one>.
295
+ - Why can <one>some plasmids replicate in only one species</one>? Because their <one>origin of replication</one> is only recognized and working there.
296
+ - Das Nucleotid am Startpunkt der RNA-Synthese wird mit +1 bezeichnet - oder auch ...? <one>TSS</one> (<two>transkriptionelle Startstelle</two>).
297
+ - <three>Where</three> were <one>IS elements</one> originally discovered? In the E.coli <one>gal operon</one>. URL: https://en.wikipedia.org/wiki/Insertion_sequence []
298
+ - What is the <one>major helicase</one> of <two>E. coli cells</two>? <one>DnaB</one>. URL: https://en.wikipedia.org/wiki/DnaB_helicase []
299
+ - In the plasmid <one>pTP10</one>, the <two>resistance gene Em</two> protects against ... ? <one>Erythromycin</one>. []
300
+ - Der <cadetblue>Standard-Sigmafaktor</cadetblue> von E. coli hat an der -10 Region die Sequenz <one>TATAAT</one>. Welche Sequenz hat der <three>Hitzeschock-Promotor</three> an dieser Stelle? <one>CCCCAT</one>.
301
+ - What is the role of <one>poly(A)</one> in Prokarya? <two>Poly(A)</two> in Prokarya <one>triggers degradation of prokaryotic mRNA</one>.
302
+ - Finden wir <one>Adenylylcyclasen</one> / <one>Adenylatzyklasen</one> in Prokaryoten? Ja; zumindest in manchen Prokaryoten. []
303
+ - How does <one>Rifamycin</one> kill a bacterial cell? It inhibits the bacterial cell by inhibiting RNA polymerase. URL: https://en.wikipedia.org/wiki/Rifamycin
304
+ - The <one>TATA box</one> in bacteria is at the -10 position. What three nucleotides are upstream of this box normally? <one>TGN</one>.
305
+ - <one>TrpR-Mutanten</one> zeigen was? In diesen Zellen läuft niemals eine Repression ab.
306
+ - Bacteria may benefit from <one>din genes</one> how? Din genes help the cell <one>survive DNA damage</one>.
307
+ - Im <one>Spacer-Bereich</one> zwischen dem 16S-rRNA-Gen und dem 23S-rRNA-Gen, im E. coli Genom, finden wir häufig ein oder zwei Gene, die für ... kodieren. A: <one>tRNA</one>. []
308
+ - <one>The largest sequenced bacterial genome</one>, in 2015, was ...? <one>Sorangium cellulosum</one>, having a genome size of <two>13.0 Mb</two>. URL: https://en.wikipedia.org/wiki/Sorangium_cellulosum
309
+ - Why does <one>E. coli</one> make use of <three>colicin E1</three>? Colicin E1 is used <one>to kill other bacteria</one>. []
310
+ - Bakterien mit einer <one>mutierten DNA-Polymerase I</one>, bei denen die <three>5'-3'-Exonuklease entfernt wurde</three>, zeigen welches Phänomen? Sie sind <one>gegenüber UV-Strahlung viel empfindlicher</one>.
311
+ - The plasmid <one>pTP10</one> was isolated from a <two>multiresistant corynebacterium</two>. Approximately how many base pairs, in k bp, does it contain? About <one>51.4 kbp</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/10732668
312
+ - Give another term for <one>bacterial chromosomal segregation</one>. A: <one>Partitioning of daughter chromosomes</one>.
313
+ - Do <one>virulence plasmids</one> exist? Yes. []
314
+ - What are <one>merodiploids</one>? These are <one>partial diploid bacteria</one>. []
315
+ - A <one>conjugation R- plasmid</one> has which 2 components? (1) resistance transfer factor (2) <one>R-determinant</one>
316
+ - What means <one>Lambda-immunity</one>? If a bacterium is already infected with Lambda, it will express a repressor which will bind to new invading Lambda-Genome Ol and Or, thus blocking it.
317
+ - What do we mean with <one>antisense Toxin-Antitoxin systems</one>? This is when an unstable antisense RNA blocks the translation of the toxin. An example is the plasmid-encoded hok/sok system.
318
+ - What is a <one>gene transfer agent</one> (<three>GTA</three>)? This is a bacteriophage-like element produced by several bacteria that mediates horizontal gene transfer. GTAs package random segments of DNA present in the host bacterium, which can be transduced to a recipient cell.
319
+ - Was zeigten E. coli <one>lacI Mutanten</one>? Das wenn der lacI-Repressor verändert ist er nicht mehr an die Operatorregion binden kann.
320
+ - What exactly binds to the <one>CAP box</one>? <one>CAP</one> <two>+</two> <one>cAMP</one>. URL: https://en.wikipedia.org/wiki/Lac_operon#Regulation
321
+ - The <three>E. coli genome</three> contains <one>n protein-coding genes</one>, at the least as investigated in 1997? <one>2657</one>.
322
+ - <one>Wie lange dauert</one> eine Runde der Replikation in E. coli? <one>40 Minuten</one>. []
323
+ - The <one>1990</one> <three>genetic map of E. coli</three> showed n genes? <one>1400</one>. []
324
+ - Woraus besteht der E. coli <one>cascade complex</one>, der bei CRISPR eine Rolle spielt? Aus CasA, CasB, CasC, CasD und CaseE. It cleaves pre-crRNA within the repeat region.
325
+ - There are the <one>R plasmids</one>. Give a better word for these plasmids. A: <one>Conjugative R plasmids</one>.
326
+ - <one>Gendichte bei E. Coli</one> (1 Gen / x Nukleotide)? <two>1 Gen</two> pro <one>1400 Nukleotide</one>. []
327
+ - Nenne ein Bakterium, das ein grösseres Genom als die Hefe hat. A: <one>Bacillus megaterium</one>. URL: https://en.wikipedia.org/wiki/Bacillus_megaterium []
328
+ - May plasmids contain <one>IS elements</one>? Yes. []
329
+ - How much of the DNA <one>in E. coli</one>, in percent, encodes proteins? <one>More than 90%</one>. []
330
+ - Nenne <one>zwei konkrete Beispiele</one> für <two>negative Kontrolle der Transkription</two> in Bakterien. A: (1) trp-Repressor (2) <one>lac-Repressor</one>
331
+ - <one>Sex-pili</one> of bacteria may have originated from ...? <one>Filamentous phages</one>. []
332
+ - Warum ist <one>Parasexualität</one> für Prokaryoten so wichtig? Sie stellt den einzigen Weg der <one>genetischen Rekombination</one> dar.
333
+ - The <one>Actinomycete bacteria</one> produce n% of all known antibiotics? About <one>~50%</one>.
334
+ - Are the <one>F-Pili</one> involved in DNA transfer? No - only in <one>establishing cell contact</one>. []
335
+ - In the E. coli genome: what is <one>oriS</one>? A <one>secondary origin</one> that can be used as origin of replication if the oriV is missing or non-functional.
336
+ - <one>Starke Promotoren</one> in E. coli besitzen was oft noch ... ? Ein <one>UP-Element</one>. []
337
+ - What does the term <one>vertical gene transfer</one> actually mean? This is when members of the same species transfer genetic information.
338
+ - Nenne <one>3 Komponenten des NER-Repair Pathways</one> in <two>E. coli</two>. A: (1) <one>uvr A</one> (2) <one>uvr B</one> (3) <one>uvr C</one> []
339
+ - Wer genau erkennt das <one>UP-Element</one>? Die <one>Alpha-Untereinheit</one> der RNA-Polymerase.
340
+ - Der <one>lac-Repressor</one> hat n Aminosäuren? <one>360</one>.
341
+ - In <one>Prokaryoten</one> kommen als Startcodons UUG, GUG und AUG zur Verwendung. Nenne den prozentualen Anteil jeweils. A: (1) <one>AUG</one> <two>80%</two> (2) <one>GUG</one> <two>13%</two> (3) <one>UUG</one> <two> 3%</two> []
342
+ - Welches Ende des <one>lac-Repressors</one> bindet an die Operator-DNA? Das <one>N-Terminale Ende</one>. []
343
+ - Do <one>bacterial cells</one> process their tRNA molecules after transcription? Yes. []
344
+ - The <one>type IV secretion systems</one> of Gram-negative bacteria are evolutionarily related to ... ? <one>Bacterial conjugation systems</one>.
345
+ - Do bacteria make use of <one>phosphorylation</one>, as a post-translational modification? Yes. It is <one>associated with pathogenicity in bacteria</one> there.
346
+ - Das <one>E. ecoli Genom</one> besitzt n tRNA-Gene? <one>83</one>. []
347
+ - Ohne <one>E. coli</one> gäbe es, überspitzt fomuliert, keine ... ? <one>Gentechnik</one>. []
348
+ - Welches Protein bindet an die <one>ter-sites</one> in <three>E. coli</three>? Das <one>tus-protein</one>. URL: https://en.wikipedia.org/wiki/Tus_%28biology%29 []
349
+ - Das <one>E. coli Genom</one> inkludiert n Operons für rRNAs? <one>Sieben</one> (<one>7</one>).
350
+ - <one>LexA-repressor</one> autocleavage is similar to ... ? <one>Lambda repressor autocleavage</one>. URL: https://en.wikipedia.org/wiki/Lambda_phage#Induction
351
+ - Warum der Name <one>rpoH</one>? <one>RNA polymerase subunit heat shock</one>.
352
+ - <one>rRNA-Operons</one> im E. coli Genom besitzen wieviele Promotoren? <one>Zwei</one> - P1 ist um einiges stärker als P2.
353
+ - Wird der <one>Sigmafaktor sigma</one> für die Transkription von Genen in der logarithmischen Wachstumsphase benötigt? Nein - der <two>Sigmafaktor sigma</two> wird nur in der <one>stationären Phase</one> benötigt.
354
+ - Welche Polymerase ist wichtig bei der <one>SOS-Antwort</one> in E. coli? <one>Pol II</one>. []
355
+ - A <one>SAM-sensing riboswitch</one> in <two>Bacillus subtilis</two> may sense which aminoacid? <one>Methionine</one>. []
356
+ - Mnemonic für das <one>trp-Operon</one>? <one>RPOLA-EDCBA</one>.
357
+ - When are bacteria more likely to generate <one>non-stop mRNAs</one>? During <one>stress</one>. []
358
+ - Name two operons that are controlled by <one>CRP-cAMP</one>. A: <two>lac-gal</two>, thus: (1) <one>lac operon</one> (2) <one>gal operon</one>
359
+ - Is <one>bacterial mating</one> like sexual reproduction? No, because the recipient gains a new feature - <one>the very ability to conjugate</one>.
360
+ - <one>DNA-Helicases</one> need what other protein to work effectively in bacteria? <one>SSB</one>. URL: https://en.wikipedia.org/wiki/Single-stranded_binding_protein []
361
+ - What is the task of the <one>replisome</one> in E. coli? It catalyses DNA synthesis at a DNA replication fork.
362
+ - <one>E. coli</one> is estimated to have how many different naturally occurring plasmids? At the least <one>270</one>.
363
+ - E. coli has about 4000 genes. How many of these are expressed at any given time? About <one>1000</one> - so one-fourth of them.
364
+ - What is the "key component" of CRISPR? The bacterial <one>Cas9 protein</one>.
365
+ - What is the <one>nucleoid</one>? This is a "nucleus-like", irregularly-shaped region within the cell of a prokaryote that contains the genetic material.
366
+ - <one>Most plasmids replicate how</one>? Via <one>bidirectional replication</one>. []
367
+ - <one>Ampicillin</one> applied to a population of cells (bactiera) has what effect? Ampicillin will <one>kill growing cells</one>. []
368
+ - Wo im <one>E. coli Genom</one> liegt die bakterielle Integrationsstelle <two>attBB'</two>? Zwischen dem <one>gal-operon</one> und dem <one>bio-operon</one>. []
369
+ - <one>DNA polymerase</one> and <one>RNA polymerase</one> can collide. Name a bacterial protein that can remove the RNA polymerase in this event. A: <one>Mfd</one>: also called <two>transcription repair coupling factor</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/12086674
370
+ - Describe briefly how the <one>hok</one>/<one>sok system</one> of plasmid R1 works. A: The "hok/sok system of plasmid R1" mediates post-segregational killing. The Sok antisense RNA is unstable and decays very rapidly, whereas the hok mRNA is more stable and rendered translationally competent by being processed. When hok is translated, it can damage the membrane and kill the cells.
371
+ - Die <one>Primase</one> in E. coli wird von welchem Gen kodiert? <one>DnaG</one>. []
372
+ - Aufgabe der <one>tmRNA</one>? Entfernt beziehungsweise rettet aufgehaltene Ribosome.
373
+ - Was zeigen Bakterien mit einer <one>purA-Deletion</one>? Sie können <one>Purine nicht mehr selber herstellen</one>.
374
+ - Der <one>oriC</one> in Bakterien besitzt <two>wieviele 9mers</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Origin_of_replication#Bacterial_Genome_Origins []
375
+ - Many <one>din-genes</one> in bacteria are regulated by ... ? The <one>SOS response</one>.
376
+ - Was <one>verliert</one> der lac-Repressor wenn der Induktor an ihn bindet? Seine <one>Affinität zur DNA</one>.
377
+ - The <one>tmRNA</one> can bind to ...? The <one>E-site</one> of a <two>ribosome</two>.
378
+ - If we see a <one>petite colony</one> under optimal conditions, what may we deduce from this? That this bacterium <one>may have had some mutations that slowed down the growth rate of this colony</one>.
379
+ - Name <one>a group of antibiotics</one> that kill bacteria by binding to DNA gyrase. A: <one>4-quinolones</one>.
380
+ - At the <one>F factor</one>: what exactly <three>regulates insertion into the bacterial chromosome</three>? <one>IS2</one> and <one>IS3 elements</one>.
381
+ - How do we call <one>the protein complex at the replication fork</one>, at the least in bacteria? The <one>Replisome</one>. URL: URL: https://en.wikipedia.org/wiki/Replisome []
382
+ - What do we mean with a <one>toxin-antitoxin system</one>? A toxin-antitoxin system is a set of two or more closely linked genes that together encode both a protein "poison" and a corresponding "antidote".
383
+ - Gib ein Beispiel für ein <one>Regulon</one> in E. coli. A: Das <one>Hitzeschockregulon</one>. []
384
+ - Welche <one>Leucin-Gene</one> hat E.coli? <one>4</one> → <two>Leu A</two>, <two>Leu B</two>, <two>Leu C</two>, <two>Leu D</two>. []
385
+ - Welches Enzym wird oft als die <one>Replikase</one> in Bakterien bezeichnet? Die <one>DNA Polymerase III</one>. URL: https://en.wikipedia.org/wiki/DNA_polymerase_III_holoenzyme
386
+ - Im <one>E. coli Genom</one> - was liegt zwischen <three>origin</three> und <three>terminus</three>? (1) <one>Replichor 1</one> (2) <one>Replichor 2</one> []
387
+ - Are <one>recD mutants</one> of <two>E. coli</two> capable of recombination? Yes. []
388
+ - <one>Die Einheit der biologischen Genkarte von E. coli</one> ist ... ? Die <one>Minute</one>. []
389
+ - In E. coli there is <one>Hfq</one>, which is important for <three>riboregulation</three>. How many subunits does this protein have in E. coli? Six; it is a <one>hexamer</one>. []
390
+ - Wie gross, in <one>kDa</one>, ist das <two>recA-Protein</two>? <one>38 kDa</one>.
391
+ - The <one>SacB Gene</one> from Bacillus subtilis codes for ... ? <one>Sucrase</one>.
392
+ - The <one>Primase DnaG</one> is a DNA-dependent RNA-polymerase. It binds to ... which other protein, in E. coli? It binds to the <one>DnaB hexamer</one>.
393
+ - Do <one>gram-negative bacteria</one> and <two>gram-positive bacteria</two> use the same machinery for natural transformation? No. []
394
+ - Why do bacteria make use of "parasexual mechanisms"? So that they can <one>generate new combination of genes</one>.
395
+ - <one>Wieviele verschiedene Sigmafaktoren finden wir in E. coli</one>? <one>7 verschiedene</one>.
396
+ - Das <one>Ecoli K-12 Genom</one> hat n Basenpaare? A: <one>4_639_675</one> (<one>4.639.675</one>). URL: http://solcyc.solgenomics.net/ECOLI/organism-summary?object=ECOLI
397
+ - <one>How many systems</one> does the E. coli genome contain to "recognize foreign methylation"? <one>Two</one>.
398
+ - Name a way how the <one>LexA repressor</one> can become unbound from DNA. A: Via <one>UV damage</one>.
399
+ - Das <one>E. coli Genom</one> besitzt n ter-sites? <one>10</one>.
400
+ - <one>Transcriptional regulator-proteins</one> in Bacteria often have what motif? A <one>HTH motif</one> (helix-turn-helix).
401
+ - Wie können wir Transposons inaktivieren? Durch <one>Methylierung</one>.
402
+ - <one>Chi-sites</one> are found on average every n bp in the E. coli genome? Every <one>5000 bp</one>.
403
+ - The <one>tetracycline-resistance operon</one> of E. coli is encoded where? In <one>Tn10</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC49329/
404
+ - What may be one consequence of a mutation in the <one>dam methylase</one> gene of E. coli? This gene plays a role in the "mismatch repair"; if it is inactivated that the consequence will be "highly elevated mutation rates".
405
+ - Nenne eine <one>Protease</one>, die das RpoS-Genprodukt abbaut. A: <one>ClpXP</one>.
406
+ - The <one>Mycoplasma</one> show what characteristic feature? They <one>lack a cell wall</one>. []
407
+ - Why do some plasmids contain <one>host-killing properties</one>? To ensure that they are not lost by the host cell.
408
+ - Nenne eine E. coli Mutante, bei der die <one>stringente Kontrolle</one> nicht mehr funktioniert. A: <one>rel A</one> Mutanten. []
409
+ - Welche zelluläre Aufgabe erfüllt E. coli <one>DnaK</one>? It <one>binds unfolded proteins</one>.
410
+ - Does the <one>SSB</one> (<two>single-stranded DNA binding protein</two>) bind to ssDNA in a <three>sequence-independent manner</three>? Yes. []
411
+ - Im Bakterium <one>Escherichia coli</one>: welches Enzym produziert die Primer des lagging strand? Die <one>dna-G Primase</one>. []
412
+ - <one>Bakterien</one> benötigen auch <three>Stickstoff</three>. Für die Stickstoffaufnahme über Stickstoff-Fixierung in die Zelle ist welches System zuständig? Das <one>Ntr-System</one> (<two>nitrogen regulation system</two>). URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC239390/
413
+ - How many <one>protein-coding genes</one> does E. coli have? <one>4288</one>.
414
+ - The tunnel in the prokaryotic ribosome can accomodate how many amino acids of the growing polypeptide chain? About <one>35 amino acids</one>.
415
+ - Why does the <one>lac-Operon</one> contain more than one Operator? The lacI-Repressor can bind to 2 Operators, which results in a DNA-Loop.
416
+ - Give an example how Bacteria extend their possibilities via <one>symbiotic relationship</one>. A: They enable other organisms to <one>survive in inhospitable environments</one>.
417
+ - Wann wird <one>der lysogene Weg</one> in Lambda bevorzugt? In einer <one>nährstoffarmen Umgebung</one>.
418
+ - Die <one>formyl-group</one> für f-Met stammt woher? Aus dem <one>Tetrahydrofolate cofactor</one>.
419
+ - In Bakterien: nenne ein Indiz, das gegen <one>gekoppelte Translation</one> spricht. A: Viele RNA-Polymerasen können an anderen Stellen in der Bakterienezelle vorkommen, als die Ribosomen.
420
+ - What means <one>F' plasmid</one>? This is an F-Plasmid carrying <one>bacterial, genomic DNA</one>.
421
+ - In <one>bacteria</one>: are the genes that control <two>galactose metabolism</two> inducible? <one>Yes</one>. []
422
+ - The <one>Type III secretion (T3S) systems</one> are widespread among ...? The <one>gram-negative bacteria</one>. []
423
+ - An <one>Insertion Sequence</one> in E. coli, may have which 3 important sequences? (1) Terminal Sequence (2) Internal Sequence (3) Inverted terminal sequence
424
+ - Die <one>Replikation des E. coli Genoms</one> dauert ... <two>n Minuten</two>? <one>40 Minuten</one>. []
425
+ - In <one>E. coli</one>: which two proteins solve the supercoiling problem? (1) <one>DNA gyrase</one> (2) <one>Topoisomerase IV</one>
426
+ - Name the correct sigmafactor-cascade for endospore formation in Bacillus subtilus. A: <one>F-G-E-K</one>. (1) <two>sigma F</two> (2) <two>sigma G</two> (3) <two>sigma E</two> (4) <two>sigma K</two>
427
+ - The <one>oriC</one> in E. coli has <violet>5 DnaA-boxes</violet>. How many of these five are particularly strong, that is, bind DnaA very tightly so? <one>Three</one> of them bind DnaA particularly strongly. []
428
+ - <one>LacI</one> kodiert für? Den <one>lac-Repressor</one>. URL: https://en.wikipedia.org/wiki/Lac_repressor []
429
+ - Do <one>Archaea</one> also have <three>Toxin-antitoxin (TA) systems</three>? Yes. URL: https://en.wikipedia.org/wiki/Archaea []
430
+ - The <one>GAL4 protein</one> in <two>yeast</two> can bind to another protein, called ... ? <one>GAL80</one>. URL: https://www.uniprot.org/uniprot/P04387 []
431
+ - Die <one>Halbwertszeit durchschnittlicher, bakterieller mRNA</one> beträgt n Sekunden (von-bis)? <one>30-120 Sekunden</one>. []
432
+ - <three>Which gene</three> codes for the E. coli <one>Primase</one>? <one>dnaG</one>. URL: https://en.wikipedia.org/wiki/DnaG []
433
+ - Does the <one>RecBCD protein</one> contain a <three>helicase activity</three>? Yes. URL: https://en.wikipedia.org/wiki/RecBCD []
434
+ - In <one>E. coli</one>: how long are its <three>Ter-sites</three>? <one>23 bp</one>. []
435
+ - Was genau bindet an die <one>CAP box</one>? <one>CAP</one> mit gebundenem <two>cAMP</two>.
436
+ - Who loads the <one>DnaB-Helicase</one> onto the prokaryotic DNA? The <one>DnaC-loader</one>. []
437
+ - Nenne die drei Strukturgene des <one>Mal-Operons</one> in E. coli. A: (1) <one>MalE</one> (2) <one>MalF</one> (3) <one>MalG</one>
438
+ - <two>Wo</two> im E. coli Genom liegt <one>oriC</one>? Bei <one>84,3 Minuten</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4236916/ []
439
+ - What means the word <one>T3S Systems</one> in Genetics? <one>Type III secretion systems</one>. []
440
+ - In general, in bacteria: what do we mean with the <one>mob-genes</one>? These are <one>mobility genes</one>. []
441
+ - Which protein in bacteria helps <one>hemi-methylated DNA</one> bind to the cell membrane? <one>SeqA</one> (the <two>sequestration-protein</two>). []
442
+ - Bacteria such as <one>E. coli</one> may use the Activator called <two>FNR</two>. Under which conditions may they do so? Under "anaerobic conditions" such as lack of O2.
443
+ - Wann wurde der <one>CRISPr locus</one> erstmals erkannt? 1980.
444
+ - In <one>E. coli</one>: wie lange (n Nukleotide) ist eine durchschnittliche mRNA? Etwa <one>~1.2 Kilobasen</one>.
445
+ - <one>Hemimethylated DNA</one> in <three>Bacteria</three> attracts ... which protein? The <one>SeqA protein</one>.
446
+ - What is the <one>major helicase</one> that can be found in E. coli? The <one>DnaB protein</one> (<two>DnaB-Helikase</two>). URL: https://en.wikipedia.org/wiki/DnaB_helicase []
447
+ - A single <one>E. coli cell</one> contains about n molecules of the <two>initiator protein DnaA</two>? About <one>~1000</one>. []
448
+ - In <one>E. coli</one>: the product of the recB and recC genes is ... ? The enzyme <one>ExoV</one>, an <two>exonuclease</two>.
449
+ - In <one>E. coli</one>: the typical mRNA half-life is ...? About <one>3 minutes</one>. []
450
+ - Die <one>50S</one> <three>ribosomale Untereinheit</three> besteht aus welchen rRNAs? (1) <one>5S rRNA</one> (2) <one>23S rRNA</one>
451
+ - Bei den Bakterien: nenne ein anderes Wort für die <one>DNA-Gyrase</one>. A: <one>Topoisomerase II</one>. URL: https://en.wikipedia.org/wiki/Type_II_topoisomerase
452
+ - What exactly means the term <one>episome</one>? An episome is a plasmid that can integrate into the chromosome.
453
+ - In <one>light-dependent repair</one> in bacteria, ... cleaves the thymine dimers. A: <one>Photolyase</one>. URL: https://en.wikipedia.org/wiki/Photolyase []
454
+ - Welche zwei biologische Systeme untersuchten Hershey und Chase? Das Bakterium <one>E. coli</one> und den <one>Bakteriophagen T2</one>. []
455
+ - <one>AREs</one> (<two>AU-rich elements</two>) are usually associated with which "cellular function"? <one>mRNA-degradation</one>. []
456
+ - Name three different <one>classical ways</one> to modify DNA of Bacteria. A: (1) <one>Conjugation</one>: via Plasmids (2) <one>Transformation</one>: via free DNA (3) <one>Transduction</one>: via Phages []
457
+ - Beim <one>bakteriellen lacI Repressor in E. coli</one>: wir sehen ein Helix-Turn-Helix-Motiv. Eine zentrale Funktion hat Helix II. Wie wird diese Helix noch genannt, mit einem trivialen Namen? <one>Erkennungshelix</one>. []
458
+ - The <one>1963</one> E. coli genetic map showed n genes? <one>100</one>. []
459
+ - Wenn ein Bakterium in der Rekombination defekt ist, ist es sonst auch noch <one>wo defekt</one>? In der <one>Reparatur von DNA-Schäden</one>. []
460
+ - The <one>integration of an episome into the bacterial genome</one> depends on the presence of ...? <one>IS elements</one>. []
461
+ - Name an <one>ATP-dependent protease</one> in E. coli. A: The <one>lon protease</one> (<two>long form of protein</two>). []
462
+ - Warum ist das <one>ara-Operon</one> einzigartig? Es hat ein regulatorisches Protein, das in der Lage ist, sowohl positive als auch negative Kontrolle auszuüben.
463
+ - <one>IS elements</one>: what does the <three>IS</three> stand for here? <one>Insertion sequences</one>. []
464
+ - Das Genom von <one>E. coli K-12</one> umfast wieviele Basenpaare? <one>4_639_221</one> []
465
+ - Warum der Name <one>geschlossener Promotorkomplex</one>? Weil in diesem Stadium die DNA noch in der Doppelhelix erhalten bleibt.
466
+ - Name <one>a bacterium</one> with a <three>linear chromosome</three>. A: <one>Borrelia burgdorferi</one>. []
467
+ - How do we call a medium that lacks an essential nutrient? A <one>selective medium</one>.
468
+ - <one>Dna-A Boxen</one> in E. coli haben wie viele Nukleotide und kommen im ORI wie oft vor? Wir finden <three>4 DnaA Boxen</three> im Genom von <two>E. coli</two>, die jeweils 9 bp umfassen (also <one>9mer</one> sind). []
469
+ - Give an example of a <one>toxin-antitoxin system</one> that is induced by the SOS response system, in response to DNA damage. A: The <one>TisB-IstR toxin-antitoxin system</one>. URL: https://en.wikipedia.org/wiki/TisB-IstR_toxin-antitoxin_system
470
+ - Das E. coli Genom besitzt sogenannte <one>REP-Sequenzen</one>. Wofür steht die Abkürzung <one>REP</one>? <one>Repetitive extragenic palindromic sequences</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/6378385
471
+ - Welche Polymerase ist die <one>Replikationspolymerase</one> in Prokaryoten? <one>DNA Polymerase III</one> (<two>Pol III</two>). URL: https://en.wikipedia.org/wiki/DNA_polymerase_III_holoenzyme []
472
+ - Can a free <one>sigmafactor-70</one> bind to DNA? No it can not.
473
+ - E. coli kann <one>Isoleucin</one> in 5 Schritten ausgehend von welcher anderen AA herstellen? <one>Threonin</one>.
474
+ - Was zeigen <one>polA1 Mutanten</one>? Sie können <one>ihre DNA kaum reparieren</one>.
475
+ - The <one>E. coli genome</one> contains two systems recognizing foreign methylation. How are the two respective genes called/designated? (1) <one>mcr gene</one> (2) <one>mrr gene</one>
476
+ - What is <one>the inducer of the Maltose-Operon</one>? The sugar <deepskyblue>Maltose</deepskyblue>.
477
+ - <one>Which operon</one> is required for <three>Arabinose uptake</three>? <one>araFG operon</one>.
478
+ - Wie <one>kontrolliert</one> die bakterielle Zelle das die DNA-Replikation nur einmal abläuft? Der Origin ist <two>hemimethyliert</two>. Erst wenn er <one>vollständig methyliert</one> vorliegt kann eine erneute Replikation stattfinden. []
479
+ - In E. coli, what is <one>the first enzyme</one> of the trp-Operon (trpD+trpE)? <one>Anthranilate synthase</one>.
480
+ - What means <one>zygotic induction</one>? When we cross Hfr with F minus strains, the entry of the Lambda prophage immediately triggers the prophage into a lytic cycle.
481
+ - Many large, low-copy number plasmids encode <one>active segregation systems</one> to avoid ... ? <one>Stochastic loss</one>.
482
+ - Die bakterielle <one>Hfl AB-Protease</one> zerstört ... ? Das <one>cII-Protein</one>.
483
+ - Welches Problem haben <one>MukB-Mutanten</one> in <two>E. coli</two>? Den Nachkommen fehlt das <one>Nucleoid</one>. URL: https://www.uniprot.org/uniprot/P22523
484
+ - Name a general example for <one>trans-acting elements</one> in prokaryotes. A: <one>Transcription factors</one>.
485
+ - What is <one>crRNA</one>? short, complementary single-stranded RNA, the so-called <one>CRISPR RNA</one>.
486
+ - Das <one>H-NS</one> protein - diese Abkürzung steht für ... ? <one>Histone-like nucleoid-structuring protein</one>. URL: https://en.wikipedia.org/wiki/Histone-like_nucleoid-structuring_protein
487
+ - Im Kontext eines bakteriellen Operons: was bedeutet der Begriff <one>positive Kontrolle</one>? Dies bedeutet das ein Aktivatorprotein an die DNA binden muss, damit ein Operon transkribiert wird.
488
+ - Does <one>transformation</one> occur in <two>E. coli</two> naturally? No - E. coli lacks the genes that encode DNA-uptake membrane proteins. []
489
+ - The <one>Lederberg-Tatum experiment</one> has shown which two points? (1) Bacteria like E. coli can bring genetic information from two different cells into one cell to for recombinants (== gene transfer) (2) The recombinants are genetically stable, and they propagate the A+B+C+D+ information
490
+ - <one>Bakterien</one> besitzen <two>formylated initiator tRNA</two>. Wo genau ist die tRNA formylated? An der "Aminogruppe" der Aminosäure. URL: https://i.imgur.com/p30Y9HR.jpg
491
+ - <one>rpoS</one> kodiert für welchen Sigmafaktor? Für den <one>stationären Sigmafaktor Sigma-38</one>, auch <two>Sigma-S</two> genannt.
492
+ - What is the normal role of <one>GAL80</one> in yeast? It will bind to GAL4 and prevent GAL4 from activating transcription - but only when there is an <two>absence of galactose</two>.
493
+ - The <one>GAL4 transcriptional activator protein</one> in <two>yeast</two> contains which motif? It <one>contains a zink finger</one>.
494
+ - For a bacterial cell: what appears to be the most significant, natural impediment for DNA-Polymerases? <one>Transcription</one>.
495
+ - Unterscheiden sich <one>Hfr-Stämme</one> voneinander? Ja - sie tragen das F-Plasmid jeweils an unterschiedlichen Abschnitten des Hauptchromosoms.
496
+ - Ist der <one>lac-Repressor</one> ein Sensor? Ja - ein <one>Sensor für Laktose</one>, über die Allolaktose.
497
+ - Der <one>stringent factor</one> ist ein Enzym, das in Bakterien an Ribosomen gebunden sein kann. Nenne den langen (und offiziellen) Namen dieses Enzyms. A: <one>pppGpp-Synthetase</one>
498
+ - Welche <one>Endonuclease</one> trennt die einzelnen Abschnitte der rRNA-präRNA auf, in die Bestandteile wie 16S-rRNA und 23S-rRNA? Die Endonuclease <one>RNase III</one>.
499
+ - Die komplexe Antwort von Bakterien auf einen <one>Aminosäuremangel</one> bezeichnet man als ... ? <one>Stringente Kontrolle</one>.
500
+ - Chaperone sind wichtig für Bakterien. Was ist ein <one>Chaperon</one>? Ein Chaperon ist ein Proteinkomplex, der <one>die korrekte Faltung von Polypeptidketten ermöglicht</one>.
501
+ - Wenn wir allgemein Sigmafaktoren in Bakterien betrachten, welche Aufgabe ist ihnen gemeinsam in Bezug auf Vermittlung von Wechselwirkungen? Sigmafaktoren müssen zwischen der RNA-Polymerase auf der einen Seite, und den Anfängen von Genen auf der anderen Seite unterscheiden.
502
+ - <one>Sigmafaktor-28</one> in E. coli ist wichtig für ... ? Die <one>Synthese von Flagellen</one>.
503
+ - Nicht jedes Plasmid ist automatisch ein Episom. Was ist mit dem Begriff <one>Episom</one> daher eigentlich gemeint? Dies meint ein DNA-Molekül, das sowohl extrachromosomal (eben wie ein Plasmid) also auch im Hauptchromosom integriert, vorliegen kann.
504
+ - <one>Katabolitrepression</one> ist für Bakterien wie E. coli sehr wichtig. Wieviel Prozent aller E. coli Gene werden über Katabolitrepression beeinflusst? Etwa <one>10%</one>.
505
+ - Die <one>bakterielle RNase P</one> besteht aus einem Protein und einer RNA. Das Protein hat etwa 120 Aminosäuren; die RNA hat etwa wieviele Nukleotide? <one>377</one>.
506
+ - Die <one>tRNA Gene im E. coli Genom</one>: wie sind sie organisiert? (1) entweder in operons (2) oder sie kommen einzeln vor
507
+ - Wieso benötigen Bakterien <one>Regulons</one>? Damit sie auf Veränderungen in der Umwelt reagieren können, wie zum Beispiel einer <one>erhöhten Temperatur</one> oder <one>UV Strahlung</one> die den SOS-Reparaturweg induzieren kann.
508
+ - Gib eine andere Bezeichnung für <one>F'-Plasmide</one>. A: <one>Substitutierte F-Plasmide</one>.
509
+ - Nenne einen Nachteil bei der alten Vermessung der E. coli Genkarte über die <one>unterbrochene Paarung</one>, i. e. mit dem <orchid>Hfr-Plasmid</orchid>. A: Die Lage und die <one>Abstände</one> eng benachbarter Gene können nicht oder nur höchst <one>ungenau bestimmt werden</one>.
510
+ - Give an example of a low-fidelity DNA-polymerase in <one>E. coli</one>. A: <one>DNA polymerase IV</one>. URL: https://en.wikipedia.org/wiki/DNA_polymerase_IV
511
+ - Manche Enzyme können an ein <one>TT-Dimer</one> binden. Gib ein Beispiel hierzu an sowie in welchem Organismus man dieses findet. A: Die "Endonuclease V", im T4-Bakteriophagen.
512
+ - Most bacteria have only a single chromosome. Does this also mean that there is only one copy of this chromosomal DNA in each bacterial cell? No, not necessarily so. Often new rounds of replication can be initiated without the older chromosome having been fully replicated yet.
513
+ - A problem of linear DNA in E. coli is that it is very rapidly degraded by exonucleases, particularly by the enzyme ... ? "ExoV".
514
+ - Give another term for "CRISPR system". A: "Type II system".
515
+ - How much percent of the genes in a bacterial cell are expressed under any particular set of growth conditions? "25%".
516
+ - Name a substance with which we could eliminate the "F-Plasmid". A: We treat the cell with "Acridin Orange".
517
+ - Is "E. coli" naturally competent? No, it is not.
518
+ - Welches Gen kodiert für denn lac-repressor? Das "LacI-Gen". URL: https://en.wikipedia.org/wiki/Lac_operon
519
+ - Warum ist es für den "lac-Repressor" wichtig, das es mehr als eine Operator-Sequenz gibt, im lac-Operon? Da die DNA dazwischen gebogen wird, durch Bindung des lac-Repressors; Diese Schleife verschliesst den gesamten Regulationsbereich - einschließlich des Promoters.
520
+ - Give a specific example for an "episome". A: The "F-factor". URL: https://en.wikipedia.org/wiki/Fertility_factor_%28bacteria%29
521
+ - How many Type 3 Secretion Systems can be distinguished in gram-negative bacteria? At least 5 of these systems.
522
+ - Name the 3 main types of transposable elements in Bacteria. A: (1) "IS elements" (2) "composite transposons" (3) "TN3-like elements"
523
+ - Nenne eine wichtige Aufgabe der bakteriellen DNA-Polymerase II. A: "DNA-Reparatur", vor allem im Zuge der SOS-Antwort.
524
+ - Which 3 major types of plasmids exist in E. coli? (1) F-Factor plasmids (2) R-type plasmids (3) Col plasmids
525
+ - Aus einer Graphik, die das Wachstum eines Bakteriums zeigt, wie ermitteln wir die spezifische Wachstumsrate k? Sie entspricht der "Steigung der Geraden".
526
+ - What happens to foreign DNA in regards to the CRISPR locus? Foreign DNA is processed by "cellular nucleases" into so-called "protospacers".
527
+ - Which E. coli gene codes for the "sigma factor 70"? RpoD.
528
+ - Länge des E. coli Genoms? 1,5-1,6 mm.
529
+ - Nenne die 5 Hauptklassen von Plasmiden. A: (1) Fertility F-Plasmide (2) Resistance R-Plasmide (3) Col plasmids (4) Degradative plasmids (5) Virulence plasmids
530
+ - E. coli has how many different Hsp ("heat-shock-proteins")-genes? About 30.
531
+ - Do Eubacteria have histones? No.