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,901 @@
1
+ # =========================================================================== #
2
+ # === Gentechnik tag, praktische Biochemie
3
+ #
4
+ # Gen tag, Technik tag. Gent Tag.
5
+ #
6
+ # Ist auch für Industrielle Genomik und Ethik in der Gentechnik geeignet.
7
+ # Gentech tag. Gentech1 tag.
8
+ #
9
+ # Vektoren werden in einer anderen Datei gesammelt.
10
+ # =========================================================================== #
11
+
12
+ - Can we say something about <one>the migration behaviour</one> of <two>supercoiled DNA</two>? <one>Supercoiled DNA</one> has a <two>smaller effective volume</two>, which means that it will <two>migrate more rapidly during electrophoresis</two>.
13
+ - Name <one>four different display methods</one> in gene technology. A: (1) <one>phage display</one> (2) <one>yeast surface display</one> (3) mRNA display (4) <one>ribosome display</one>
14
+ - Beim <one>cre</one>/<one>loxP-System</one> wird häufig <two>welches Antibiotikum</two> verwendet? <one>Neomycin</one>. URL: https://en.wikipedia.org/wiki/Neomycin []
15
+ - <one>Wann</one> wurde <two>die erste Genklonierung</two> beschrieben? Im Jahr <one>1973</one>, durch <two>Stanley Cohen</two>.
16
+ - Give another name for <one>Charon 4A</one> und <one>Charon 16</one>. A: (1) <one>Charon 4A</one> is a <two>replacement vector</two>. (2) <one>Charon 16</one> is an <two>insertional vector</two>.
17
+ - In phage display, the <one>M13 phage</one> is often used. <two>How many copies of the gene III protein may we find on such a phage normally</two>? About <one>5-8 copies</one> of the <two>gene III protein</two>.
18
+ - In der Gentechnik: <one>welchen Vorteil</one> bieten <two>Inteins</two>? <one>Es entfällt das Verwenden einer Protease</one>. Die Zahl der notwendigen Schritte wird dadurch reduziert.
19
+ - <one>What host</one> is used for a <two>BAC</two>? <one>A mutant strain of E. coli</one> lacking normal restriction and modification systems compared to the wild type.
20
+ - We observe that a DNA molecule is cut by <one>MspI</one> but not by <two>HpaII</two>. What can we conclude from this observation? The <two>recognition site</two> may be <one>methylated</one>.
21
+ - Bei der <one>Giemsa-Farbstoff</one> kommt welche Protease zur Anwendung? <one>Trypsin</one>.
22
+ - Überführt man DNA-Doppelstränge in Einzelstränge, so nennt man diesen Vorgang ... ? <one>Denaturierung</one>.
23
+ - <one>Wie</one> können wir Proteine nach ihrer Größe trennen? Mit Hilfe der <one>Gelfiltrationschromatographie</one>. []
24
+ - Im Jahre 2012 sind wieviele Restriktionsenzyme in der Datenbank <one>REBASE</one> beschrieben? Etwa <one>4000</one>. []
25
+ - The <one>Sau restriction enzyme</one> came from which organism? It came from <one>Staphylococcus aureus</one>. URL: https://pubmed.ncbi.nlm.nih.gov/11316811/ []
26
+ - Name a very widely, perhaps even the most widely used, <one>strong regulatable promoter</one> used in gene technology / biotechnology. A: The <one>tac promoter</one>. URL: https://en.wikipedia.org/wiki/Tac-Promoter []
27
+ - In general, seen mechanistically: <one>how</one> are <two>Type I restriction enzymes</two> able to cut remote sites? They <one>loop the DNA strand</one>.
28
+ - Um <one>Kompetenz in Bakterien</one> zu ermöglichen: <two>bei welcher Temperatur erfolgt der Hitzeschock</two> und wie lange dauert er an? Die <two>Hitzeschock-Temperatur</two> erfolgt bei <one>42°C</one> und dauert <one>5 Minuten</one>.
29
+ - Aus welchen <one>zwei Komponenten</one> besteht der <two>tac-promotor</two>? Aus dem <one>-35 trp-Promoter</one> und dem <two>-10 lac-Promoter</two>. []
30
+ - Give another name for <one>relatively short DNA molecules</one>. A: <one>Oligonucleotides</one>. URL: https://en.wikipedia.org/wiki/Oligonucleotide []
31
+ - Nenne <one>zwei Vorteile</one> der <two>transcription mediated amplificate</two> Methodik in der Virusdiagnostik gegenüber der PCR. A: (1) die Methode ist <one>isothermisch</one> (2) die Methode ist <one>viel schneller als die PCR</one>
32
+ - Can the <one>T4 DNA ligase</one> <two>join togeter blunt-ended DNA molecules</two>? Yes - under <one>appropriate conditions</one>. []
33
+ - <one>YACs</one> <two>can hold more DNA than</two> <three>BACs</three> but they have one huge problem. Which one? There is a problem of recombination and rearrangement of the cloned DNA within Yeast.
34
+ - Angenommen wir möchten ein <one>Fusionsprotein</one> synthetisieren. Kommt das Strukturgen hier tendenziell eher vor, oder nach, dem Reportergen, in linearer Anordnung? Das <one>Strukturgen</one> wird <two>vor</two> dem <three>Reportergen</three> eingebaut. []
35
+ - Die <one>Tth DNA-Polymerase</one> (<two>Thermus thermophilus</two>) besitzt eine reverse Transkriptaseaktivität bei 70°C. Was wird noch benötigt? <one>Mangan</one>.
36
+ - When we see something like <one>R.HindIII</one>, what do we know? That this is the <one>modification enzyme</one> that belongs to the HindIII restriction enzyme.
37
+ - <one>Southern Blotting</one> entstand <two>in welchem Jahre</two>? <one>1975</one>. URL: https://en.wikipedia.org/wiki/Southern_blot
38
+ - Die <one>T4 DNA Ligase</one> wird sehr oft in der modernen Gentechnik verwendet. Kurz formuliert, wie isoliert man dieses Enzym? Man reinigt <i>E. coli</i> Zellen, die zuvor mit dem T4 Phagen infiziert worden sind.
39
+ - Beim <one>Western Blotting</one>: <two>wieso wird hier (üblicherweise) ein elektrischer Strom benötigt</two>? Um die Proteine <one>vom Gel</one> <two>auf die Membran</two> <three>zu übertragen</three>.
40
+ - Name <one>two general ways</one> <two>how to transform bacteria</two>. A: (1) <one>chemical treatment via CaCl₂</one> (<two>heat shock</two>, then put it on ice) (2) <one>electroporation</one>
41
+ - <one>ARTP</one> is <two>a whole-cell mutagenesis tool</two>. What does ARTP stand for? <one>Atmospheric and room-temperature plasma</one>. This technique is based on radio-frequency atmospheric-pressure glow discharge plasma. URL: https://bioresourcesbioprocessing.springeropen.com/articles/10.1186/s40643-018-0200-1
42
+ - In der Gentechnik wird mitunter der chemilumineszente Farbstoff <one>Luminol</one> eingesetzt. <two>In welcher Farbe leuchtet dieser</two>? <lightblue>Leuchtend blau</lightblue>, wenn er mit einem <one>oxidierendem Agens</one> in Kontakt tritt.
43
+ - Nenne drei <one>Peptid-Tags</one> zur besseren Reinigung von Proteinen. A: (1) <one>His6-tag</one> (2) <one>FLAG-tag</one> (3) <one>GST-tag</one>
44
+ - Bei der <one>in-vitro-Fertilisation</one> (IVF): <two>wie erfolgt die Befruchtung</two>? Es handelt sich hier um eine <one>extrakorporale Befruchtung</one>.
45
+ - <one>Gibson Assembly</one> was developed by Dr. Daniel Gibson and colleagues. <two>Where did he work</two>? At the <one>J. Craig Venter Institute</one>.
46
+ - In der Gentechnik: was heisst <one>EMSA</one> und <two>wofür setzen wir diese Technik ein</two>? <one>EMSA</one> heisst <two>Electrophoretic mobility shift assay</two>. EMSA wird eingesetzt um <three>Protein-DNA</three> und <three>Protein-RNA</three> Interaktionen zu untersuchen.
47
+ - Die <one>Tth Polymerase</one> zeigt reverse Transkriptase-Aktivität wenn wir <two>was hinzufügen</two>? <one>Mangan</one>. Temperatur: bei 70° C.
48
+ - In der Gentechnik wird oft <one>2,4-Dinitrophenol</one> verwendet. <two>Warum</two>? Es besitzt eine <one>fluoreszierende Seitengruppe</one>. URL: https://en.wikipedia.org/wiki/2,4-Dinitrophenol
49
+ - Ich will eine Substanz gut lösen. Sollte ich eher Lösungsmittel verwenden die eine <one>hohe Dielektrizitätskonstante</one> haben, oder solche die eine <one>niedrigere Dielektrizitätskonstante</one> haben? Substanzen mit <one>hoher Dielektrizitätskonstante</one> sollten bevorzugt werden. []
50
+ - <one>Dansylchlorid</one> kann verwendet werden um die N-terminale Aminosäure zu bestimmen. Welcher Teil von <one>Dansylchlorid</one> heftet sich an die <two>N-terminale Aminogruppe</two> an? Der <one>O=S=O Teil</one>, über die Bindung zum Schwefel.
51
+ - Name <one>a method used in molecular biology</one> in where we can find a fusion protein as part of a reporter system. A: The <one>yeast two-hybrid system</one>. URL: https://en.wikipedia.org/wiki/Two-hybrid_screening []
52
+ - Die <one>radioaktive Markierung von Nukleotiden</one> erfolgt mittels welcher zweier Komponenten? (1) <one>[Gamma-³²P] ATP</one> (2) <one>T4 Polynukleotid Kinase</one>
53
+ - Es gibt den E. coli Stamm <one>BL21</one> der in der Gentechnik eingesetzt wird. <two>Wieso</two>? Er ist ein <one>Protease-armer Stamm</one>, und damit wichtig für die Proteinproduktion.
54
+ - What do we mean with a <one>gene drive</one>? This is <one>a genetic engineering technology</one> that propagates a particular suite of genes throughout a population by altering the probability that a specific allele will be transmitted to the offspring.
55
+ - What is a <one>cryoprotectant</one>? This is <one>a substance</one> that is used to <two>protect biological tissue from freezing damage</two> (which is damage due to ice formation).
56
+ - The <one>surveyor assay</one> is also used in <two>CRISPR</two>/<two>Cas9</two>. <three>What can we do with this assay ultimately</three>? The <one>Surveyor nuclease assay</one> is an enzyme mismatch cleavage assay. It can be used to detect single base mismatches or small insertions or deletions (indels). URL: https://en.wikipedia.org/wiki/Surveyor_nuclease_assay
57
+ - <one>1 Svedberg</one> is equivalent to <two>how many seconds</two>? <one>10⁻¹³</one> seconds.
58
+ - Wie entsteht <one>Biuret</one>? <one>Biuret</one> entsteht bei der <two>Pyrolyse von Harnstoff</two> durch Kondensation von zwei Molekülen Harnstoff, unter Abspaltung von einem Molekül Ammoniak.
59
+ - <one>After denaturation of dsDNA</one>: why must we <two>cool slowly</two>? So <one>that the DNA strands can renature</one>. If we were to cool rapidly, the strands would remain single stranded.
60
+ - <one>Welche Methoden</one> gibt es zur Herstellung <one>transgener Pflanzen</one>? (1) Agrobacterium tumefaciens (2) particle gun (scutellum, Pollenschlauch) (3) Protoplastentransformation (Elektroporation, PEG, Mikroinjektion) (4) <one>Plastidentransformation</one>
61
+ - <one>Mit welchem Verfahren</one> kann eine Proteinlösung getrocknet werden, unter <two>Beibehaltung der biologischen Aktivität</two>? Mit Hilfe der <one>Gefriertrocknung</one> (<two>Lyophylisation</two>). URL: https://de.wikipedia.org/wiki/Gefriertrocknung []
62
+ - In der Gentechnik: <one>andere Bezeichnung für die Methode nach Warburg und Christian</one>? <one>UV-Absorptionsbestimmung aromatischer Aminosäuren</one>.
63
+ - In der Gentechnik: woran bindet <one>Ponceau S</one>? <one>Ponceau S</one> bindet (reversibel) an <two>positiv geladene Aminogruppen</two> der Proteine. Es ist auch leicht abwaschbar. []
64
+ - Kann <one>Wasser</one< die <two>Fluoreszenz verringern</two>? Ja.
65
+ - How can we, <one>in the lab</one>, <two>verify whether two proteins are closely associated with one another</two>? We can employ a <one>co-immunoprecipitation assay</one>.
66
+ - If we wish to <one>eliminate RNA from a solution</one>, what may we do? We may add the enzyme <one>ribonuclease</one> (<royalblue>RNase</royalblue>). <two>This enzyme will digest the RNA in the preparation</two>. []
67
+ - Why could the <one>Radioimmunoassay</one> be considered an outdated method? Because radioactivity poses a potential health threat, so safer alternatives were sought.
68
+ - <one>Goldkolloide</one> werden zum Nachweis im biochemischen Labor eingesetzt, sind aber instabil, daher müssen <two>Stabilisatoren</two> eingesetzt werden. <three>Nenne zwei Beispiele hierfür</three>. A: (1) <one>Citrate</one> (2) <one>Tween 20</one>
69
+ - Bei der <one>Herstellung eines Agarosepolymers</one> - <two>wie hängt die Porengröße mit der Agarose zusammen</two>? Je <one>höher</one> die Agarose konzentriert ist, desto kleiner ist die Porengrösse.
70
+ - Gegeben sei ein biochemisches Labor. Wir haben eine <one>Quarzkuvette</one> sowie eine <one>Plastikkuvette</one>. <two>Wieso mögen wir eine Quarzkuvette einsetzen</two>? Um <one>im UV-Bereich zu messen</one>, zum Beispiel bei Proteinen.
71
+ - During <one>phage display</one>: <two>antigen-specific phage-displayed antibodies are allowed to bind to their targets</two>, in a process known as ... ? <one>Panning</one>. URL: https://en.wikipedia.org/wiki/Biopanning []
72
+ - In a <one>Gibson Assembly</one>: <two>the overlaps should be at the least n bp at their junctions</two>? At the least <one>30bp</one>.
73
+ - Können wir den Unterschied zwischen <one>NAD⁺</one> und <one>NADH</one> <two>im Labor messen</two>? <one>Ja</one> - sie haben eine unterschiedliche UV-Absorption, so das man <two>die Extinktion bei 340nm bestimmen kann</two>.
74
+ - The process for generating amino acid coding changes at the DNA level is called ... ? <one>Directed mutagenesis</one>.
75
+ - Hat die <one>Hybridomtechnik</one> einen <two>ökonomischen Vorteil</two> gegenüber den Display Techniken wie dem <three>Phage-Display</three>? Ja: die <one>Hybridomtechnik</one> ist <two>patentrechtlich</two> nicht geschützt. []
76
+ - Name <one>a publicly available database</one> that we could use in order to find out <two>where restriction enzymes cut</two>; and whether they may also recognize methylated sites. A: The database <one>REBASE</one>.
77
+ - Was ist das Ziel des <one>Bestrahlungs-Hybridzell-Verfahrens</one>? Die <one>Zerlegung eines Human-Chromosoms in kleinere Bruchstücke</one>.
78
+ - Bei den <one>Methoden zur Proteinanalyse</one> können wir zwischen <two>quantitativer</two> und <two>qualitativer Proteinanalyse</two> unterscheiden. Gib 3 Beispiele für quantitative Proteinanalyse und ein Beispiel für qualitative Proteinanalyse. A: Quantitativ (Gesamtproteinbestimmungen, Enzymaktivitätsbestimmungen, Immunologische Nachweismethoden), qualitativ (elektrophoretische Methoden).
79
+ - Der <one>Western Blot</one> mag dem <one>ELISA</one> ähnlich sein, aber die verwendeten Farbstoffe sind beim Western Blot meist schlechter. <two>Welchen Mangel haben sie vor allem</two>? Sie sind <one>zu kontrastarm</one> (BCIP / NBT).
80
+ - The enzyme <one>terminal transferase</one> does what? The terminal transferase <two>adds nucleotides to any available 3' terminus</two>.
81
+ - The <one>DIG Luminescent Detection Kit</one> can detect what exactly? It can detect <one>digoxigenin labeled nucleic acids</one>, by using an enzyme-immunoassay. URL: https://www.sigmaaldrich.com/AT/de/product/roche/11363514910
82
+ - Beim <one>Northern Blot</one> behandelt man die RNA mit <two>welchem Agens</two>, um die Sekundärstrukturen zu entfernen? Mit <one>Formaldehyd</one>.
83
+ - Wo finden wir ein <one>Peltier-Element</one>? In der Gentechnik, <one>im Heizblock</one> eines <two>Thermocyclers</two>. URL: https://de.wikipedia.org/wiki/Peltier-Element#Verwendung []
84
+ - Why is <one>M13</one> preferred in <two>phage display</two>? Because M13 is a non-lytic phage - and thus, it does not destroy the host bacterium during phage production.
85
+ - Wichtigste <one>Fällungsmethode für Nukleinsäuren</one>? Die <one>Alkoholfällung</one>. URL: https://de.wikipedia.org/wiki/DNA-Extraktion []
86
+ - <one>Radioactive tracers</one> have been used extensively in molecular biology for a long time. Name the four most common (and important) isotopes used here. A: (1) tritium ("3 H") (2) carbon-14 ("14 C") (3) <one>phosphorus-32</one> (<two>32 P</two>) (4) <one>sulphur-35</one> (<two>35 S</two>)
87
+ - How could we get rid of <one>RNA</one> in-vitro? We could employ <one>Ribonucleases</one>. []
88
+ - In der Gentechnik: nenne einen großen Vorteil (und Beweggründe für die Verwendung) des <one>cre</one>/<one>loxP</one> Systems. A: Man kann damit <one>Reportergene</one> oder <one>Resistenzgene</one> wieder loswerden, sprich: <two>entfernen</two>.
89
+ - <one>Following cell disruption</one>, most methods to <one>isolate DNA</one>/<one>RNA</one> involve a <two>deproteinisation</two> stage. This can be achieved by one or more extractions using <three>phenol</three> or <three>phenol</three>/<three>...</three> mixtures. A: <one>Phenol</one>/<one>chloroform mixtures</one>.
90
+ - What is meant with the expression <one>doped oligonucleotides</one>? <one>Doped oligonucleotides</one> usually refers to <two>the use of unequal amounts of each of the four standard dNTPs in oligonucleotide synthesis</two>.
91
+ - Nenne zwei <one>Nachteile</one> der <two>Methode nach Warburg und Christian</two>. A: (1) nur sehr grobe Bestimmung möglich, da der Anteil aromatischer Aminosäuren in Proteinen variabel ist (2) nur für optisch klare, ungefärbte Lösungen anwendbar
92
+ - Wir möchten <one>Cytoplasmamembranen verschmelzen</one>. <two>Welche zwei chemischen Verbindungen fördern dies</two>? (1) <one>Polyethylenglykol</one> (2) <one>Lysolecithin</one>
93
+ - What means <one>diauxic growth</one>? The cell first uses one sugar, then comes a lag phase, then comes another growth phase for the other sugar. So the growth rate is: <two>sugar-log-sugar</two>.
94
+ - Wie kann, im Labor, <one>RNA vor Degradation geschützt werden</one> (biochemischer Ansatz)? Man konserviert sie in einer <one>gesättigten Ammoniumsulfat-Lösung</one>.
95
+ - <one>Ribosome profiling</one> ermöglicht was genau? <one>Ribosome profiling</one> ermöglicht die Identifikation all jener mRNAs, die gerade translatiert werden.
96
+ - <one>Why</one> do we have to <two>use a polyacrylamid gel</two> for <three>protein separation</three>? Proteins are a lot <one>smaller</one>, on average, than DNA, and <two>polyacrylamide gel yield smaller gaps than Agarose gels</two>.
97
+ - Bei <one>Absorptionsmessungen im UV-Bereich</one> (etwa 200 nm - 400 nm) müssen Küvetten aus ... verwendet werden. A: Aus <one>Quarz</one>. Glas oder Kunststoff hingegen absorbieren bei dieser Wellenlänge.
98
+ - Are Microarray data quantiative? No; they are at best semi-quantitative.
99
+ - The <one>diameter</one> of a typical <two>DNA microarray</two> is ... ? About <one>2cm</one> square.
100
+ - Bei einer <two>Mutationsanalyse</two>: was bedeutet zum Beispiel <one>fsGlu471</one>? <one>Fs</one> steht für Frameshift, Glu471 ist die letzte Aminosäure.
101
+ - For <one>RNA</one> used in gel electrophoresis, <two>which substance is used to pre-treat RNA with</two>? <one>Glyoxal</one>. URL: https://en.wikipedia.org/wiki/Glyoxal
102
+ - Ist die <one>knock-out Strategie</one> in ihrer Anwendung bei Mäusen limitiert? Ja. Manche knock-outs sind <one>embryonal letal</one>, wie zum Beispiel die <two>bone morphogenetic proteins</two>.
103
+ - Name a property that distinguishes a protein that remains in the cytoplasm from one that is secreted. A: A <one>signal peptide</one> (<peru>leader peptide</peru>) can be found at the <two>protein's N-Terminus</two>.
104
+ - Which <one>metal</one> is used for the <two>biuret reagent</two>? <two>Cu²⁺</two> (<one>cupric ions</one>). URL: https://en.wikipedia.org/wiki/Biuret
105
+ - In der Gentechnik: was heisst <one>LacIq</one>? <one>Lac-Repressor Gen</one>.
106
+ - Name a fairly old technique that can be classified under <one>targeted DNA recombination</one>. A: The <one>Cre-lox</one> recombinase, which is owned by <two>Dupont</two>.
107
+ - Beim <one>Westernblot</one>: <two>wo</two> ist die Transfer Direction und wo sind die Pole? Die Transfer Direction geht von oben nach unten. Oben ist die "Kathode" (- geladen), Unten ist die "Anode" (+ geladen).
108
+ - In der Gentechnik: nenne <one>fünf verschiedene Chromatographie-Methoden</one>. A: (1) <one>Adsorptionschromatographie</one> (2) Affinitätschromatographie (3) Ausschlusschromatographie (4) Verteilungschromatographie (5) <one>Ionenaustauschchromatographie</one>
109
+ - Welche <one>drei Einzelschritte</one> finden beim <two>Western Blot</two> Anwendung? (1) Trennung der Proteine mittels eines Polyacrylamide Gel (2) Blotting of Proteins to nylon-Membrane ("Blotting Step") (3) Identifizierung der Proteine mit Hilfe spezifischer Antikörper
110
+ - Mittels <one>chromatographer Verfahren</one> kann man <two>DNA fällen</two>. <three>Welches Prinzip steckt dahinter</three>? DNA kann an Silikat binden (Säulen).
111
+ - In der Gentechnik gibt es bei den Pipetten die Bezeichnung <one>P20</one>, <one>P200</one> und <one>P1000</one>. <two>Was bedeuten diese Zahlen</two>? (1) <cadetblue>P20</cadetblue>: von <two>1-20 Mikroliter</two> (2) <cadetblue>P200</cadetblue>: von <two>20-200 Mikroliter</two> (3) <cadetblue>P1000</cadetblue>: von <two>100-1000 Mikroliter</two>
112
+ - <one>MAGE</one> is the technique called multiplex automated genome engineering. What is meant with that technique, in regards to molecular genetics? Here multiplexing refers to the process of inserting several small pieces of synthetic DNA into a genome at multiple sites, simultaneously.
113
+ - The <one>QPix 400 Series</one> is a technical example for a ... ? <one>Microbial Colony Picker</one>.
114
+ - The <one>P-1000 pipette</one> can take up what type of volumes, as <two>range</two>? From <one>100 µl - 1000 µl</one>.
115
+ - Bei der <one>hochauflösenden Schmelzkurvenanalyse</one> (<two>high resolution melting</two>) erfolgt ein schrittweiser Temperaturanstieg, in Änderungen von bis zu ... °C. A: Bis zu <one>+0.05 °C</one>. []
116
+ - Im Labor eingesetzt: wie nennen wir <one>RNAi</one> noch? <one>Knock-down Technik</one>. URL: https://en.wikipedia.org/wiki/Gene_knockdown
117
+ - In <one>phage display</one>: why was the name <two>display</two> chosen? Because our "protein of interest" will be displayed, aka shown, on the surface of the phage, aka its outside - e. g. because it is part of the "phage coat protein".
118
+ - Name one limitation of the classic <one>yeast two-hybrid screens</one>. A: They are limited to <one>soluble proteins</one>.
119
+ - Why is <one>dideoxynucleotide</one> useless for a cell? A dideoxynucleotide has a 3' H group rather than a OH group and thus can not function in a Nucleotide-polymer (like DNA).
120
+ - Im <one>yeast tiling array</one>: <two>was zeigen starke Signale an</two>? <one>Exons</one>.
121
+ - Nenne drei Probleme beziehungsweise Gefahren beim <one>Zellaufschluss</one>. A: (1) <one>Denaturierung des Produktes</one> (2) <one>Oxidation des Produktes</one> (3) <one>Angriff von proteolytischen Enzymen</one>
122
+ - In gene technology, in the <one>Gibson Assembly</one> System, we require <two>three enzymes</two>. Which ones are these? A: (1) <one>T5 exonuclease</one> (2) thermostable DNA polymerase (~ Phusion polymerase) (3) <one>Taq DNA Ligase</one>
123
+ - Name <one>four factors</one> that can increase the success rate of transformation in bacteria, within the lab. A: (1) Treatment with <one>calcium chloride</one> (2) Treatment through a <one>heat shock</one> (3) Making use of an electrical field (4) Using <one>high concentrations of DNA</one>
124
+ - Name one big disadvantage of <one>electroporation</one>. A: There is <one>a high mortality</one> accompanying the <two>transfection conditions</two> - often more than 50% of the cells die.
125
+ - Was heisst <one>OD 260</one> in der Gentechnik? <one>Optische Dichte</one> (einer Substanz) bei einer Wellenlänge von <two>260 nm</two>. []
126
+ - Wenn wir <one>RNA denaturieren wollen</one> und <two>DMSO</two>, bei 50°C einsetzen, müssen wir anschliessend kovalent modifizieren. Dies geschieht mit welcher Substanz? <one>Glyoxal</one>.
127
+ - <one>Seit welchem Jahr</one> kann man die Sequenz klonierter Gene bestimmen? Seit dem Jahr <one>1975</one>.
128
+ - <one>When</one> was <two>Gibson assembly</two> invented? In the year <one>2009</one>.
129
+ - Name a simple difference between <one>phage display</one> and <one>ribosome display</one>. A: (1) <one>Phage display</one> is an in-vivo method. (2) <one>Ribosome display</one> is <two>an in-vitro method</two>.
130
+ - <one>Type I restriction enzymes</one> have the <two>HsdS</two> component. Why is this component important? It is important to determine the specificity of the recognition (e. g. <one>DNA-binding</one>).
131
+ - The enzyme <one>luciferase</one> is often used in gene technology. <two>How large is this protein, in kDa</two>? <one>62 kDa</one>.
132
+ - Nenne <one>zwei Methoden</one> <two>wie man Protoplasten fusioniert</two>. A: Durch (1) PEG (Polyethylenglukol) oder durch (2) <one>elektrische Impulse</one>.
133
+ - Im <one>Yeast TRI-Hybrid System</one>: <two>was wird als dritte Komponente verwendet</two>? <one>RNA</one>.
134
+ - Bei welcher Technik kommt es zu einer <one>Phänotyp – Genotyp Kopplung</one>? Beim <one>Phage Display</one>.
135
+ - <one>Which company</one> created <two>the first (partially) automated DNA sequencer</two>? <one>Applied Biosystems</one>.
136
+ - <one>Welches Enzym</one> können wir verwenden für die <one>3' Endmarkierung</one>? Die <one>terminale Deoxynukleotidyl-Transferase</one>.
137
+ - Name a technique that is used in eukaryotes, when one wishes to <one>undertake site-specific recombination</one>. A: The <one>Cre</one>/<one>lox system</one>. URL: https://en.wikipedia.org/wiki/Cre-Lox_recombination
138
+ - Essentiell bei der <one>Bisulfit-Konvertierung</one> ist die vollständige Umwandlung von unmethylierten Cytosin-Basen in Uracil. Nenne hierzu einen notwendigen - und wichtigen - physikalischen Parameter, damit die Konvertierung funktioniert. A: Die Temperatur muss hoch sein.
139
+ - In der Gentechnik: was ist ein <one>Quencher</one>? Ein <one>Quencher</one> ist ein Molekül das eine Fluoreszenz auslöscht.
140
+ - <one>Phage Display</one> kann auch kommerziell wofür genau eingesetzt werden? Für die <one>Antikörperproduktion</one>.
141
+ - Name a <one>chelating agent</one> that can be used to <two>remove metal ions</two>. A: <one>EDTA</one> (<two>ethylene diamine tetraacetate</two>).
142
+ - Nenne eine Alternative zu <one>Ethidiumbromid</one>. A: <one>SYBR Green I</one>. URL: https://en.wikipedia.org/wiki/SYBR_Green_I []
143
+ - Welche Proteine sind schlecht geeignet für das Yeast-two-hybrid System? Membranproteine. Der Grund ist dasb eide Hybridproteine in den Kern müssen.
144
+ - Was ist mit dem Begriff <one>Blotten</one> gemeint? Dies meint <one>die Übertragung bestimmter Substanzen auf eine Membran</one>, die dann an dieser Stelle detektiert werden kann.
145
+ - In gene technology: when dealing with <one>eukaryotic organisms</one>, the first major decision is whether to begin with ... or with ... A: (1) <one>messenger RNA</one> (<two>mRNA</two>) (2) <one>genomic DNA</one> []
146
+ - Wie erreichen wir eine <one>gerichtete Integration</one> in einem Vektor? Wir <one>verwenden zwei verschiedene Restriktionsenzyme</one> (beziehungsweise Restriktionsschnittstellen). []
147
+ - <one>Cells</one> are often grown in <two>culture-grade plastic dishes</two>. What is the usual diameter of these dishes, in mm? <one>100 mm</one>.
148
+ - Benötigen alle <one>Luciferasen</one> ATP für ihre Reaktion? Nein. Die <one>Renilla-Luciferasen</one> benötigen kein ATP.
149
+ - Wenn wir <one>X-Gluc</one> als Substrat für ein Reportergen verwenden, beziehen wir uns auf welches Reportergen genau? Auf das <one>Glucuronidase Gen (GUS)</one>.
150
+ - In der Gentechnik: was sind <one>tac</one> und <one>trc</one>? Dies sind <one>Hybridpromotoren</one>, bestehend aus trp- und lac-Promotor (-35-Region und -10 Region).
151
+ - Das <one>Folin-Ciocalteu Reagens</one> bei der <two>Proteinbestimmung nach Lowry</two> enthält <three>welches Sulfat</three> und wieviel davon in g? <one>150 g Lithium Sulfate</one>.
152
+ - <one>Which enzyme</one>, among the known thermophilic DNA-Polymerases, has <two>the lowest error rate</two>? The <one>Pfu-Polymerase</one>. URL: https://en.wikipedia.org/wiki/Pfu_DNA_polymerase []
153
+ - Do <one>restriction enzymes</one> exist that <two>can cleave methylated DNA</two>? Yes; for example, <one>DpnI</one> cleaves only methylated <two>G-m6-ATC</two> areas.
154
+ - Die <one>Tfl-Polymerase</one>: was heisst <three>Tfl</three>? <one>Thermus flavus</one>. URL: https://pubmed.ncbi.nlm.nih.gov/7295821/ []
155
+ - What is <one>site saturation mutagenesis</one>? <one>Site saturation mutagenesis</one> is <two>a random mutagenesis technique</two> used in protein engineering, in which a single codon (or set of codons) is substituted with all possible amino acids at the position.
156
+ - Nach welchen Eigenschaften können wir <one>Proteine trennen</one>? (1) <one>Molekulargewicht</one> (2) <one>elektrische Ladung</one>
157
+ - <one>Trizol</one> consists of <two>which two components</two>? (1) <one>phenol</one> (2) <one>guanidine isothiocyanate</one>
158
+ - What do we mean with <one>exo-Klenow</one> and why is this relevant in gene technology? This is a Klenow-fragment that lacks both 3'-5' and 5'-3' exonuclease activity. The exo-Klenow fragment is used in some fluorescent labeling reactions for microarrays. URL: https://en.wikipedia.org/wiki/Klenow_fragment#The_exo-_Klenow_fragment
159
+ - Arbeitet man bei der <one>Chromatin-Immunopräzipitation</one> mit lebenden Zellen? Zu Beginn ja - aber die <one>Fixierphase</one>, die man für die stabile Interaktion zwischen DNA und Histonen benötigt, tötet die Zellen ab.
160
+ - Was meinen wir mit einer <one>gDNA-Genbank</one>? Eine Genbank, die aus <one>genomischer DNA</one> besteht.
161
+ - We usually employ a restriction enzyme to cut the whole DNA and thus <one>perform a complete digestion</one>. Sometimes we may want to do only a <two>partial digestion</two>, for various reasons. Name two simple ways in the lab how to perform such a "partial digestion" of DNA. A: (1) alter the "enzyme concentration", e. g. use less of the restriction enzyme (2) <one>decrease the incubation time</one>
162
+ - Wenn wir zu einer DNA <one>Isopropanol</one> geben, passiert was? Die <one>Löslichkeit dieser DNA wird verringert</one>; die DNA fällt dadurch aus.
163
+ - Die <one>UIZmaTM DNA-Polymerase</one> stammt aus welchem Organismus? <one>Thermotoga maritima</one>, ein Bakterium (Merkhilfe: <two>ma</two> im Namen kann mit <two>maritima</two> assoziiert werden). URL: https://en.wikipedia.org/wiki/Thermotoga_maritima
164
+ - Give an example why we may wish to <one>dephosphorylate DNA</one>, in the laboratory. A: This may be used to <one>prevent self-ligation</one>. []
165
+ - <one>Luminol</one> is used in forensic sciences at crimes scenes. Why? <one>Luminol</one> will bind to <two>hemoglobin</two>, which is part of the red blood cells. Thus, owing to Luminol, <three>we can detect blood present at the crime scene</three>.
166
+ - What is meant with the term <one>gene knockout technology</one>? Gene knockout technology refers to the targeted inactivation of particular genes.
167
+ - Nenne sechs Methoden <one>Nukleinsäuren zu markieren</one>. A: (1) fill in (2) PCR (3) Photobiotinylierung (4) Primerverlängerung (5) Nick Translation (6) 5 Strich bzw. 3 Strich Endmarkierung.
168
+ - If we wish to <one>kill fungi in a cell culture</one>, what may we use? <one>Amphotericin B</one> - it will poke a hole in the fungal cell. URL: https://en.wikipedia.org/wiki/Amphotericin_B
169
+ - Die Abkürzung <one>IsoAmp</one> steht für ... ? <one>Isothermale Amplifikation</one>.
170
+ - Give another name for <one>DNA-synthesizers</one>. A: <one>Gene Machines</one>. []
171
+ - What is <one>YEp</one>? <two>YEp</two> is the <one>Yeast episomal plasmid</one>. URL: http://www.asiyakm.yolasite.com/yep.php []
172
+ - Nenne eine konkrete Anwendung des <one>Bakteriophagen M13</one> in der Gentechnik, ausgenommen <two>phage display</two>. A: Die <one>Kunkel-Methode</one>.
173
+ - Sie wollen einen spezifischen Antikörper aus dem Serum eines immunisierten Kaninchens aufreinigen. <one>Welche Methode könnte hierfür eingesetzt werden</one>? Die <one>(Bio)affinitätschromatographie</one>. URL: https://de.wikipedia.org/wiki/Affinit%C3%A4tschromatographie
174
+ - <one>Welche Technik</one> konnte verwendet werden um <two>multiple Bindungsstellen für Transkriptionsfaktoren im Enhancerbereich des SV40 Virus-Genoms</two> zu entdecken? Die <one>saturierende Punktmutagenese</one>.
175
+ - How can we experimentally measure <one>DNA separation</one>? By making use of <one>ultraviolet absorption</one>, i.e. through a <two>spectrometer</two>.
176
+ - Wie ist ein <one>Polyacrylamidgel</one> <two>quervernetzt</two>? Über <one>Methylenebisacrylamide</one> (<two>Methylene-bisacryl-amide</two>).
177
+ - Kann bei der <one>Gelelektrophorese</one> quantifiziert werden? Ja, über eine <one>Farbdichtemessung</one> und Rückrechnung. Ist jedoch nicht besonders genau. []
178
+ - In <one>1985</one>, Thomas Kunkel introduced the <two>Kunkel technique</two>. The DNA fragment to be mutated is inserted into a phagemid, before it is then transformed into an E. coli strain deficient in two enzymes. <three>Give a specific example of such a phagemid</three>. A: <one>M13mp18</one>/<one>19</one>.
179
+ - Nenne zwei Möglichkeiten wie man die DNA-Doppelhelix, möglichst einfach, denaturiert. A: (1) durch <one>Erhitzen</one> (2) durch <one>Zugabe von Alkali</one>
180
+ - Die Proteinbestimmung nach Lowry dient zum quantitativen Nachweis von Proteinen. Beschreibe kurz die zwei Reaktionen dazu. A: (1) Erster Schritt ist die "Biuret-Reaktion". Ein blau-violetter Komplex wird zwischen den Peptidbindungen und den Kupfer(II)-Ionen in alkalischer Lösung gebildet. (2) Im zweiten Schritt wird Cu(II) zu Cu(I) reduziert. Dieses Cu(I) reduziert das gelbe Folin-Ciocalteu-Reagenz (Molybdän(VI) - und Wolfram(VI)-Heteropolysäuren) zu Molybdänblau. Die resultierende Blaufärbung wird zur quantitativen Bestimmung der Proteinkonzentration mittels Photometrie bei 750 nm, 650 nm oder 540 nm verwendet.
181
+ - <one>Edman-sequencing</one> requires <two>acidic</two> or <two>alkaline conditions</two>? <one>Edman-sequencing</one> requires <two>mildly alkaline conditions</two>. []
182
+ - Welche drei prinzipiellen Methoden des <one>Zellaufschlusses</one> können wir in der Gentechnik unterscheiden? (1) <one>enzymatisch</one> (2) <one>mechanisch</one> (3) <one>thermisch</one>
183
+ - Es gibt denaturierende Detergentien wie <one>SDS</one> (Natriumdodecylsulfat). Auch gibt es <two>CTAB</two>. Wofür steht dieser Name <two>CTAB</two>? <one>Cetyltrimethylammoniumbromid</one>.
184
+ - In what way is <one>T-DNA</one> from <two>Agrobacterium</two> transferred? As <one>ssDNA</one>. []
185
+ - Beim <one>Western Blotting</one>: <two>woran genau bindet der sekundäre Antikörper</two>? An die <one>FC-Region des primären Antikörpers</one>, ohne das dies die Bindung des primären Antikörpers an das Zielprotein verändert.
186
+ - Gegeben sei eine <one>UAS</one> (<two>Upstream activating sequence</two>). Wie finden wir die Rolle dieser UAS heraus? Mit Hilfe <one>gezielter Deletionsmutagenese</one>. Man löscht hier stückchenweise, und schaut nach ob - und was - sich danach ändert.
187
+ - Warum ist es technisch wichtig das <one>Proteine bei 280 nm</one> absorbieren und <two>DNA bei 260 nm</two>? Wir können so die <one>Reinheit von DNA messen</one>, und zwar indem wir bei 260nm und bei 280nm messen, und das Verhältnis (die <two>Ratio</two>) vergleichen.
188
+ - Erkläre den Begriff <one>gerichtete Integration</one> und wie wir dies erreichen könnten. A: Gerichtete Integration bezeichnet den <one>Einbau von DNA in einer bestimmten Richtung</one>. Dies kann erreicht werden, indem wir zwei verschiedene Restriktionsenzymschnittstellen verwenden und somit unterschiedliche Enden generieren.
189
+ - What is <one>Amplitaq</one>? <one>Amplitag</one> ist eine <two>gentechnisch veränderte Taq-Polymerase</two>. URL: https://www.thermofisher.com/order/catalog/product/N8080241 []
190
+ - In gene technology: what is meant with the term <one>directional cloning</one>? The DNA insert and the vector molecules are digested with two different restriction enzymes to create noncomplementary sticky ends at either end of each restriction fragment. This allows the insert to be ligated to the vector in a specific orientation and prevent the vector from self-ligation.
191
+ - In der Gentechnik beim <one>Ligation Assay</one>, wozu dient er? Wir setzen diesen Assay ein, um Information über mögliche Kontaminationen mit <one>Phosphatasen</one> und <one>Exonukleasen</one> zu erhalten.
192
+ - Warum wird in der Biochemie die <one>Proteinbestimmung nach Bradford</one> so häufig eingesetzt? Sie ist sehr einfach. []
193
+ - Wenn wir die folgenden <one>drei hitzestabilen DNA-Polymerasen</one> vergleichen (Taq, Pfu, Vent), gibt es eine davon die KEINE <two>3' → 5' Exonuklease-Aktivität</two> aufweist. Welche ist dies? Die <one>Taq-Polymerase</one> besitzt <two>keine 3'→5' Exonuklease-Aktivität</two>. []
194
+ - <one>Why</one> can we say that <two>transformation</two> is an inefficient process? <one>Only a very small percentage of competent cells do become transformed</one>.
195
+ - Wir können <one>Metallo-Proteasen</one> durch den <two>Einsatz von Chelatoren</two> inhibieren. Nenne zwei Beispiele hierzu. A: (1) <one>Citrat</one> (2) <one>EDTA</one>
196
+ - Chemisch betrachtet - wie unterscheidet sich <one>Coomassie Brilliant Blue G-250</one> von <two>Coomassie Brilliant Blue R-250</two>? Blue G-250 besitzt <two>zwei zusätzliche Methylgruppen</two>.
197
+ - Nenne ein <one>eukaryotisches Selektionsgen</one>. A: <one>npt</one> (<two>neomycin-Phosphotransferase</two>). URL: https://www.spektrum.de/lexikon/biologie/neomycin-phosphotransferase/45839
198
+ - What is a <one>double digest</one> in <two>gene technology</two>? When we <one>apply two restriction enzymes</one> (<royalblue>digests</royalblue>) <two>at the same time</two>.
199
+ - Which <one>three different outcomes</one> can happen when a restriction enzyme cuts dsDNA that includes its recognition site? (1) <one>blunt ends</one> can be generated (2) fragments with <one>protruding 3' ends</one> can be generated (3) fragments with <one>protruding 5' ends</one> can be generated
200
+ - The <one>Ion torrent</one> from Life Technologies has one huge advantage compared to other sequencing methods. Which one is that? It is <one>very cheap</one> in comparison to the light-detecting based machines such as a 454 Pyrosequencer.
201
+ - What is <one>the first consideration in constructing a genomic library</one>? The number of clones that are required.
202
+ - DNA kann durch die sogenannte <one>Feulgen procedure</one> markiert werden. Was ist hierbei das <two>staining compound</two>? Das <one>Schiffsche Reagenz</one>.
203
+ - Der <one>Northern Blot</one> (für RNA) wurde im Jahre 1977 an welcher Universität entwickelt? An der <one>Stanford University</one>, und zwar von den drei Herren J. C. Alwine, Kemp und Stark. []
204
+ - Ausser seiner Reversibilität: welchen weiteren Vorteil hat der <two>Ponceau S Farbstoff</two>, der beim <one>Western Blotting</one> eingesetzt wird? Er verändert nicht die Sequenz der Polypeptide.
205
+ - Nenne zwei mögliche <one>Nachteile</one> bei der <two>Verwendung prokaryoter Expressionssysteme</two>. A: (1) Es sind keine post-translationale Modifikationen möglich (außer Disulfidbrücken) (2) Es kann zur "Proteolyse" des rekombinanten Proteins kommen; dies ist primär ein Grund, wieso mit <one>Protease-defizienten Stämmen</one> gearbeitet wird.
206
+ - Was heisst das <one>Pfu</one> in der <two>Pfu polymerase</two>? <one>Pyrococcus furiosus</one>. URL: URL: https://en.wikipedia.org/wiki/Pyrococcus_furiosus []
207
+ - Both <one>biotin</one> and <one>digoxigenin</one> are linked to which nucleotide? <one>Uracil</one>. []
208
+ - Das <one>Glucuronidase-Gen</one> (GUS) kann als Reporter wirken in der Gentechnik. Nenne ein Substrat das es umsetzen kann. A: <one>X-Gluc</one> (5-Bromo-4-Chloro-3-Indolyl Glucuronid).
209
+ - In gene technology, what is the <one>Gibson Assembly System</one>? It is a high-efficiency <one>DNA end-linking technique</one> developed in 2009.
210
+ - The <one>Gateway cloning System</one> in use is based on ... ? The lambda <one>att sites</one>.
211
+ - The <one>chromosomal integration site</one> of a cloned gene can be <two>anywhere</two>? <two>No</two> - definitely <one>not within an essential gene</one>. []
212
+ - In which year, approximately, was <one>the original Tet Expression System</one> first described, aka the <two>Tet-Off system</two>? In the year <one>1992</one>. []
213
+ - Welche <two>Besonderheit</two> weisen manche <one>Typ II Restriktionsenzyme</one> auf? Sie <one>schneiden DNA sowohl upstream als auch downstream</one> von der recognition site. []
214
+ - Name one <two>disadvantage</two> of the <one>Northern Blotting</one> technique. A: A <one>Northern Blot</one> has a <two>low sensitivity</two>. []
215
+ - In der Gentechnik: was verbirgt sich hinter dem Akronym <one>FPLC</one>? <one>Fast protein liquid chromatography</one>. URL: https://en.wikipedia.org/wiki/Fast_protein_liquid_chromatography
216
+ - Bei den <one>TaqMan probes</one> gibt es ein Fluorophore. Wo genau ist dieses kovalent verbunden? An das <one>5' Ende der oligonucleotide probe</one>.
217
+ - Nenne ein Restriktionsenzym das <one>glatte Enden</one> herstellt. A: <one>Alu1</one>.
218
+ - Wie können wir die <one>Termination der Translation</one> verbessern? <one>Mehrere Stop-Codons hintereinander schalten</one>. []
219
+ - Some <one>restriction enzymes</one> can be sensitive to/for ...? <one>Methylation</one>.
220
+ - Bei der <one>Sticky feet Mutagenese</one>: was muss man bei den Primern beachten? Einer der beiden Primer hat ein Phosphat, muss also kinasiert (<one>phosphorylated</one>) vorliegen.
221
+ - Wie effizient ist die <one>Transformation von Plasmid-DNA in E. coli</one> über einen <two>CaCl₂-Heatshock</two>, in <three>Prozent</three>? Nur eine von 1000 Zellen (also <one>0.1%</one>).
222
+ - Bei der <one>Biuret-Methode</one> wird <two>Biuret</two> eingesetzt. Was ist <two>Biuret</two>? <one>Biuret</one> ist <two>eine organische Verbindung</two> aus der Gruppe der <three>Carbonsäureamide</three>, die sich von der Allophansäure (H2N-CO-NH-COOH) ableitet.
223
+ - Name a <one>technique</one> with which we could <two>detect oxidized proteins</two>. A: The <one>oxyblot</one>. URL: https://www.merckmillipore.com/AT/de/product/OxyBlot-Protein-Oxidation-Detection-Kit,MM_NF-S7150?ReferrerURL=https%3A%2F%2Fwww.google.at%2F
224
+ - What is the <one>net-effect</one> of adding sodium to dsDNA and heating up this solution (thus, affecting the Tm)? <one>More sodium increases the Tm</one>, as the positively charged sodium shields the negatively charged phosphate groups, thus making the overall complex more stable - and hence more resistant to denaturation events.
225
+ - <one>RNAse H</one> baut was ab? Eine <one>RNA-DNA Duplex</one> (genauer: den <two>RNA-Anteil</two> darin). []
226
+ - Why is the <one>T4 ligase</one> preferred in use in molecular biology, rather than <two>bacterial ligases</two>? Because the <one>T4 ligase</one> can also <two>join blunt ends</two>.
227
+ - Nenne 3 Möglichkeiten wie wir <one>DNA denaturieren können</one>. A: (1) Durch Temperatur, also durch <one>Hitze</one> (2) Durch eine <one>hohe Salzkonzentration</one> (3) Durch <one>Harnstoff</one>
228
+ - Name an <one>enzyme</one> that can induce a nick into dsDNA. A: The nuclease <one>DNase I</one>.
229
+ - The <one>Gibson Assembly</one> allows for ...? <one>The successful assembly of multiple DNA fragments</one>, regardless of fragment length or end compatibility. It thus is very suitable for <two>large DNA constructs</two>.
230
+ - Welche Methode ist <one>empfindlicher</one>: die Proteinbestimmung nach Lowry oder die Biuret-Methode? Die <one>Methode nach Lowry</one>. Er hat das Reagenz <two>Folin-Ciocalteu</two> hinzugefügt.
231
+ - In der Gentechnik verwenden wir die <one>Silberfärbung für Proteine</one>. Das ganze basiert auf der Komplexierung von Ag⁺ mit Aminosäuren-Seitenketten, vor allem welcher Seitenketten? (1) Sulfhydryl (2) <one>Carboxylgruppe</one>
232
+ - The <one>SmaI restriction enzyme</one> creates <two>blunt ends</two> or <two>sticky ends</two>? <one>SmaI</one> creates <two>blunt ends</two>. []
233
+ - Warum der Name <one>Isoelektrische Fokussierung</one>? Da es hierbei zu einer <one>Fokussierung von Proteinen</one> kommt.
234
+ - Was ist ein <one>nichtribosomales Peptid</one>? Dies ist <one>ein Peptid, das nicht an Ribosomen synthetisiert wurde</one>, sondern als Sekundärmetabolit durch bestimmte Enzyme - den <one>nichtribosomalen Peptidsynthetasen</one> (<three>NRPS</three>).
235
+ - Nenne ein konkretes Beispiel für eine Krankheit, die mit Hilfe eines <one>Southern Blots</one> nachgewiesen werden kann. A: Die <one>Sichelzellenanämie</one>.
236
+ - Worauf beruht das Prinzip der <one>Ionenaustauschchromatographie</one>? Das Prinzip der Ionenaustauschchromatographie beruht auf der elektrostatischen Wechselwirkung der Ladungen auf der Oberfläche der Proteine in einer Probe mit den entgegen gesetzten Ladungen der Säulenmatrix.
237
+ - Name one <one>disadvantage</one> of BACs. A: Only 1 copy per cell is possible, in regards to BACs.
238
+ - Um <three>Histone</three> zu untersuchen wird, zum Beispiel, welches <one>Detergenz</one> eingesetzt? <one>Natriumdodecylsulfat</one>.
239
+ - Was sind <one>Phagemide</one>? <one>Auf Phagen basierende Plasmide</one>, die den f1 <two>origin of replication</two> des f1 Phagen besitzen. URL: https://en.wikipedia.org/wiki/Phagemid
240
+ - Wie nennen wir eine <one>mit SDS beladene Aminosäurekette</one>? <one>Ellipsoide</one>. URL: https://www.chemie.de/lexikon/SDS-PAGE.html
241
+ - What does <one>Metabolomics</one> study? <one>Metabolomics</one> studies the <two>products of enzyme pathways</two>.
242
+ - Die <one>DMT-Schutzgruppe</one> in einem <two>phosphoramidite</two>, ist wo zu finden? Am 5'-Ende eines DNA-Nukleotids - also anstatt den 3 Phosphoratomen, die man normalerweise in einem Nukleotid finden würde.
243
+ - Bei der <one>Struvit-Fällung</one>: <two>welches Fällungsmittel</two> wird hier verwendet? <one>Magnesiumchlorid</one>. URL: https://de.wikipedia.org/wiki/Phosphorelimination#Problematik
244
+ - Nenne <one>eine quervernetzende Chemikalie</one>, die mit dem Buchstaben <two>F</two> beginnt. A: <one>Formaldehyd</one>. URL: https://de.wikipedia.org/wiki/Formaldehyd []
245
+ - How can we demonstrate experimentally that nerve growth factors are important for the development of the sympathetic and sensory nervous system? We can <one>use antibodies</one> that capture/eliminate these growth factors.
246
+ - Die <one>Polynukleotidkinase</one> überträgt Phosphatgruppe (3²P) von ATP worauf genau? Auf ein 5 prime-OH Ende Ende der Nukleinsäure.
247
+ - In der Gentechnik: was kann dank <one>Verwendung von ddNTPs</one> erreicht werden? <one>ddNTP</one> haben keine 3' OH-Gruppe, sodass <two>die Synthese unterbrochen wird</two>.
248
+ - Bei der <one>Biuret-Nachweismethode</one>: bei wieviel nm erfolgt die Messung der Farbintensität? Bei <one>540 nm</one>. (Mnemonic: <two>Biuret-540</two>)
249
+ - Andere Bezeichnung für den <one>Coomassie Blue Test</one>? Die <one>Bradford Methode</one>.
250
+ - Name one of the biggest practical problem in <one>RNA isolation</one> in the lab. A: RNA isolation is always vulnerable to ubiquitously present <one>RNases</one>. []
251
+ - The <one>volume of one cell unit</one> in a <two>classical 96-well</two> is ... ? <one>200 microliters</one>.
252
+ - Beschreibe möglichst kurz das <one>Glutathion-S-Transferase System</one>, das in <two>pGEX-Vektoren</two> verwendet wird. A: Dieses System besitzt einen <two>synthetischen tac-Promotor</two>, dem Strukturgen der Glutathion S-transferase (aus Schistosoma japonicum), des weiteren eine Sequenz für die enzymatische Spaltung des Fusionsproteins mit Proteasen ("Thrombin"), eine MCS für die Einbringung des Fremdgens, eine zusätzliche Kopie des Lac Repressors, sowie Antikörper gegen GST + Reinigung über Glutathion Sepharose.
253
+ - Why do we need <one>spacer molecules</one> in <two>chemical DNA synthesis</two>? The <one>spacer</one> <two>helps prevent the bases in the growing nucleotide chain from reacting with the glass bead surface</two>.
254
+ - Was ist eine <one>Platinöse</one>? Eine <one>Platin Draht-Impföse</one> ist eine Impföse, die beim <two>Überimpfen von mikrobiellen Kulturen</two> zum Einsatz kommt.
255
+ - Was ist die <one>Biotinylation</one>? Der Prozess der <one>kovalenten Verknüpfung</one> von <two>Biotin</two> an ein Protein.
256
+ - Does <one>Sanger-Sequencing</one> require a <two>primer</two>? Yes, of course. []
257
+ - Was heisst <one>FRET</one> und was kann man damit erreichen? <one>Fluorescence Resonance Energy Transfer</one>. Dient dem Nachweis der Interaktion von Proteinen.
258
+ - <one>Mit welchem Enzym</one> kann <two>ssRNA</two> aus einer DNA-Präparation entfernt werden? Mittels <one>RNase A</one>.
259
+ - <two>Wo</two> werden <one>Aptamere</one> markiert? Am <one>5' Ende des Nukleotides</one> (mit einem Fluoreszenfarbstoff); am 3' Ende ist <three>der Quencher</three> zu finden. []
260
+ - Wenn <one>5-Methylcytosin</one> deaminiert wird, was genau geht in Summe verloren? <one>NH₃</one>, wobei aber das eine H von Wasser stammt, nicht von dem Nukleotid.
261
+ - The <one>Tac-Promoter</one> is a synthetically produced DNA promoter, produced from the combination of promoters from the trp and lac operons. <two>What is the typical use case of this promoter</two>? <one>Protein production</one> in <two>Escherichia coli</two> (or other organisms, such as Pichia pastoris).
262
+ - Name <one>two ways</one> how to <two>lyse mammalian cells</two>. A: (1) <one>swell them</one> via a hypoosmotic buffer (2) lyse by addition of the non-ionic detergent Nonidet P40 (NP-40)
263
+ - <one>Nitrilhandschuhe</one> versus <one>Latexhandschuhe</one>: welche sind eher geeignet wenn wir mit <two>Ethidiumbromid</two> arbeiten müssen? <one>Nitrilhandschuhe</one>. Die <two>Latexhandschuhe sind für Ethidiumbromid sehr durchlässig</two>. []
264
+ - Was bedeutet der Begriff <one>Recombineering</one>? <one>Recombination-mediated genetic engineering</one>.
265
+ - Nenne eine <one>chemische Methode</one>, wie wir <two>Protein-Protein Interaktionen</two> untersuchen können. A: Via <one>cross-linking</one>. []
266
+ - Chemisch betrachtet besteht die <one>Agarose</one> aus welchen <two>zwei Untereinheiten</two>? <one>Agarose</one> ist ein Polysaccharid, das aus <two>D-Galaktose</two> und <two>3,6-Anhydro-L-galactose</two> besteht.
267
+ - What problem may <one>YACs</one> ("yeast artificial chromosomes") show? <one>Insert instability</one>.
268
+ - Was ist der <one>Southern blot on a stick</one>? <one>DNA DipStick Kit</one> (von <two>LifeTechnology</two>, jedoch scheint dies nicht mehr aktualisiert zu werden).
269
+ - Name <two>the three enzymes</two> used in <one>Gibson Assembly</one>, in correct order. A: (1) <one>5' -> 3' Exonuclease</one> (2) <one>DNA polymerase</one> (3) <one>DNA ligase</one>
270
+ - Was sind <one>leaky</one> Promotoren? Es werden bei einem <one>leaky</one> Promotor Genprodukte in geringen Mengen ohne Zugabe eines Inducers synthetisiert. Zellen ohne Plasmide haben einen Selektionsvorteil.
271
+ - <one>Histon H1</one> hat welche Aufgabe? Histon H1 <one>verschließt die Ein- und Austrittstelle der DNA am Histon-Oktamer</one>. []
272
+ - <one>Was</one> geht dem <two>Gibson Assembly</two> (technisch) voraus im Labor? Eine <one>PCR Amplifikation</one>. []
273
+ - <one>Techniques</one> such as <two>phage display</two> or <two>yeast display</two> or <two>ribosome display</two> can also be collectively called ... ? <one>Molecular diversity techniques</one>.
274
+ - How can we <one>delete the terminal parts of a protein</one>, in the lab? Via <one>PCR</one>. The <two>start codon</two> has to be on the <three>forward primer</three>.
275
+ - Provide another term for the <one>Maxam-Gilbert sequencing</one>. A: <one>Chemical sequencing</one>. URL: https://en.wikipedia.org/wiki/Maxam%E2%80%93Gilbert_sequencing []
276
+ - The <one>firefly luciferase</one> is <two>a metal-dependent enzyme</two>. What is its cofactor? <one>Mg²⁺</one>.
277
+ - <one>Group I restriction enzymes</one> have how many subunits? <one>3</one>.
278
+ - Warum sollten <one>Puffer</one> in der Gentechnik kein Licht mit Wellenlänge größer als 230 nm absorbieren? Viele spektrophotometrische Untersuchungen erfolgen in diesem Bereich, zum Beispiel die <one>Konzentrationsbestimmungen von DNA, RNA und Proteinen</one>.
279
+ - Give a specific use case for the <one>PFGE</one> (<two>Pulsed Field Gel Electrophoresis</two>). A: This gel electrophoresis is used for the separation of large DNA fragments (100 Kb and larger), which could not be separated in normal agarose gels. Separating the yeast chromosomes would be such a use case.
280
+ - Gegeben sind die drei Assays <one>Lowry-Assay</one>, <one>BCA-Assay</one> und <one>Bradford-Assay</one>. Welcher davon ist am empfindlichsten? Der <one>Bradford-Assay</one>. URL: https://en.wikipedia.org/wiki/Bradford_protein_assay []
281
+ - Wieso kann behauptet werden, das der <one>Western Blotting</one> auch ein <two>(semi-)quantitativer Assay</two> ist? Der <one>Western Blot</one> weist nicht nur nach ob ein Protein exprimiert und vorhanden ist, sondern über die Intensität eines Fleckes die Proteinmenge in Erfahrung bringen kann.
282
+ - The enzyme <one>micrococcal nuclease</one> is derived from ...? <one>Staphylococcus aureus</one>. URL: https://pubmed.ncbi.nlm.nih.gov/30887121/ []
283
+ - Wie unterscheidet sich <one>ddNTP</one> von <one>dNTP</one>? (1) <one>ddNTP</one> trägt am 3' Ende eine -H Gruppe. (2) <one>dNTP</one> hat am 3' Ende hingegen eine -OH Gruppe.
284
+ - Which <one>two parameters</one> are used to assess the success of <two>DNA-transformations</two>? (1) <one>transformation efficiency</one> (2) <one>transformation frequency</one>
285
+ - Welchen grossen <one>Vorteil</one> hat die Methode nach Warburg und Christian? Sie ist extrem einfach.
286
+ - Give another name for <one>Sanger sequencing</one>. A: <one>Dye-termination sequencing</one>.
287
+ - <two>Microinjection</two> is normally performed through which <one>special optical microscope</one>? The <one>micromanipulator</one>. URL: https://en.wikipedia.org/wiki/Micromanipulator []
288
+ - Name <one>two different kinds of vectors</one> in genetic engineering. A: (1) <one>shuttle vectors</one> (2) <one>expression vectors</one>
289
+ - Die natürliche <one>Taq-Polymerase</one> hat ein Problem, welches die <two>Tgo-Polymerase</two> nicht hat. Was könnte dies sein? Die Tgo-Polymerase kann bis zu 30 kb lange PCR-Produkte synthetisieren, die Taq-Polymerase hingegen nur etwa 6000 Nukleotide.
290
+ - Give another word for <one>Sanger Sequencing</one>? <one>Chain-termination sequencing</one>. URL: https://en.wikipedia.org/wiki/Sanger_sequencing []
291
+ - Der <one>erste rekombinante Plasmidvektor</one> war ... ? <one>pBR322</one>. URL: https://de.wikipedia.org/wiki/PBR322 []
292
+ - <one>CRISPR</one>/<one>Cas-9</one> can be used to modify genes. Name <two>a cellular actor</two> that is partially counteracting the CRISPR/Cas system. A: <one>p53</one>. URL: https://de.wikipedia.org/wiki/P53
293
+ - In <one>cDNA-synthesis</one>, after we employ <two>reverse transcriptase</two>, which enzyme could we use to create the final ds cDNA - aka how to degrade the looping ssDNA end there? We can make use of the <one>S1 nuclease</one>.
294
+ - In gene technology / lab work we employ use <one>PBS</one>. What does <one>PBS</one> stand for? <one>Phosphate-Buffered Saline</one>.
295
+ - Welches <one>'Papier'</one> kommt oft bei einem Northern Blot zur Anwendung? <one>Nitrocellulose</one>.
296
+ - Als <one>Zwitterion</one> liegt jede Aminosäure wie vor? Die Carboxysäure liegt <one>deprotoniert</one> vor, <two>COO-</two>. Die Aminogruppe <one>protoniert</one>, <two>NH3⁺</two>. []
297
+ - Wozu wird <one>Luminol</one> im Labor eingesetzt? Zum <one>Nachweis von Blutresten</one> (<two>Erythrocyten</two>).
298
+ - What is bizarre about <one>type I restriction enzymes</one>? They are <one>suicidal</one>. []
299
+ - What is <one>Gibson assembly</one>? This is <one>a molecular cloning method</one> which allows for the joining of multiple DNA fragments in a single, isothermal reaction.
300
+ - The <one>Vent-Polymerase</one> can <two>remain active at 95°C</two> for ... how long? For approximately <one>7 hours</one>.
301
+ - In a molecular biology lab: why may we want to employ <one>RNases</one>? In order to <one>get rid of unwanted RNA</one> in the preparation. []
302
+ - Which <one>resistance gene</one> is written down as <two>bla</two>? <one>Ampicillin</one>. (bla is: <two>beta-lactamase</two>, which can inactivate ampicillin).
303
+ - In der Genomik: wofür steht die Abkürzung <one>RACE</one>? <one>Rapid Amplification of cDNA ends</one>. []
304
+ - Nenne ein spezifisches Beispiel für einen <one>Agargel-Immunodiffusionstest</one> (ID) im Labor. A: Den <one>Coggins-Test</one>.
305
+ - In <one>Sanger sequencing</one>, we use both <two>ddNTPs</two> as well as <two>dNTPs</two>. Let us look at <three>dATP</three> and <three>ddATP</three>. Should we add more dATP or ddATP? The <one>concentration of ddATP</one> should be 1% of the concentration of dATP; thus <two>there will be fewer ddATPs than dATPs</two>. []
306
+ - Nenne zwei mögliche Gründe, wieso Kornberg zuerst die <one>DNA-Polymerase I</one> isolieren konnte, und nicht die <one>DNA-Polymerase III</one>. A: (1) <one>DNA Polymerase I</one> kommt in größerer Menge vor als die <two>DNA Polymerase III</two>. (2) <one>DNA Polymerase I</one> ist wesentlich stabiler als die <two>DNA Polymerase III</two>.
307
+ - Nenne <one>zwei Nachteile</one> der Proteinbestimmung nach Lowry. A: (1) <one>Zeitaufwändig</one> (2) <one>Störanfällig</one>
308
+ - <one>Luminol</one> ist ein Farbstoff der in einem biochemischen Labor verwendet werden mag. Dabei wird oft ein Enzym eingesetzt das die Oxidation von Luminol zu 3-Aminophthalate bewirkt. Welches Enzym ist dies? <one>Horseradish peroxidase</one> (<two>HRP</two>).
309
+ - Besitzt die <one>Taq-polymerase</one> eine <two>3'→5' Exonukleaseaktivität</two>? Nein. URL: https://en.wikipedia.org/wiki/Taq_polymerase []
310
+ - What hope did we have with <one>HACs</one>? The hope was that HACs could carry large human genes useful in <one>gene therapy</one>.
311
+ - <one>Maximale Kapazität</one> von Cosmiden? Etwa <one>47 kb</one>.
312
+ - For <one>cDNA synthesis</one> we often require a poly-A tract of the eukaryotic mRNAs; but not all mRNAs have a poly-A tail. What may we have to do in cases such as these? We may use <one>random oligonucleotide primers</one>, in order to <two>initiate cDNA synthesis</two>.
313
+ - Anderes, englisches Wort für <one>plasmid</one>, insbesondere in der Gentechnologie. A: <one>Minichromosome</one>.
314
+ - Die <one>DNA Ligase</one> ist ein sehr wichtiges Enzym in der modernen Gentechnik. Welche Variante der DNA Ligase kommt hierbei am häufigsten zum Einsatz? Die <one>T4 DNA ligase</one>. URL: https://de.wikipedia.org/wiki/T4-DNA-Ligase []
315
+ - What is a <one>southwestern blot</one>? A blot that <one>identifies DNA-binding proteins</one>, such as <two>transcription factors</two>, using labelled oligonucleotide probes.
316
+ - In der Gentechnik: was ist mit dem Begriff <one>Tags</one> gemeint? <one>Tags</one> besitzen eine <two>Proteasespaltungsstelle</two> und werden durch Proteasen vom Protein getrennt.
317
+ - Warum mögen zusätzliche <one>Peptidsequenzen</one> ein Vorteil in der Gentechnik sein? Da die <one>Reinigungsstrategie</one> dank zusätzlicher Tags (Beispiel: Hexahistidin-Tags) stark vereinfacht ist.
318
+ - Beim <one>Western Blotting</one>: welche Ladung muss die Membran tragen, damit die Proteine an ihr haften bleiben? <one>Positiv</one>, da die Proteine selbst aufgrund des <two>SDS-Überzug</two> eine negative Ladung tragen. []
319
+ - We wish to purify proteins and use fusion proteins, but host proteases may degrade them. Can we circumvent this? Yes - by <one>protease inhibitors</one> or by <two>using protease-deficient mutants</two>.
320
+ - Nenne <one>drei verschiedene Methoden die Wasserstoffbrücken in der DNA zu lösen</one>. A: (1) Durch <one>Temperatur</one> (2) Durch <one>hohe Salzkonzentrationen</one> (3) Mittels <one>Harnstoff</one>
321
+ - Nenne <one>zwei Methoden zur präparativen Aufreinigung von Oligonukleotiden</one>. A: (1) <one>IEX-HPLC</one> (2) <one>Polyacrylamid-Gelelektrophorese</one>
322
+ - <one>SLIC Cloning</one>: the C stands for Cloning but what is the full translation of SLIC here? <one>SLIC</one> stands short for <two>Sequence and Ligation Independent Cloning</two>.
323
+ - <one>Transformation</one> as a term is likely to cause confusion in animal cells. Which alternative words can be used for this word? <one>Transfection</one>. URL: https://en.wikipedia.org/wiki/Transfection []
324
+ - What is the general use case for the <one>Ames test</one>? <one>To estimate the carcinogenic potential of a compound</one>. It is also a fairly quick assay, compared to using other tests on eukaryotes (such as via rats). URL: https://en.wikipedia.org/wiki/Ames_test []
325
+ - Bei der <one>Quantifizierung des Gesamtproteins</one>: <two>welche Tests</two> werden hier generell verwendet? Ausschliesslich <one>photometrische (colorimetrische) Tests</one>. []
326
+ - Die chemische Synthese von Peptiden erfolgt <one>nach welchem Verfahren</one>? Nach dem <one>Merrifield-Verfahren</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese []
327
+ - Name two conditions that can cause <one>star activity</one>. A: (1) <one>too much glycerol</one> (2) <one>incorrect ion concentrations</one>
328
+ - <two>Wann</two> wurde die <one>Northern Blot Methode</one> eingeführt? <one>1977</one>, an der Stanford Universität. URL: https://en.wikipedia.org/wiki/Northern_blot []
329
+ - In <one>synthetic biology</one>: what might we mean with <two>SP</two>? <one>Secreted Protein</one>. []
330
+ - Andere Bezeichnung für <one>kurze, künstliche Nukleotide</one>? <one>Aptamere</one>. []
331
+ - Until the middle of the year <one>2008</one> haben Forscher welche drei Pflanzengenome sequenziert? (1) <one>arabidopsis</one> (2) <one>rice</one> (3) <one>poplar</one>
332
+ - Name <one>a technique</one> that can introduce DNA into a cell via a <two>physical method</two>. A: <one>Microinjection</one>.
333
+ - Why may we want to use the enzyme <one>alkaline phosphatase</one> in a molecular biology laboratory? This enzyme is used to <one>prevent unwanted ligation of DNA molecules</one>. []
334
+ - In der Biochemie ist die Methode nach Lowry (mit Folin-Ciocalteau-Reagens) empfindlicher. Die Messung erfolgt bei welcher Wellenlänge? Bei <one>750 nm</one>.
335
+ - Where does the term <one>clone</one> come from, in <two>gene technology</two>? The term <one>clone</one> comes from the colonies of identical host cells produced during amplification of the cloned fragments.
336
+ - Give another name for <one>in-vitro mutagenesis</one>. A: <one>Site-directed mutagenesis</one>.
337
+ - Wie heisst <one>Pipette</one> auf englisch? <one>Pipette</one> - es gibt aber auch den <one>pipetman</one>. []
338
+ - <one>Sanger sequencing</one> requires how many different reactions? <one>Four</one>. []
339
+ - Name the <one>four general steps</one> found in the <two>Gibson Assembly system</two>. A: (1) 5' exonuclease chews back 5' ends (2) DNA fragments anneal (3) DNA Polymerase extends the 3' ends (4) DNA ligase seals the nicks
340
+ - How is the <one>Tac-Promoter</one> abbreviated? <one>Ptac</one>. URL: https://en.wikipedia.org/wiki/Tac-Promoter []
341
+ - <one>Vorteil der Silberfärbung</one> gegenüber der <three>Coomassie Blau-Färbung</three>? Die <one>Silberfärbung</one> ist <two>empfindlicher</two>, aka sensitiver. []
342
+ - Es gibt mindestens folgende drei thermostabile DNA-Polymerasen: <one>Taq</one>, <one>Pfu</one>, <one>Vent</one>. Aus welchen Organismen stammen die? (1) <two>Taq</two> aus <one>Thermus aquaticus</one>. (2) <two>Pfu</two> aus <one>Pyrococcus furiosus</one>. (3) <two>Vent</two> aus <one>Thermococcus litoralis</one>.
343
+ - The <one>origin</one> in <two>pBR322</two> originally came from ... ? From the <one>E. coli</one> Colicin <two>ColE1 plasmid</two>. URL: https://en.wikipedia.org/wiki/ColE1
344
+ - Name <one>five factors</one> that affect the denaturation and renaturation of <two>nucleic acid duplexes</two> in short form. A: (1) <one>base compositon of the DNA</one> (2) the hybrid length (3) the temperature (4) the amount of mismatches in % (5) DNA concentration
345
+ - Name a constraint of <one>Exonucleases</one>. A: They can attack <one>either</one> the <two>3' end</two> <one>or</one> the <two>5' end</two> - but <one>not both</one>. []
346
+ - Give an example for a very old <one>plasmid vector</one>. A: The plasmid vector <one>pBR322</one>. URL: https://de.wikipedia.org/wiki/PBR322 []
347
+ - Is there a way to identify whether we have <one>proofreading polymerases</one>, based on a sequence alone? Yes. <one>Proofreading polymerases leave blunt ends</one>, unlike Polymerases such as the <two>Taq polymerase</two>.
348
+ - Was ist die <one>Standardmethode</one> zur <two>Fällung von DNA</two> aus wässriger Lösung? Die <one>Ethanolfällung</one>. URL: https://de.wikipedia.org/wiki/DNA-Extraktion#Ethanolf%C3%A4llung []
349
+ - Bei der <one>Isolierung von Proteinen</one>: was muss man oft zusetzen? <one>Protease-Inhibitoren</one>. URL: https://de.wikipedia.org/wiki/Proteaseinhibitoren []
350
+ - What happens in <one>flow sorting</one>? We sort and separate cells based on properties measured in the flow.
351
+ - <one>DNA-Ligasen</one> verwenden allgemein was für einen Co-Faktor? <one>ATP</one> (zum Beispiel T4 DNA-Ligase) oder NAD+ (z. Bsp. E. coli DNA-Ligase). []
352
+ - What is the <one>trc regulatory element</one>? (1) <one>trp promoter</one> (2) <one>lac operator</one>
353
+ - What does <one>A-T cloning</one> mean? The <one>vector DNA</one> must have <two>A overhangs</two>; the <one>new sequence</one> must have <two>T overhangs</two>.
354
+ - <one>Wie</one> können Proteine mit einem <two>His-Tag</two> isoliert werden? Mit Hilfe einer <one>Nickel-Säule</one>. []
355
+ - In the lab: how can we <one>identify messenger RNA derived from specific genes</one>? Through a <one>Northern Blot</one>.
356
+ - Welches Enzym dient oft als Referenzwert bei einem <one>Western Blots</one>? <one>GAPDH</one>, aus der Glykolyse.
357
+ - We can <one>isolate eukaryotic mRNA</one> by oligo(dT) how? By <one>making use of Resin</one>.
358
+ - The efficiency of <one>yeast recombineering</one> is limited by ... ? <one>Competing repair pathways</one>, such as "non-homologous end joining" (<two>NHEJ</two>).
359
+ - <one>Site-directed mutagenesis</one> was first achieved in the laboratory of Charles Weissmann. In what year? In the year <one>1974</one>. []
360
+ - In <one>tissue culture</one> we often use <two>the PETRI dish</two> because it is cheap. Name a better but more expensive method. A: <one>Tissue culture FLASK</one>.
361
+ - What specifically does the <one>Ames test</one> test for? <one>Whether a given chemical can cause mutations in the DNA of the test organism</one> (a bacterium).
362
+ - <one>When</one> do we have to use <two>degenerate PCR primers</two>? When we wish to target an unknown gene (in another organism).
363
+ - Why does an <one>Agrobacterium BAC</one> have an Ori T locus? This <one>Ori T locus</one> is required for <two>triparental mating</two>.
364
+ - <one>Type II restriction enzymes</one> require only one cofactor. Which one? <one>Mg²⁺</one>.
365
+ - How do we call the <one>restriction enzymes within a bacterial cell</one>? The <one>restriction-modification system</one>.
366
+ - In einem molekularbiologischen Labor: <one>wie</one> lösen wir bakterielle Zellwände auf? Mit Hile eines <one>Lysispuffers</one>.
367
+ - What does <one>lacZ'</one> code for? <three>lacZ'</three> codes for the <one>aminoterminal portion</one> of the enzyme <two>Beta-Galactosidase</two>. []
368
+ - Name an example for a <one>physical transfection procedure</one> for cells. A: <one>Electroporation of the cells</one>. []
369
+ - What is meant with the term <one>transient transfection</one>? This is the case when foreign DNA, such as a bacterial plasmid, is introduced into mammalian cells. Most of this DNA is <one>lost within days</one>. This process is therefore referred to as <two>transient</two>.
370
+ - Beim <one>Phosphoramidit Verfahren</one>: wieso wird <two>Thymin</two> ignoriert? <one>Thymin</one> besitzt keine Amino-Group.
371
+ - <one>Hefezellen</one> können transformiert werden, aber zuerst müssen wir die <two>Glucan-Zellwand</two> entfernen. Wie geschieht dies? Mit Hilfe des Enzyms <one>Zymolyase</one>. URL: https://www.zymoresearch.eu/zymolyase []
372
+ - Was sind die <one>BHK</one>-Zelllinien? <one>Baby Hamster Kidney Zelllinie</one>.
373
+ - <crimson>Ponceau S</crimson> ist ein Farbstoff für <one>rapid reversible staining</one>. Bei welcher Technik wird er vor allem eingesetzt? Beim <one>Western Blotting</one>. URL: https://en.wikipedia.org/wiki/Ponceau_S
374
+ - Für den <one>DNA DipStick</one> benötigen wir wieviel an Probe? <one>1 Mikroliter Probe</one> wird benötigt. []
375
+ - In an <one>immunoblot</one>: why do we use a solution such as <two>BVA</two>? Because that way we will <one>block non-specific binding sites</one> (via this <one>blocking solution</one>).
376
+ - What happens if we add <one>potassium acetate</one> to a solution with DNA? <one>Potassium acetate</one> will trigger the <two>renaturation of the separated DNA strands</two>.
377
+ - <two>Which ability</two> allowed <one>gene cloning</one> to become a possibility? The <one>ability to cut and paste DNA</one>. []
378
+ - Der Plasmidvektor <one>pSC101</one> wurde aus welchem Organismus gewonnen? Aus <one>Salmonella</one>, respektive <two>einem Plasmid in Salmonella</two>.
379
+ - Name <one>a restriction enzyme class</one> that cleaves outside of their recognition sequence. A: The <one>Type IIs restriction enzymes</one>. URL: https://en.wikipedia.org/wiki/Golden_Gate_Cloning
380
+ - Beim <one>Western Blotting</one> kommt meistens <two>welche Färbetechnik</two> zum Einsatz? <one>Commassie Blau</one>. URL: https://en.wikipedia.org/wiki/Coomassie_Brilliant_Blue []
381
+ - In <one>M13 phage display</one>: the gene for display is attached where to exactly? It is attached to the <one>N-terminus of the M13 gene III</one>. []
382
+ - <one>1 Svedberg</one> (S) entspricht wieviele Sekunden? 10 hoch -13 Sekunden.
383
+ - In gene technolgoy: what does the abbreviation <one>ISH</one> stand for? <one>In-situ hybridization</one>. []
384
+ - In <one>ribosome display</one>: what characteristic feature must the mRNA used have? It must <one>lack a stop codon</one>. This thus gives rise, upon translation, to <two>linked mRNA-ribosome-protein complexes</two>. []
385
+ - The <one>gel electrophoresis of proteins</one> starts where? In the <one>middle of the gel</one>. []
386
+ - In <one>Golden Gate Assembly</one>: what restriction enzymes are used? <one>Type IIS restriction enzymes</one>.
387
+ - Anderer Begriff für die <one>Zufallsmutagenese</one>? <one>Evolutives Proteindesign</one>.
388
+ - Many naturally occurring <one>fusion genes</one> are ... ? <one>Cancer-promoting oncogenes</one>.
389
+ - Give another name for the term <one>Heterokaryons</one>. A: <one>Somatic cell hybrids</one>.
390
+ - Vorteil eines <one>ELISA</one> gegenüber einem <one>Western Blot</one>? Es wird bei einem <one>ELISA</one> keine SDS-PAGE benötigt, somit können wir <two>direkt mit dem nativen Protein arbeiten</two>.
391
+ - We employ a <one>RNAse</one>. In the following PCR, we do not see any signals from the genomic DNA. What may have happened? The RNase may have been <one>contaminated with DNases</one>; RNases are often purified from mammalian tissue, such as from bovine pancreas. This may explain one source of contamination with DNases. []
392
+ - Was ist mit dem Begriff <one>Bisacrylamid</one> gemeint? Der Begriff <one>Bisacrylamid</one> bezeichnet zwei Acrylamide verbunden über eine <two>Methylengruppe</two>.
393
+ - What is meant with the term <one>immunosorbed</one>? This refers to components that are <one>specifically bound</one> by antigen-antibody interactions to a solid phase.
394
+ - What do we mean with the <one>BacMam</one> system? This is <one>a Baculovirus</one> that is <two>used with mammalian cell lines</two>.
395
+ - <one>Wie schnell</one> kann eine <two>Ultrazentrifuge</two> rotieren (in G)? <one>2.000.000 G</one>. []
396
+ - In <one>dCAS9</one>: what does the <two>d</two> imply here? This stands for dead, so this is <one>dead CAS9</one> - <two>it does not cut</two>. []
397
+ - Nenne einen gravierenden <one>Nachteil</one> der Methode nach Lowry (in der Biochemie)? Sie dauert sehr lange - etwa <one>45 Minuten</one>.
398
+ - In short, what happens in an <one>R-looping experiment</one>? RNA is hybridized to its DNA template; then, "electron microscopy" is used to examine this hybrid.
399
+ - Die <one>Tfl-Polymerase</one> stammt aus welchem Organismus? <one>Thermus flavus</one>. URL: https://en.wikipedia.org/wiki/Thermus_thermophilus []
400
+ - Nenne einen <one>künstlichen Induktor von Allolactose</one>. A: <one>IPTG</one>. URL: https://en.wikipedia.org/wiki/Isopropyl_%CE%B2-D-1-thiogalactopyranoside []
401
+ - Via <one>ethidium bromide</one>, we can detect as little as ... of DNA. A: As little as <one>1 ng of DNA</one>. []
402
+ - Wie funktioniert die <one>DAM-ID Methodik</one> (<two>DNA Adenin Methyltransferase Identifikation</two>)? Das Protein wird an die E. coli DAM fusioniert. Danach erfolgt die Expression in einer eukaryotischen Zelle. Die Ae in Nähe der Bindungsstelle wird methyliert, danach erfolgt eine Behandlung mit einem methylierungssensitiven Restriktionsenzym, anschliessender Adapter-Ligation sowie (q)PCR.
403
+ - Nenne ein <one>helixdestabilisierendes Agens</one>. A: <one>Formamid</one>. URL: https://de.wikipedia.org/wiki/Formamid []
404
+ - Wenn wir <one>DNA</one> im Reagenzglasversuch replizieren möchten, sollten wir was für einen pH Wert verwenden? <one>7.5</one>.
405
+ - What is <one>the usual time range</one> (start, end) for an <two>electroporation</two> experiment? About <one>10-20 seconds</one>.
406
+ - <one>Wann</one> gelang <two>erstmals</two> die chemische Synthese eines Gens? Im Jahr <one>1976</one>.
407
+ - <one>Type I restriction enzymes</one> contain how many subunits? <one>Three</one>. (<two>HsdR</two>, <two>HsdM</two>, and <two>HsdS</two>). []
408
+ - Bei der Proteinbestimmung nach Lowry, nenne <one>3 störende Substanzen</one>. A: (1) EDTA (2) Triton X-100 (3) <one>Ammoniumsulfat</one>
409
+ - In <one>mRNA display</one>: what is attached to the mRNA? The peptide for which it encodes, via a Poly-dA linker.
410
+ - Why is the <one>S1 nuclease</one> not ideal when we want to create cDNA? Because this nuclease may also remove some important 5' sequences when it is used to trim the <one>ds cDNA</one>.
411
+ - <one>In what year</one> were the first recombinant DNA molecules produced? In <one>1972</one>, by Paul Berg. URL: http://www.genomenewsnetwork.org/resources/timeline/1972_Berg.php
412
+ - The technique of <one>phosphorimaging</one> improves on which older technique? <one>Standard autoradiography</one>.
413
+ - <one>Welche Methode ist empfindlicher</one>: die Proteinbestimmung nach <two>Lowry</two> oder die Proteinbestimmung nach <two>Biuret</two>? Die <one>Biuret-Methode</one> ist empfindlicher. []
414
+ - Name <one>three ingredients</one> that the enzyme <two>luciferase</two> requires. A: (1) <one>luciferin</one> (2) <one>ATP</one> (3) <one>molecular oxygen</one>
415
+ - <one>Wann</one> fand die <two>Asilomar-Konferenz</two> statt? <one>February 1975</one>. URL: https://en.wikipedia.org/wiki/Asilomar_Conference_on_Recombinant_DNA []
416
+ - <one>Golden Gate Assembly</one> makes use of which type of restriction enzymes? <one>Type IIS restriction enzymes</one>. URL: https://en.wikipedia.org/wiki/Golden_Gate_Cloning []
417
+ - How can we <one>induce the promoter of an E. coli strain</one> harbouring the <three>pHsp70-Luc</three> plasmid? We can <one>add heavy-metal ions</one>, which will induce this plasmid.
418
+ - <one>How</one> are <two>cosmids</two> generated? From <royalblue>plasmids</royalblue>, simply by ligating the <mediumseagreen>lambda cos region</mediumseagreen> onto the plasmid DNA.
419
+ - Give an example for a <one>Type IIs restriction enzyme</one>. A: <one>BsaI</one>. URL: https://www.neb.com/products/R0535-BsaI
420
+ - Name a way how to <one>purify DNA</one> without having to rely on phenol. A: We can use <one>resin</one>, which binds DNA but not other cell components.
421
+ - What means the term <one>plasmid instability</one>? <one>Cells without a plasmid grow faster than cells with plasmids</one> - and eventually take over a culture.
422
+ - Nenne einen <one>Fluoreszenzfarbstoff</one> der sich an die kleine Furche der DNA anlagert. A: <one>Distamycin</one>. URL: https://de.wikipedia.org/wiki/Distamycin
423
+ - Wieso werden die Lösungen bei der <one>PAGE</one> entgast? Sauerstoff entzieht Radikale.
424
+ - Sind <one>Good Puffer</one> wirklich <two>good</two> und was ist das überhaupt? <one>Good Puffer</one> wurden im Jahre <two>1966</two> von einem Herr Good eingeführt. Damit kann man biochemische Reaktionen studieren. Diese Puffer sind sehr wichtig bei der Verwendung von "Zwitterionen-Puffer".
425
+ - Why may we wish to remove phophate groups on the 5' end in a molecular biology lab? So that <one>this particular DNA molecule can not re-ligate</one>.
426
+ - Name an <one>experimental kit</one> or system that we can use to tag a gene in-situ in S. cerevisiae. A: The <one>GFP-KanMX tagging cassette</one>.
427
+ - When <one>designing a primer</one>, what must we consider especially much so? <one>Primers must not have any complementary sequences</one> that would form <two>hairpin</two> or <two>cloverleaf structures</two>.
428
+ - Name a reason, aside from the size of the transgene, why <one>cosmids</one> are used rather than plasmids. A: The cosmid phage particles are <one>more stable</one> than the plasmids.
429
+ - What is meant with the term <one>insertion-removal system</one>? The selective removal of marker genes from host cell chromosomes.
430
+ - The abbreviation <one>DNase I</one> stands for ... ? <one>Deoxyribonuclease I</one>. URL: https://en.wikipedia.org/wiki/Deoxyribonuclease_I []
431
+ - Beim <one>Western Blotting</one>: es wird häufig eine Trägermembran aus <two>Nitrocellulose</two> oder aus <two>Nylon</two> verwendet. Wieso wird manchmal <two>Nylon</two> bevorzugt? Da Nylon <one>fester</one>, also <two>widerstandsfähiger</two>, als Nitrocellulose ist.
432
+ - Was ist der <one>Variationskoeffizient</one> in der praktischen Biochemie? Dies ist ein Mass für den relativen zufälligen Fehler.
433
+ - In <one>Pichia pastoris</one> können wir den <two>AOX1-Promoter</two> <three>manuell</three> einschalten. Was müssen wir da machen? <one>Methanol</one> zu <two>Pichia pastoris</two> hinzugeben. []
434
+ - <one>Who</one> developed the <two>phage display technique</two>? <one>Gregory Winter</one>, a british biochemist. URL: https://www.britannica.com/biography/Greg-Winter
435
+ - <one>Welchen Vorteil</one> hat die <two>Deep Vent</two> Polymerase gegenüber anderen Polymerasen? Sie ist <one>sehr hitzebeständig</one>.
436
+ - Beim <one>Western Blotting</one>: die Proteine wandern zur <two>Anode</two> oder zur <two>Kathode</two>? Zur <two>positiv geladenen Anode</two>, da die Proteine aufgrund von <one>SDS negativ geladen sind</one>. []
437
+ - What is <one>Recombineering</one>? <one>Recombination-mediated genetic engineering</one> is a genetic and molecular biology technique based on <two>homologous recombination systems</two>.
438
+ - In applied molecular biology (aka <one>in the lab</one>), <two>TMA</two> stands short for ... ? <one>Transcription-mediated amplification</one>. URL: https://en.wikipedia.org/wiki/Transcription-mediated_amplification []
439
+ - Nenne ein Beispiel für ein hoch sulfatiertes <one>Glycosaminoglycan</one>. A: <one>Heparin</one>. URL: https://de.wikipedia.org/wiki/Heparin []
440
+ - Name the two major types of <one>cloning vectors</one> derived from the <two>lambda phage</two>. A: (1) <one>Insertion vectors</one> (2) <one>Replacement vectors</one> []
441
+ - The <one>most common recognition sequences</one> for <two>restriction enzymes</two> are how long, in base pairs? (1) <one>four</one> (2) <one>five</one> (3) <one>six</one> []
442
+ - <one>Cofaktor</one> der <two>DNA-Ligase</two> ist ... ? <one>NAD⁺</one>.
443
+ - <one>Which enzyme</one> is very important for <two>blunt-end ligation</two>? The <one>DNA ligase</one>. []
444
+ - <two>Which company</two> originally created the <one>Gateway cloning System</one>? <one>Invitrogen</one>. URL: https://en.wikipedia.org/wiki/Gateway_Technology []
445
+ - Welche <two>3 Stoffe</two> enthält ein <one>HAT Medium</one>? (1) <one>Hypoxanthin</one> (2) <one>Aminopterin</one> (3) <one>Thymidin</one> []
446
+ - <one>Cutting with restriction enzymes</one> can be influenced by several factors. Name the three most important ones. A: (1) methylation (2) the buffer used (3) secondary structure in the substrate
447
+ - Nenne <one>drei thermostabile DNA-Polymerasen</one>. A: (1) <one>Taq</one> (2) <one>Pfu</one> (3) <one>Vent</one> []
448
+ - <one>Phosphotioate</one> sind stabiler gegenüber ... als normale DNA. A: <one>Nucleasen</one>. []
449
+ - In der Proteinanalyse: was heisst <one>BCA-Assay</one>? <one>Bicinchinonsäure</one> (<two>bicinchoninic acid assay</two>).
450
+ - Welche <one>Degenerationsbase</one> können wir beim Primerdesign verwenden? <one>Inosin</one>. URL: http://www.genelink.com/oligo_modifications_reference/OMR_mod_category_intro.asp?mod_sp_cat_id=5 []
451
+ - <one>Womit</one> beginnt eine <two>massenspektrometrische Analyse</two> in der Protein-Biochemie? Mit dem Verdau eines Proteins durch Proteasen - meistens über <one>Trypsin</one>.
452
+ - Was genau ist die <one>direkte Expression von Proteinen</one>? Bei der direkten Expression werden nur genregulatorische Sequenzen wie Promoter oder Terminator an das Gen angehängt und keine zusätzlichen Sequenzen die das Protein verändern würden. Daraus folgt das die AA Sequenz des rekombinant produzierten Proteins zu 100% identisch zum Ausgangsprodukt ist.
453
+ - <one>NotI</one> erkennt <two>n Basenpaare</two>? <one>8</one> - ist somit ein <two>8-cutter</two>. []
454
+ - The <one>CMV promoter</one> is commonly included in vectors used in genetic engineering work conducted in mammalian cells, as it is a strong promoter and may <two>drive constitutive expression of genes under its control</two>. From which organism has this promoter been isolated? From the <one>Cytomegalovirus</one>. URL: https://en.wikipedia.org/wiki/Cytomegalovirus#Genetic_engineering
455
+ - Sind <one>Typ-III-Restriktionsendonukleasen</one> in der Molekularbiologie wichtig? Nein.
456
+ - In <one>site-directed mutagenesis</one>: which <two>three possible changes</two> are feasible, in general? (1) <one>insertions</one> (2) <one>deletions</one> (3) <one>mutations</one>
457
+ - <one>Which procedure</one> takes advantage of the <two>terminase transferase activity</two> of <three>Taq polymerase</three>? The <one>TA cloning procedure</one>. []
458
+ - Why do we use the <one>URA3 gene</one> in YACs? Because the used <one>host has a defective URA3 gene</one> - and <two>requires Uracil for growth</two>.
459
+ - Nenne einen Blot, der auf dem <one>Southern-Blot</one> basiert. A: Der <one>Zoo-Blot</one>. URL: https://en.wikipedia.org/wiki/Zoo_blot []
460
+ - Name <one>two DNA-sequencing methods</one> that work on <two>single molecules</two>. A: (1) <one>PacBio</one> (2) <one>Nanopore</one>
461
+ - Do <one>Eukaryotes</one> have <two>restriction enzymes</two>? Yes, sort of - but not <one>restriction-modification enzymes</one>. []
462
+ - Normalerweise können wir <one>His6-Tags</one> über <two>Nickelsäulen</two> isolieren. Können wir dies jedoch auch mit Hilfe von Antikörpern gegenüber His-tags bewerkstelligen? Ja, können wir. []
463
+ - What does <one>coverage</one> mean in shotgun sequencing? <one>Coverage</one> is an average number showing how many times the same nucleotide appears among all the reads.
464
+ - Was meinen wir eigentlich mit dem Begriff <one>somatischer Kerntransfer</one>? Wenn wir einen Zellkern aus, zum Beispiel, einer <one>Fibroblastenzelle</one> entnehmen, und diese in eine <two>entkernte Eizelle</two> transferieren.
465
+ - Die <one>Zentrifugation</one> trennt nach ... ? <one>Größe</one>. Größere Moleküle sedimentieren schneller.
466
+ - <two>When</two> do we use <one>Pyrococcus furiosus</one> polymerase over <one>Taq polymerase</one>? When <one>increased accuracy is required</one>. Pfu has <two>proofreading ability</two>.
467
+ - Nenne <one>drei nichtradioaktive Methoden</one> um Nukleotide zu markieren. A: (1) <one>Biotin</one> (2) "Digoxigenin" (3) <one>Fluoreszein</one>
468
+ - Name a <one>vector</one> that is typically used in the <two>Golden Gate Assembly</two> workflow. A: The <one>destination vector</one>.
469
+ - <one>Welche Technik</one> in der Molekularbiologie wird mit <two>3C</two> abgekürzt? <one>Chromosome conformation capture</one>. URL: https://en.wikipedia.org/wiki/Chromosome_conformation_capture []
470
+ - The restriction enzyme <one>Sau3A1</one> was <two>found in which bacterium</two>? <one>Staphylococcus aureus</one>. URL: https://www.neb.com/products/r0169-sau3ai []
471
+ - A typical <one>highdensity array genotyping experiment</one> can detect how many different <two>SNPs</two> (<two>single nucleotide polymorphisms</two>)? <one>More than 2 million SNPs</one> can be detected at the same time.
472
+ - Worauf beruht die <one>Pyrosequencing</one>-Methode? Sie beruht auf der <one>Detektion von Pyrophosphat</one>, das bei der Inkorporation eines Nukleotids frei wird.
473
+ - <one>Unique restriction endonuclease sites</one> have what <two>dual function</two>? (1) They are required for inserting DNA into a cloning vector (2) They allow an inserted DNA sequence to be recovered from the vector
474
+ - Define <one>degenerate primer</one>. A: Primer with several alternative bases at certain positions.
475
+ - <one>In which year</one> has the enzyme <two>DNA ligase</two> been isolated? It has been isolated in the year <one>1967</one>.
476
+ - Anderer Name für das <one>3MM-Filterpapier</one>? <one>Whatman</one>. URL: https://www.sigmaaldrich.com/labware/labware-products.html?TablePage=17206863 []
477
+ - Für die Gentechnik mögen <one>konjugative Plasmide</one> wichtig sind. Was sind die <two>tra</two> und <two>mob</two>-Funktionen? (1) <one>tra</one> für <two>Transfer des Plasmids</two> (2) <one>mob</one> für <two>Mobilisation des Plasmids</two>
478
+ - In <one>ribosome display</one>: the genotype here in use is ... ? The <one>mRNA</one>. []
479
+ - Was ist die Grundidee hinter der <one>Affinitätschromatographie</one>? Proteinen können spezifisch - und reversibel - an bestimmte Liganden binden.
480
+ - Nachteil einer <one>cDNA</one>, die aus einer mRNA hervorging? Sie hat (x) <one>keinen Promoter</one> und (x) <one>keine upstream regulatory sequences</one>.
481
+ - Nenne einen <two>Protease-Inhibitor</two> von <one>Aspartatproteasen</one>. A: <one>Pepstatin A</one>.
482
+ - Die <one>RNase H</one> erkennt eine <two>Heteroduplex-Region</two>, die minimal n bp umfasst? <one>76</one>.
483
+ - Nenne ein Verfahren das von der Firma <one>Invitrogen</one> hergestellt wurde. A: <one>TopoCloning</one>. URL: https://en.wikipedia.org/wiki/TOPO_cloning []
484
+ - We should <one>purify proteins at which temperature</one>? At about <one>4°C</one>. []
485
+ - Gegeben sei die Sequenzfolge <one>CAT CAC CAT CAC CAT CAC</one> in einem Protein. Was können wir daraus folgern? Dies mag ein <one>His6-Tag</one> sein; die Folge kodiert für 6 Histidine, die in Folge geschalten sind.
486
+ - Name one important ingredient of the <one>Laemmli buffer</one>. A: <one>2-mercaptoethanol</one> (<two>beta-mercaptoethanol</two>). URL: https://www.cytographica.com/lab/solutions/5XSB.htm []
487
+ - Give another name for the <one>two-hybrid system</one>. A: <one>Interaction trap</one>.
488
+ - In der Gentechnik, beim <one>His-Tag</one>: <two>wieviele Histidine in Serie werden hier verwendet</two>? Meistens <one>6</one>. []
489
+ - <one>How</one> can we purify <two>GST-fusion proteins</two>? Through their <one>high affinity for Glutathione</one>.
490
+ - The <one>sorting of cells with a laser</one> happens usually at which nm? At <one>488 nm</one>.
491
+ - Ein <one>Typ II-Restriktionssystem</one> besteht aus welchen Proteinen? (1) <one>Methylase</one>: <two>methyliert hemimethylierte DNA</two> (2) <one>Restriktionsenzym</one>: <two>schneidet nicht methylierte DNA</two>
492
+ - Präferiert die <one>DNase I</one> die <two>minor</two> oder die <two>major</two> groove der DNA? <one>Major</one>. []
493
+ - Why the suffix <one>R</one> in the name <two>Coomassie Brilliant Blue R-250</two>? It is an abbreviation for <one>Red</one>. []
494
+ - <one>Welche Bindungskräfte</one> können die Tertiärstruktur stabilisieren? Gib 5 an. A: (1) Disulfidbrücken (2) Wasserstoffbrückenbindungen (3) hydrophobe Gruppen (4) Ionenbindungen (5) <one>van-der-Waals-Kräfte</one>
495
+ - <one>DNA</one> can be precipitated in the laboratory via ... ? <one>Isopropanol</one>.
496
+ - <one>Nachweisgrenzen</one> bei der <two>Biuret</two> Methode in mg? Etwa <one>18 mg</one>.
497
+ - Was ist der <one>Ursprung</one> einer <two>cDNA-Genbank</two>? <one>mRNA-Moleküle</one> die zu einer bestimmen Zeit in einer Zellpopulation vorkamen.
498
+ - Bei der <one>HPLC</one>: <two>was genau</two> finden wir im <three>Vorratsbehälter</three>? Das <one>Laufmittel</one>.
499
+ - What is the basic idea behind <one>electrophoresis</one>? To separate the molecules based on their <one>intrinsic electrical charge</one>.
500
+ - In der Gentechnik: nenne eine <one>Limitation</one> der <two>sauren Hydrolyse</two>. A: Eine Unterscheidung zwischen <one>Asparagin</one> und <one>Asparaginsäure</one>, sowie <two>Glutamin</two> + "Glutaminsäure" ist nicht möglich.
501
+ - <two>Wo</two> findet <one>Transcription-mediated amplification</one> eine praktische Anwendung? In der <one>Virusdiagnostik</one>.
502
+ - <one>Pflanzenzellen</one> werden <two>wie fusioniert</two>? Durch einen <one>elektrischen Impuls</one>.
503
+ - <two>In which species</two> was <one>RNA interference</one> discovered? In <one>plants</one>. []
504
+ - What may the <one>practical advantage</one> or <one>practical implication</one> be, for a <two>zooblot</two>? We can find related DNA sequences in different species; and then possibly likely target proteins based on these sequences.
505
+ - <one>Wie</one> können wir die Peptidbindung eines Proteins spalten, ohne hierfür Enzyme einzusetzen? Durch <one>saure Hydrolyse</one> (mittels <two>6M HCl</two>).
506
+ - Which nuclease activity does <one>Taq polymerase</one> <two>lack</two>? The <one>3' to 5' activity</one>. []
507
+ - Warum wird <one>Digoxigenin</one> in der Gentechnologie eingesetzt? Um <one>DNA</one> <two>nichtradioaktiv zu markieren</two>. URL: https://de.wikipedia.org/wiki/Digoxigenin
508
+ - Wie <one>spaltet</one> man, im chemischen Labor, die <one>Peptidbindung eines Proteins</one> (allgemein)? Durch <one>saure Hydrolyse</one> (mittels <two>6M HCl</two>).
509
+ - The 10-mer <one>5'-CCGAATTCGG-3'</one> contains the recognition site for ... <two>which restriction enzyme</two>? <one>EcoRI</one>. []
510
+ - For <one>cDNA synthesis</one>, after we did use <two>reverse transcriptase</two>, which 3 enzymes are used to synthesize the second strand simultaneously? (1) RNase H (2) DNA polymerase I (3) <one>DNA ligase</one>
511
+ - Wo wird <one>panning</one> in der Gentechnik eingesetzt? Beim <one>phage display</one>. URL: https://de.wikipedia.org/wiki/Phagen-Display []
512
+ - In der Gentechnik: wo werden <one>PVDF Membranes</one> eingesetzt? Beim <one>Western Blot</one>. []
513
+ - In a <one>gel electrophoresis apparatus</one>: the <two>anode</two> has <three>which colour</three> typically? <crimson>Red</crimson>. []
514
+ - Wir möchten <one>Proteine aufreinigen</one>. Nenne drei Ziele die wir berücksichtigen sollten. A: (1) Erhalten der "biologischen Aktivität" (2) Erreichen einer <one>hohen Ausbeute</one> (3) Beibehalten von <one>geringen Kosten</one>
515
+ - Nenne <one>zwei Nachteile der SDS-PAGE</one>. A: (1) geringe Reproduzierbarkeit (2) <one>Zeitfaktor</one>
516
+ - <two>Why</two> do we use <one>differential display</one> in gene technology? With differential display of mRNA we can study genes whose expression differs between two populations of cells or because of the exposure to two treatments (e.g. stress).
517
+ - Give one example for a <one>Type I restriction enzyme</one>. A: <one>EcoK</one>.
518
+ - In the <one>cre</one>/<one>loxP-System</one>: how long are the <two>loxP-sequences</two>? <one>34 Basenpaare</one>. URL: https://de.wikipedia.org/wiki/Cre/loxP-System#loxP []
519
+ - Can <one>EcoRI</one> cleave the sequence <two>GAATThmC</two>? <one>Yes</one>. []
520
+ - In <one>cDNA-synthesis</one>: we can either make use of <two>RNase H</two> to get rid of the RNA component; or we could employ ... ? A: <one>Alkaline hydrolysis</one>.
521
+ - <one>Recombinant DNA technology</one> would not exist without the availability of ... ? <one>Restriction Enzymes</one> (<two>restriction endonucleases</two>). URL: https://en.wikipedia.org/wiki/Restriction_enzyme []
522
+ - The <one>value of restriction endonucleases</one> lies in ... ? Their <one>specificity</one>. []
523
+ - Name an <one>inducer</one> of the <two>tac promoter</two>. A: <one>IPTG</one>. URL: https://en.wikipedia.org/wiki/Tac-Promoter []
524
+ - Was ist <one>das Ergebnis aller Aufschlussmethoden</one>? Das <one>Homogenisat</one>. []
525
+ - Can we <one>combine multiple chromosomes into a single one</one>, via <two>CRISPR</two>/<two>Cas9</two>? Yes, thanks to <one>homologous recombination</one> within the cells.
526
+ - <two>Wieviel</two> kostet eine <one>Eppendorfer micro-tube Eprouvette</one>, pro Stück? Sie kostet etwa <one>4 Euro pro Stück</one>. []
527
+ - Im <one>Lambda-Virus</one>: wie mögen wir ein leeres headshell von einem gefüllten headshell unterscheiden? Das <one>gefüllte headshell</one> ist größer.
528
+ - <one>Minipreparation of plasmid DNA</one> (<two>Minipreps</two>) is a rapid, small-scale isolation of plasmid DNA from bacteria. It is based on which method? The <one>alkaline lysis method</one>.
529
+ - Compare <one>transformation</one> into <two>E. coli</two> to that of <one>transformation</one> into <two>yeast</two>. <three>Which one of these two is more efficient</three>? Transformation into E. coli is much more efficient than transformation into yeast. []
530
+ - In the <one>pET system</one>: <two>which gene</two> is inserted into the host chromosome? The <one>T7 RNA polymerase</one>.
531
+ - Name a technique with which we can do <one>multigene constructs</one>. A: The <one>Golden Gate cloning</one>. URL: https://en.wikipedia.org/wiki/Golden_Gate_Cloning []
532
+ - Das <one>Klenow-Fragment</one> entsteht aus welcher Polymerase? Aus der <one>DNA-Polymerase I</one>. URL: https://de.wikipedia.org/wiki/Klenow-Fragment []
533
+ - The <one>S1-nuclease</one> is what type of enzyme? It is <one>an endonuclease</one>. URL: https://en.wikipedia.org/wiki/Nuclease_S1 []
534
+ - <one>Recombineering</one>, aka <two>recombination-mediated genetic engineering</two>, is an in vivo cloning technique based on ... which pathway? It is based on the <one>single strand annealing</one> (SSA) repair pathway.
535
+ - Ist <one>Triton X-100</one> ein ionisches oder ein nicht-ionisches Detergenz? <one>Triton X-100</one> ist ein ionisches Detergenz. []
536
+ - Fassungsvermögen einer <one>Eppendorfer micro-tube Eprouvette</one>? <one>1.5 ml</one>. URL: https://upload.wikimedia.org/wikipedia/commons/0/02/Eppendorfcups.jpg []
537
+ - Nenne vier <one>hitzestabile DNA-Polymerasen</one>. A: <one>Taq</one>, <one>Pfu</one>, <one>Vent</one>, <one>Stoffel</one>. (<two>Stoffel</two> wird aus AmpliTaq gewonnen, indem man 289 Aminosäuren beginnend vom N-Terminus deletiert) []
538
+ - Hat <one>Ethidiumbromid</one> eine <two>positive</two> oder eine <two>negative</two> Ladung? Positive Ladung. []
539
+ - Die <one>SELEX Methode</one> hängt von welcher anderen Methode ab? Von der <one>PCR</one>. []
540
+ - What is the threshold cycle or <one>Ct value</one>? The Ct or threshold cycle value is the cycle number at which the fluorescence generated within a reaction crosses the <one>fluorescence threshold</one>.
541
+ - When we see a <one>P200</one> pipette: what does the number 200 stand for here? This refers to <one>the maximum volume</one>, aka 200 in this case. []
542
+ - When we see a vector called <one>pYD1</one> what do we know? This is <one>a plasmid for yeast-display</one>, e. g. the <two>Yeast Display Vector Kit</two> from <three>InVitrogen</three>.
543
+ - Anderer Begriff für <one>diskontinuierlich</one>? <one>In Stufen</one>.
544
+ - <one>DAPI</one> wird zur Färbung von DNA verwendet. Sie lagert sich bevorzugt wo in/an der DNA an? An <one>AT-reiche Regionen in der kleinen Furche doppelsträngiger DNA</one>.
545
+ - <one>Which restriction enzyme</one> was employed in the first cloning process, performed in 1973? The <one>restriction enzyme EcoRI</one>.
546
+ - <one>What enzyme type</one> is the <two>reverse transcriptase</two> (<two>RTase</two>)? The reverse transcriptase is an <one>RNA-dependent DNA polymerase</one>.
547
+ - <two>Wie</two> schaffte <one>Miescher</one> damals die Ausfällung der DNA? Er (a) benutzte <one>Pepsin</one> aus Schweinmägen sowie (b) Alkohol.
548
+ - What is an <one>expression vector</one>? This is an expression construct, usually a plasmid or virus, designed for protein expression in cells.
549
+ - Nenne eine Resistenz vom <one>pSC101-Plasmid</one>. A: <one>Tetracyclin</one>. []
550
+ - <one>Type II restriction enzymes</one> <two>can produce how many different ends</two>? <one>3</one>. []
551
+ - Welchen Vorteil hat <one>LIC</one> (<two>ligation independent cloning</two>)? Der <one>Ligations-Schritt entfällt</one>. []
552
+ - <one>pUC18</one> besitzt wieviele Basenpaare? <one>2686 bp</one>.
553
+ - In <one>yeast surface display</one>: the <two>screening</two> and <two>sorting</two> is done by ... ? By <one>FACS</one>. []
554
+ - Die <one>Caprylsäure-Fällung</one> wird im sauren oder im alkalischem Medium eingesetzt? Im <one>sauren Medium</one>. URL: https://www.rentschler-biopharma.com/de/aktuelles/pressemeldungen/detail/view/praesentation-eines-neuartigen-ansatzes-zur-antikoerper-aufreinigung-auf-der-pegs-europe-2017/ []
555
+ - The <one>454 System</one> in Gene Technology relied on which two advances? (1) <one>pyrosequencing</one> (2) <one>massively parallel liquid handling</one>
556
+ - Is <one>RNase</one> or <one>DNase</one> more stable? <two>RNase</two> is <one>more stable</one> than <two>DNase</two>. []
557
+ - The <one>Tet-Off system</one> makes use of the <two>tetracycline transactivator (tTA) protein</two>. This protein was created by fusing two parts of two different proteins together. Which ones? (1) the "TetR protein" ("tetracycline repressor") (2) the <one>VP16 protein</one> of the <two>Herpes Simplex Virus</two>
558
+ - Was ist das Funktionsprinzip der <one>Gefriertrocknung</one>? Die Probe wird eingefroren, danach sublimiert das Wasser bei sehr niedrigem Druck.
559
+ - <two>Which dye</two> is used in <one>gram stain</one>? <one>Crystal violet</one>. URL: https://en.wikipedia.org/wiki/Crystal_violet []
560
+ - What is <one>the main molecular weight of an amino acid in Dalton</one>? 105.
561
+ - The <one>SLICE technique</one> stands short for ... ? <one>Seamless Ligation Cloning Extract</one>.
562
+ - Was heisst <one>HEPA filter</one>? <one>High efficiency particulate air filter</one>. URL: https://en.wikipedia.org/wiki/HEPA []
563
+ - Why is knowing the <one>GC-content</one> of DNA important? Because of thermal separation of DNA (<one>DNA Melting</one>).
564
+ - The <one>plasmid pET11a</one> may be <two>dephosphorylated</two> in the lab. Why? This is done to <one>prevent self-recircularisation</one>. []
565
+ - <one>Mammalian cell culture</one> requires a modest laboratory facility. <one>Plant cultures</one> usually require what additional change compared to a mammalian cell culture? We may have to <one>integrate light</one> (<two>lighting</two>) into the culture cabinets.
566
+ - Was meinen wir mit einer <one>repräsentativen Genbank</one>? Die Häufigkeit einer bestimmten cDNA Sequenz entspricht der Häufigkeit mit der die kodierende mRNA im Ausgangsgewebe vertreten ist.
567
+ - A typical <one>polyacrylamidgel</one> can separate DNA, up to <lightseagreen>a maximum length of</lightseagreen> ...? <one>1000bp</one>. []
568
+ - Give another name for the <one>uninterrupted sequences</one> in <two>shotgun sequencing</two>? <one>Contigs</one>. []
569
+ - Why are <one>peptide nucleic acid</one> useful? <one>Cellular nucleases do not recognize them</one>. This is useful because peptide nucleic acids can bind to DNA, so they should have a longer duration within the cell as-is.
570
+ - <one>RFLPs</one> are often used where? In <one>forensic analysis</one>.
571
+ - How can we <one>distinguish between different DNA</one>? We have to <one>label</one> one DNA.
572
+ - Name the most important physical characteristic that can be used for <one>subcellular fractionation</one>, in order to distinguish different cellular compartments. A: <one>Buoyant density</one>.
573
+ - Anderes Wort für <one>Biuret</one>? <one>Carbamoylharnstoff</one>.
574
+ - Das <one>Elutionsvolumen</one> ist ...? Das Puffervolumen, das benötigt wird um die Aminosäure aus der Säule freizusetzen.
575
+ - Nenne eine der besten Methoden (allgemeiner Natur) die Funktion eines Genes in <one>functional genomics</one> zu untersuchen. A: Mittels <one>gene disruption</one>, zum Beispiel durch <two>homologe Rekombination</two>.
576
+ - In <lightseagreen>ribosome display</lightseagreen>, is <one>a PCR step</one> used? Yes. []
577
+ - Nenne <two>eine Substanz</two>, mit der wir die <one>N-terminale Aminosäure</one> bestimmen können. A: <one>Dansylchlorid</one>. URL: https://de.wikipedia.org/wiki/Dansylchlorid []
578
+ - Die <one>Ammoniumsulfatfällung</one> ist eine oft angewandte Methode in einem Biochemie-Labor. Allerdings gibt es eine <two>Proteingruppe</two> die man nicht damit ausfällen kann. Welche? <one>Calciumabhängige Proteine</one> können mit dieser Methode nicht gefällt werden, da sie sofort unlösliches Calciumsulfat bilden würden. Solche Proteine müssen somit mit einem anderen Salz gefällt werden.
579
+ - Was macht die <one>terminale Deoxynukleotidyl-Transferase</one>? Sie hängt unspezifisch Nukleotide an das 3 Strich-Ende von einzel- und doppelsträngiger DNA (3 Endmarkierung).
580
+ - <one>Golden Gate cloning</one> makes use of which type of restriction enzymes? It uses <one>Type IIs restriction enzymes</one>. []
581
+ - In der <one>Gentechnik</one>: wie können wir <two>die Effizienz der Translations-Termination</two> verbessern? Verwendung von zwei oder mehreren Stop-Codons in Serie. []
582
+ - Nenne 3 Einsatzgebiete von <one>GST Fusion Proteins</one> (Glutathione S-transferase). A: (1) Protein Production for pure immunogens (2) protein-protein interaction studies (3) DNA-protein interaction studies
583
+ - With a modern <one>recombineering-system</one>: should we rather use <one>ssDNA</one> or <one>dsDNA</one>? <one>ssDNA</one> because it is <two>over 100-fold more efficient as substrate than is dsDNA</two>. []
584
+ - In der <one>Hefe</one> wird oft das Gen <two>URA3</two> für die Selektion auf Rekombinanten verwendet. Dieses Gen ist normalerweise wichtig für ... ? Die <one>Uracilbiosynthese</one>. []
585
+ - Give another name for the <one>SELEX method</one>. A: <one>In-vitro selection method</one>.
586
+ - Will <one>DpnI</one> cut DNA that is synthesized in vitro? <one>No</one>, <two>because such DNA is not methylated</two>. Therefore it is not cut by DpnI. []
587
+ - In <one>immunodetection via antibodies</one>: is the primary or the secondary antibody coupled to a fluorophore or an enzyme? The <one>secondary antibody</one> is coupled to a fluorophore or an enzyme. []
588
+ - Wenn wir <one>DNase I</one> auf DNA loslassen, was passiert? Es entsteht ein Gemisch aus Mono- und Dinukleotiden mit einem entständigen 5-prime Phosphat.
589
+ - Die <one>Detektion von Auto-Antikörpern</one> basiert typischerweise auf ...? Auf einem <one>indirekten ELISA</one>.
590
+ - <one>How many enzymes</one> are used in the <two>Gibson Assembly System</two>? <one>Three enzymes</one>. These join two or more sequences of DNA when they have overlapping end-sequences at their joining point (~40bp). []
591
+ - <one>Inefficient full-length cDNA synthesis</one> means that which part of a mRNA tends to be over-represented in a cDNA population? The <one>3'-regions of mRNA tend to be over-represented</one>. []
592
+ - In gene technology: what means <one>biological containment</one>? Vectors will reside in <one>host organisms with defects</one>, preventing their survival outside the laboratory.
593
+ - In der Gentechnik: was ist <one>Superdex</one>? Ein <two>Composit</two> hergestellt aus kreuzvernetzter <one>Agarose</one> und <one>Dextran</one>.
594
+ - <one>Which enzyme</one> is often used for <two>nick translation procedure for radiolabelling DNA</two>? The <one>DNA Polymerase I</one>.
595
+ - <one>GFP</one> contains how many beta strands? <one>11</one>.
596
+ - Nenne 5 <one>Proteinbestimmungs-Methoden</one> in der Biochemie. A: (1) Biuret-Methode (2) Lowry Methode "Folin-Ciocalteau-Test (3) BCA Methode (ähnlich Lowry) (4) die <one>Bradford Methode</one> (<two>Coomassie Blue Test</two>) (5) UV Absorption, die Methode nach Warburg und Christian
597
+ - Synthesis of a <one>full-length cDNA</one> may be inefficient under ... which condition? If the mRNA is relatively long.
598
+ - <two>Wie</two> kann sich eine Zelle vor <one>Typ I Restriktionsenzymen</one> schützen? Mit Hilfe der <one>Methylierung</one> der DNA. []
599
+ - Nenne einen <one>peptidischen Inhibitor</one> der mit dem Buchstaben <two>"A"</two> beginnt. A: <one>Aprotinin</one>.
600
+ - Does the restriction enzyme called <one>Dpn1</one> cut DNA that was synthesized in-vitro? No it does not, because that DNA is not methylated, and <one>DpnI cleaves only when its recognition site is methylated (or hemimethylated)</one>.
601
+ - Was meinen wir mit einem <one>transienten Gentransfer</one>? Dies meint einen Gentransfer, der <one>zeitlich begrenzt</one> ist - zum Beispiel weil das transferierte Gen nicht in das Chromosom integrierte.
602
+ - Die <one>Biuret-Nachweismethode</one> ist unspezifisch. Womit wird die zu untersuchende Lösung versetzt? Mit <one>Natronlauge</one>; danach wird eine Kupfersulfat-Lösung hinzugefügt.
603
+ - <one>Type I restriction enzymes</one> require which cofactor? <two>S-adenosyl methionine</two>, aka <one>SAM</one>.
604
+ - <one>Ethidiumbromid</one> besitzt <two>wieviele C-Atome</two>? <one>21</one>.
605
+ - When we <one>introduce a plasmid during transformation</one>, why do we wait a bit before we add antibiotics? So that <two>we give a cell time to transcribe the resistance gene from a plasmid</two>, and <one>translate its mRNA into protein</one>.
606
+ - The enzyme <one>BsaI</one> generates an overhang that contains n bp? <one>4</one>. []
607
+ - Gibt es <one>effiziente Trennverfahren für große Proteine</one>? Nein, nicht wirklich. []
608
+ - <one>Interactome analysis</one> is based on the idea of ... ? <one>Guilt by association</one>. []
609
+ - In the <one>Gibson assembly master mix</one>: <two>at which temperature do we have to incubate usually</two>? At about <one>50°C</one>. []
610
+ - Beim <one>Shotgun-Verfahren</one>: <two>wie wird die DNA zerlegt</two>? Durch <one>Scherkräfte</one>. []
611
+ - Name a technique to <one>study SNP-variation</one> with. A: <one>DNA Microarrays</one>. URL: https://en.wikipedia.org/wiki/SNP_array []
612
+ - What is <one>the first step in the isolation of a protein</one>? Get it into solution.
613
+ - Can <one>the efficiency of transformation</one> be increased by <two>using high concentration of DNA</two>? Yes. []
614
+ - Verwenden wir die <one>SDS-Page</one> im Zuge eines <two>Western Blots</two>? Ja. []
615
+ - Name <one>the three most important uses of fusion proteins</one>. A: (1) it will <one>aid in the purification of cloned genes</one> (2) it can be used as <one>reporter of expression level</one> (3) it can be used as <one>a histochemical tag to enable visualization of the location of proteins in a cell, tissue, or organism</one>
616
+ - <one>Nick translation</one> relies on which polymerase? Nick translation relies on <one>DNA polymerase I</one>. []
617
+ - Was erreichen wir dank <one>Autoradiographie</one>? Wir können damit die Position eines Radioisotops in einer Zelle feststellen.
618
+ - Andere Bezeichnung für einen <one>Western Blot</one>? <one>Immunoblot</one>. URL: https://de.wikipedia.org/wiki/Western_Blot []
619
+ - <one>Wie</one> können wir allgemein Fusionsproteine reinigen? Über die <one>Affinitätschromatographie</one>. []
620
+ - Wann wurde die <one>Elektroporation</one> erstmals beschrieben? <one>1982</one>. []
621
+ - For a <one>fusion protein</one>: <two>which protein partner</two> is often used to keep the protein soluble? <one>Thioredoxin</one>.
622
+ - The <one>Gibson assembly reaction</one> <two>can combine up to how many DNA fragments simultaneously</two>? Up to <one>15 DNA fragments</one>.
623
+ - Vergleiche die UV-Absorption von DNA versus Proteine (deren Maxima). A: <one>DNA</one> absorbiert bei <two>260 nm</two>, Protein bei "280 nm".
624
+ - In der Biochemie und Gentechnik: <one>wieso sollten Puffer möglichst rein sein</one>? Die <two>Reinheit</two> spielt eine große Rolle, da <one>Verunreinigungen wie Schwermetalle biologische Systeme leicht stören könnten</one>.
625
+ - Name one or two advantages of the <one>capillary electrophoresis</one> compared to the traditional <two>gel electrophoresis</two>. A: (1) The <one>capillary electrophoresis</one> is <two>faster</two. (2) The <one>capillary electrophoresis</one> can also be more easily automated.
626
+ - What <one>temperature</one> should an <two>Agarose gel</two> have before it is poured into the cast? About <one>55°C</one>.
627
+ - Nenne zwei <one>nicht-ionische Detergentien</one> in der Gentechnik, um Membranen aufzuschliessen. A: (1) <one>Cetyltrimethylammoniumbromid</one> (2) <one>Natriumdodecylsulfat</one>
628
+ - Nenne einen Test um den <one>Proteingehalt in einer Enzymlösung</one> zu bestimmen. A: <one>Bradford Test</one> (<one>Bradford Assay</one>). []
629
+ - In a molecular biology lab, <one>Terminal transferase</one> is used for ... ? <one>Adding homopolymer tails to DNA molecules</one>.
630
+ - Die <one>Bisulfitmodifikation</one> <two>erzeugt</two> welches Nukleotid? <one>Uracil</one> (und zwar ausgehend von <two>Cytosin</two>). []
631
+ - Das <one>cre</one>/<one>loxP System</one> stammte ursprünglich aus welchem Phagen? Aus dem <one>Bakteriophagen P1</one>. []
632
+ - What do we mean with a <one>portable shine-dalgarno</one> site? This is essentially a Shine-Dalgarno sequence that is <one>flanked by two unique restriction sites</one> (in the vector at hand). URL: https://www.ncbi.nlm.nih.gov/pubmed/6400483
633
+ - <two>What kind of environment</two> do recombinant proteins find in the <one>periplasm</one>? An <one>oxidative environment</one>. []
634
+ - During <one>Electroporation</one>: the electrical discharge has about <two>n Volt</two>? About <one>1000 Volt</one>.
635
+ - Im <one>Split-ubiquitin yeast two-hybrid</one>: was heisst <two>Cub</two>? <one>C-terminal ubiquitin moiety</one>.
636
+ - Die <two>Luciferase</two> konvertiert ihr Substras <one>Luciferin</one> hin zu … ? <one>Oxyluciferin</one>. URL: https://en.wikipedia.org/wiki/Firefly_luciferase []
637
+ - How many <one>type 2</one> restriction endonucleases are known? <one>3700</one>.
638
+ - In the lab: how can we <one>obtain individual nucleosomes</one>? We may employ the enzyme <royalblue>MNase</royalblue> (<one>micrococcal nuclease</one>). []
639
+ - <one>Welche Firma</one> hat den DNA DipStick auf den Markt gebracht? <one>Invitrogene</one>.
640
+ - The "A260/A280 ratio" can determine how pure a sample is. It should be around ... for "pure DNA" and ... for "pure RNA preparations"? (1) For pure DNA: "1.8" (2) <one>For pure RNA</one>: <two>2.0</two>
641
+ - Wieso müssen wir bei einem <one>Western Blot</one> die Proteine auf die Membran übertragen? Damit die Antikörper an die Proteine binden können.
642
+ - We may employ <one>restriction enzymes</one> in gene technology. How do we call the <two>act of cutting</two>? <one>Digestion</one>. []
643
+ - The <one>P-200 pipette</one> has a size range of ... ? <one>20-200 µl</one>.
644
+ - Im Labor <one>schmilzt DNA ab welcher Temperatur</one>? Ab <one>90 °C</one>. []
645
+ - In der Gentechnik: wieso setzen wir die sogenannten <one>Good-Puffer</one> ein? Damit können wir "Enzyme in Lösungen stabilisieren" (es ist ein sogenannter "Zwitterionen-Puffer").
646
+ - The most commonly used signal sequence for <one>S. cerevisiae</one> is derived from ... ? The <one>mating factor alpha gene</one>.
647
+ - Wann wurde die <one>Pyrosequencing-Methode</one> entwickelt? <one>1996</one>. URL: https://en.wikipedia.org/wiki/Pyrosequencing []
648
+ - <two>Aus welchem Organismen</two> wurde das <one>Stoffelfragment</one> gewonnen? Aus <one>Thermus aquaticus</one> (<royalblue>Taq polymerase</royalblue>). URL: https://en.wikipedia.org/wiki/Variants_of_PCR#DNA_Polymerases []
649
+ - What is <one>Ampholine</one>? <two>Ampholine</two> is an ampholyte <one>used in polyacrylamide gels</one>, for density gradient stabilization and preparative electrofocusing.
650
+ - Precipitation of nucleic acids is an essential technique that is often used in a variety of applications in molecular biology. The <one>two most commonly used precipitants are</one> ... ? (1) <one>isopropanol</one> (2) <one>ethanol</one> (which is often preferred)
651
+ - In der Gentechnik: was heisst <one>PTM</one>? <one>Post-Translationale Modifikation</one>. []
652
+ - Did <one>Bacillus amyloliquefaciens</one> provide us with a restriction enzyme? Yes - the <one>BamH1 restriction enzyme</one>. []
653
+ - Was ist <one>heterologe Proteinproduktion</one>? Das Gen, das verwendet wird, stammt aus einem anderen Organismus.
654
+ - <two>When</two> may we want to use the <one>Klenow fragment</one>? The <one>Klenow fragment</one> is used when we need to copy a single-stranded DNA molecule. Without the "5' -> 3' exonuclease function" is missing, the enzyme cannot degrade the non-template strand of dsDNA during synthesis of the new DNA. And this function has been removed from DNA Polymerase I, in order to create the Klenow fragment.
655
+ - How to <one>determine mRNA half-lives experimentally</one>? We could <one>shut down polymerase II transcription</one>.
656
+ - Give another name for <one>phosphodiester backbone sealer</one>. A: <one>DNA ligase</one>. URL: https://en.wikipedia.org/wiki/DNA_ligase []
657
+ - What would a positive result during the <one>Ames test</one> indicate? That <two>the target chemical is mutagenic</two> - and therefore <one>may act as a carcinogen</one>.
658
+ - Ist <one>Cetyltrimethylammoniumbromid</one> ein ionisches oder ein nicht-ionisches Detergenz? <two>Cetyltrimethylammoniumbromid</two> ist <one>ein nicht-ionisches Detergenz</one>. []
659
+ - The prefix <one>R.</one> is added sometimes to restriction enzymes. What is the meaning of this? This distinguishes these restriction enzymes from the modification enzymes with which they partner.
660
+ - <one>How</one> do we commonly <two>create fusion proteins</two>? With the <one>GST system</one>.
661
+ - Es gibt Polymerasen wie <one>Pwo</one> und <one>Pfu</one> die über einen Korrektur-Mechanismus verfügen. Wieso diese Namen? (1) <two>Pwo</two> aus <one>Pyrococcus woesei</one>. (2) <two>Pfu</two> aus <one>Pyrococcus furiosus</one>.
662
+ - <one>Western Blotting</one> <two>kombiniert</two> welche zwei Techniken? (1) <one>Proteintransfer</one> (2) <one>Immunodetektion</one>
663
+ - Nenne einen Vorteil der <one>cDNA</one> in der Gentechnik. A: Die <one>cDNA</one> <two>enthält keine Intronsequenz</two>.
664
+ - Das Restriktionsenzym <one>XhoI</one> schneidet an ...? <one>CTC|GAG</one>.
665
+ - <one>Restriction enzymes</one> are named according to ... ? According to the bacterium from which they were purified.
666
+ - In der Gentechnik: was gilt beim <one>Tm Wert</one>? <one>50% der DNA liegt einzelsträngig vor</one>.
667
+ - Was ist allgemein die <one>Dialyse-Technik</one>? Dies ist die Diffundierung über eine semi-permeable Membran.
668
+ - Was sind <one>ESTs</one> in der Gentechnik? Kurze DNA Sequenzen von etwa 100 - 800 Basenpaaren Länge.
669
+ - Warum ist die klassische <one>Mutationsanalyse</one> ungeeignet um alle Genes eines Genoms zu identifizieren? Sie ist zu aufwendig - wir müssen für jedes Gen mindestens eine Mutation erzeugen.
670
+ - In <one>yeast display</one>: which protein is typically used for the display step? The <one>Aga2p mating agglutinin protein</one>.
671
+ - What would be <one>a more correct term</one> for <two>restriction enzymes</two>? <one>Restriction endonucleases</one>. []
672
+ - Why can it be <one>costly</one> to <two>purify mammalian proteins</two>? They are typically <one>present in very low amounts in normal tissue</one>.
673
+ - <one>Welche Firma</one> erfand das <two>TaqMan</two> System? <one>Applied Biosystems</one>.
674
+ - In <one>phage display</one>: how does <two>gene coupling</two> work? The coupling of genotype and phenotype is usually accomplished by a genetic fusion of the gene of interest, e.g., an antibody fragment, with, with one of the phage coat protein genes, usually gene III, of bacteriophages such as M13 or fd.
675
+ - We can isolate <one>plasmid DNA</one> (<one>pDNA</one>) via a <two>gradient centrifugation</two>. What solution is usually used for this? A <one>caesium chloride (CsCl) solution</one>.
676
+ - When we have a <one>P20</one> pipette, we have a typical range of 2.0 - 20.0. Can we pipette 1.0 with this? No, don't do that; <one>this will put the pipette out of calibration</one>. []
677
+ - <one>Naturally occurring fusion proteins</one> are commonly found where? In <one>cancer cells</one>.
678
+ - Was ist ein sehr grosser Vorteil der <one>rekombinanten Proteinproduktion</one>? Das produzierte Protein kann <one>optimiert</one> werden.
679
+ - What means <one>cell sorting</one>? We select and purify a specific subset of cells within a population.
680
+ - What is <one>Ribosome display</one> used for? <one>Ribosome display</one> is a technique used to <two>perform in vitro protein evolution</two> to <three>create proteins that can bind to a desired ligand</three>. URL: https://en.wikipedia.org/wiki/Ribosome_display
681
+ - Ist <one>Harnstoff</one> eine <two>chaotrope Substanz</two>? Ja. URL: https://de.wikipedia.org/wiki/Harnstoff []
682
+ - In der Gentechnik: was ist das <one>Stoffelfragment</one>? <one>AmpliTaq</one>. (ADD WHAT THIS IS)
683
+ - Wie funktioniert <one>Coomassie Brilliant Blue</one> in der Biochemie? Durch die Bindung an ein Protein in saurer Lösung verschiebt sich das Absorptionsmaximum des Farbstoffs von 465 nm zu 595 nm.
684
+ - <one>Transfection</one> is a similar process to <two>transformation</two>. What is the key difference between these two? (1) In transfection we will use "phage DNA". (2) In transformation we will make use of <one>plasmid DNA</one>.
685
+ - Ist <one>Amplitag</one> eine natürliche DNA Polymerase? Nein. URL: https://www.thermofisher.com/order/catalog/product/N8080241#/N8080241 []
686
+ - How to determine the <one>total cell concentration</one>? Via <two>cell counting methods</two>, preferably automatised; such as <one>FACS</one>. []
687
+ - If we have a <one>high agarose concentration</one>, will this be used to separate smaller or longer DNA fragments? A high agarose concentration will be used to <one>separate smaller DNA fragments</one>. []
688
+ - In which <one>organism</one> were the <lightseagreen>ARS</lightseagreen> (<three>Autonomously Replicating Sequences</three>) first found? The ARS were first found in <one>yeast plasmids</one>.
689
+ - Was ist eine <one>PVDF</one>-Membran - also die Abkürzung hierzu? <one>PVDF</one>: <two>polyvinylidene difluoride</two>. URL: https://en.wikipedia.org/wiki/Polyvinylidene_fluoride
690
+ - Anderer Name für die <one>Inaktivierung eines Gens</one> mittels Gentechnik. A: <one>Gendisruption</one>. []
691
+ - We may separate DNA fragments in a <one>PAGE</one> before we start Sanger sequencing. These gels usually contain 6% to 20% polyacrylamide - and also <two>urea</two>. Why is <two>urea</two> used here? The urea acts as a <one>denaturant</one> to reduce the effects of DNA secondary structure.
692
+ - Name the three fundamental problems of <one>ribosome display</one>. A: (1) The protein chain must not leave the ribosome (2) The mRNA must not leave the ribosome (3) The protein must fold into the corect structure once still attached to the ribosome.
693
+ - The most commonly used restriction endonucleases in molecular biology belong to which class/type? They belong to the <one>Type II restriction endonucleases</one>.
694
+ - Die <one>Taq-Polymerase</one> hat einen gravierenden Nachteil. Welchen und wie hat man dies <two>gelöst</two>? Der Nachteil der Taq-Polymerase liegt darin, dass sie manchmal Fehler beim Kopieren der DNA produziert, was zu Mutationen in der DNA-Sequenz führt. Polymerasen wie Pwo und Pfu (aus Archaea) haben einen Korrektur-Mechanismus, der die Anzahl der Mutationen in der kopierten DNA senkt.
695
+ - Der Schlüssel zur Erzeugung von <one>cDNA</one> ist? Das Enzym <one>reverse Transkriptase</one>. []
696
+ - Nenne eine Methode eine Endmarkierung bei Nukleinsäuren zu erreichen. A: Wir verwenden das Enzym <one>Polynukleotidkinase</one>, welches eine markierte Phosphatgruppe (32P) von ATP auf ein 5 OH Ende der Nukleinsäure überträgt. Die Dephosphorylierung erfolgt danach mittels alkalischer Phosphatase.
697
+ - What do we mean with a <one>packaging extract</one>? This is, for example, when we wish to create a phage in the lab, to combine two strains of bacteria which are used to produce a lysate called the "packaging extract". Each strain is mutant in one function of phage morphogenesis, so that the packaging extracts will not work in isolation.
698
+ - Does <one>ribosome display</one> have <two>an in-vivo step</two>? <one>No</one> - it is <three>entirely in-vitro</three>. []
699
+ - What is the critical issue in constructing <one>HACs</one>? Provide an <one>efficient centromere</one> for them.
700
+ - In der Gentechnik: wieso verwenden wir <one>Mercaptoethanol</one>? Für die <one>Reduktion der S-S-Brücken</one>. []
701
+ - <one>BACs</one> basieren auf? Dem <one>F-Plasmid</one>. URL: https://en.wikipedia.org/wiki/Bacterial_artificial_chromosome []
702
+ - Bei einer <one>Disk-PAGE</one>: kommt zuerst das <three>Sammelgel</three> oder das <three>Trenngel</three>? Alphabetisch vorgehen also, <two>S,T</one> - zuerst kommt das <one>Sammelgel</one>, dann kommt das <one>Trenngel</one>. []
703
+ - Bei der <one>Chloroform-Extraktion</one> verbleibt die DNA in der ... Phase. A: <one>wässrigen Phase</one>. []
704
+ - <one>Ethidium bromide</one> fluoresces <darkorange>orange</darkorange> when illuminated with ... ? <one>Ultraviolet (UV) light</one>. URL: https://en.wikipedia.org/wiki/Ethidium_bromide []
705
+ - In der Gentechnik wird oft das <one>Glutathione-S-Transferasesystem</one> verwendet. Hier erstellen wir ein Fusion Protein. Das gesuchte Protein wird an das GST-Protein gekoppelt. Wie kann man aber dieses Protein gewinnen (purification)? Man kann es aufgrund seiner <one>Affinität zu Glutathione</one> gewinnen.
706
+ - What is meant with the term <one>positional cloning</one>? This is isolation of genes on the basis of their position on a gene map.
707
+ - Um DNA zu isolieren müssen wir einen <one>Zellaufschluss</one> durchführen. Welche 3 Möglichkeiten haben wir (inklusive Beispiel)? (1) <one>mechanisch</one>; zum Beispiel durch <two>Ultraschall</two> (2) <one>thermisch</one>, zum Beispiel durch <two>freeze-thaw</two> Zyklen (3) <one>enzymatisch</one>, zum Beispiel durch <two>Lysozymverdau</two>
708
+ - In the name of <one>pBR322</one>, what does the leading <two>p</two> indicate? This <one>p</one> stands for <one>plasmid</one>. []
709
+ - Wieso verwenden wir mitunter <one>Milchpulver</one> bei einem <three>Western Blot</three>? Um verbleibende <one>freie Bindungsstellen der Membran abzusättigen</one>.
710
+ - How can we add <one>artifical restriction sites</one>? We can append to the <one>5' end of a primer</one>. This will not interfere with the PCR reaction.
711
+ - Nenne den <three>gravierendsten Nachteil</three> der Methode <one>Proteinbestimmung nach Bradford</one>. A: Die Proteinzusammensetzung beeinflusst das Ergebnis.
712
+ - When we <one>treat a vector with a phosphatase</one>, such as the <two>bacterial alkaline phosphatase</two>, why may this be used? To <one>prevent self-ligation</one>. []
713
+ - Was verwenden wir üblicherweise um eine <one>knock-in</one> Maus herzustellen? <one>Retroviren</one>, als Vektoren für den Gentransfer.
714
+ - In der Gentechnik: was erlaubt uns eine <one>niedrige Stringenz</one>? A: Sie erlaubt es uns eine grosse Zahl an Fehlpaarungen zu tolerieren.
715
+ - Beim <one>cre-lox System</one>: woher kommt der Name cre? <one>cre</one> steht für <two>causes recombination</two>. []
716
+ - What does the term <one>genomic library</one> refer to? This refers to <one>a set of clones representing the entire genome of an organism</one>.
717
+ - Die Restriktionsendonuclease <one>EcoRI</one> hat wieviele Untereinheiten? <two>2</two>. Es ist ein <one>Homodimer</one>.
718
+ - In <one>Gel-Electrophoresis</one>: what is the job of the <two>resolving gel</two>? The actual <one>separation</one> takes place here.
719
+ - Beim <one>Western Blotting</one>: der <three>sekundäre Antikörper</three> trägt einen leicht nachweisbaren Marker, aber wo genau? Im <one>Fc-Bereich</one>. []
720
+ - What do we mean with <one>affinity reagents</one>? Affinity reagents are usually <one>antibodies</one> with a high affinity for a particular epitope. They can then be used, for example, during <two>protein purification</two>.
721
+ - Der Farbstoff Coomassie-Brillant-Blau <one>R-250</one> lagert sich woran an? An basische und aromatische Seitenketten von Aminosäuren.
722
+ - <one>Golden gate assembly</one> makes use of <three>Type IIS restriction endonucleases</three>. Give one such example for a Type IIS restriction endonuclease. A: <one>FokI</one>.
723
+ - Why is the graph that measures <one>decimal reduction time</one> useful? We can use it to calculate processing times required in order to achieve sterilization, such as in a canning operation.
724
+ - Name one of the oldest methods to <one>visualize RNA molecules from a collection of cells</one>. A: A <one>northern Blot</one>. []
725
+ - Wieviele <one>BACs</one> finden wir normalerweise in einer Zelle? <one>1</one>. []
726
+ - In the various <one>surface display techniques</one> we physically couple the information to a corresponding function. What is that function, usually? The function is <one>a specific binding property</one>.
727
+ - In <one>Error-prone mutagenesis</one>, the <two>PCR</two> is performed with ... ? <one>Analogues of convential dNTPs</one>.
728
+ - Abgesehen von der Apparatur bei einem Western Blot: was wird noch benötigt, das wir möglichst vor Beginn des Western Blots bereits besitzen? Ein <one>Antikörper gegen das gesuchte Protein</one>.
729
+ - Der <one>Northern Blot</one> ist eine Methode zur Übertragung (= <two>Blotten</two>) der in einer Gelelektrophorese aufgetrennten RNA auf eine Membran. Diese Membran ist oft ein DBM-Paper (oder auch Nylon). Wofür steht <three>DBM</three>? <one>Diazobenzyloxymethyl</one>.
730
+ - Nenne drei häufig auftauchende <one>Probleme bei der Isolierung von Proteinen</one>, zum Beispiel mit Hilfe von <two>Ammoniumsulfat</two>. A: (1) Proteinlösung enthält zu viel Salz (2) Proteinlösung enthält falschen Puffer (3) Proteinlösung enthält zu viel Wasser (ist zu verdünnt)
731
+ - <one>Homopolymer tailing</one> in gene technology is usually performed with which enzyme? With the enzyme <one>terminal transferase</one>. URL: https://en.wikipedia.org/wiki/Terminal_deoxynucleotidyl_transferase
732
+ - What is an <one>extraction buffer</one>? This is a solution that breaks open the cell to extract the DNA, RNA or proteins.
733
+ - In der <one>Biochemie</one> kann man die <two>Zwitterionen-Puffer</two> in welche zwei Puffertypen einteilen? (1) <one>chaotrope Puffer</one> (2) <one>taxigene Puffer</one>
734
+ - Nenne einen Grund, wieso die <one>Autoradiographie</one> in der molekularen Biologie nicht mehr so populär ist. A: Die <one>Beseitigung des radioaktiven Abfalls</one> ist aufwendig.
735
+ - Name <one>a phagemid</one> that was produced by the company <peru>Strategene</peru>. A: The <one>lambda-ZAP family</one>.
736
+ - What is the advantage of <one>site-directed mutagenesis</one>? We can <one>introduce mutations into genes</one> <two>at precisely determined sites</two>.
737
+ - Eine <one>Anreicherung von Proteinen</one> kann wie erfolgen, im Labor? Durch <one>Immunpräzipitation</one>.
738
+ - What is <one>SV40 polyA</one>? This is <one>a polyadenylation signal</one> from the genome-sequence of the <two>Simian Virus 40</two>.
739
+ - The first step in <one>Gateway cloning</one> is <two>the preparation of a Gateway Entry clone</two>. Which sequences have to be added to the PCR primers used to amplify the gene of interest? (1) <one>attB1 sequence</one> (2) <one>attB2 sequence</one>
740
+ - When we <one>isolate nucleic acids via alcohol</one>, <two>where</two> and <two>how</two> may we find it? We can <one>find it in the precipitate</one>, after applying <two>centrifugation</two>. In other words, the alcohol, and the centrifugation step, causes the nucleic acids to aggregate into a precipitate.
741
+ - In der Gentechnik: <one>Typ-I-Restriktionsendonukleasen</one> bestehen aus welchen Untereinheiten? Erkläre die Aktivitäten. A: Sie bestehen aus <peru>3 Untereinheiten</peru>: (1) <one>S-Untereinheit</one> erkennt die DNA-Sequenz (2) <one>M-Untereinheit</one> methyliert die DNA (3) <one>R-Untereinheit</one> schneidet die DNA
742
+ - All <one>deep sequencing machines</one> for next generation sequencing are based on which method? <one>Local, clustered PCR amplification</one>.
743
+ - Bei der <one>Herstellung des Klenow-Fragments</one>: was geht verloren? Die <one>5'→3' Exonukleaseaktivität</one>.
744
+ - Nenne eine allgemeine Einschränkung des <one>Western-Blots</one>. A: Wir können mit einem Western-Blot <one>nur gezielt nach bekannten Proteinen suchen</one>, da wir <two>spezifische Antikörper</two> benötigen.
745
+ - <one>Proteins in solution</one> may <peru>absorb ultraviolet light</peru> at <two>280 nm</two> and at <two>200 nm</two>. What is responsible for adsorption at 200 nm? <one>Peptide bonds</one> are primarily responsible for the peak at 200 nm.
746
+ - Name the <one>four components</one> of <two>a yeast-2-hybrid screen</two>. A: (1) <one>DNA Binding domain</one> (2) <one>Bait</one> (3) <one>Prey</one> (4) <one>Activator Domain</one>
747
+ - Aus welchen zwei voneinander unabhängigen Proteinen besteht ein <one>Typ II-Restriktionssystem</one>? Aus einer <one>Methylase</one> und einem <one>Restriktionsenzym</one>. URL: https://en.wikipedia.org/wiki/Restriction_enzyme#Type_II
748
+ - Nenne <one>zwei ionische Detergentien</one> in der Gentechnik, um Membranen aufzuschliessen. A: (1) <one>Triton X-100</one> (2) <one>Octylglucosid</one>
749
+ - Warum ist <one>eine Farbreaktion zur Quantifizierung von Proteinen</one> nicht unbedingt perfekt? Da eine exakte Quantifizierung aufgrund der Komplexität und Individualität der Proteine nicht möglich ist. Eine Farbreaktion spricht auf eine bestimmte Funktionalität an, aber diese Funktionalität kommt aber in verschiedenen Proteinen in unterschiedlicher Häufigkeit vor.
750
+ - <one>Gibson Assembly</one> works best if all DNA fragments have which minimum size? About <one>500bp</one>.
751
+ - What is the really huge advantage of the <one>Gibson Assembly System</one>? This allows the insertion of fragments into a plasmid without the need (and use) of restriction enzymes.
752
+ - Was passiert wenn wir das <one>Lambda-Genom</one> mit <two>EcoRI</two> behandeln? Es entstehen <one>3 chromosomale Fragmente</one>.
753
+ - Wie - oder womit - beginnt das <one>Southern Blotting Verfahren</one>? Wir <one>schneiden DNA</one> mit einem oder mehreren <one>Restriktionsenzymen</one>.
754
+ - What is meant with the term <one>isoschizomer</one>? This is <peru>any additional restriction endonuclease</peru> that <one>can cleave at the same sequence as the prototype</one> that was first discovered.
755
+ - Nenne zwei <one>chemische Substanzen</one> die Proteine denaturieren. A: (1) <one>Harnstoff</one> (2) <one>Guanidiniumchlorid</one>
756
+ - What exactly is a <one>molecular beacon</one>? A <one>fluorescent probe molecule</one> that is designed to fluoresce only when it binds to a specific DNA target sequence.
757
+ - How can the <one>amino acid sequence of a protein be determined</one>? Via <one>N-terminal Edman degradation</one>.
758
+ - In regards to DNA, what is the enzyme <one>polynucleotide kinase</one> doing? It moves the gamma-phosphate from ATP to the 5'-OH group of DNA.
759
+ - Name a <one>restriction enzyme</one> that can create <two>blunt ends</two> as overhangs. A: <one>Hind II</one> (at <two>GTTAAC</two>). URL: https://www.uniprot.org/uniprot/P44413
760
+ - Nenne einen <one>Serin-Protease Inhibitor</one> der mit dem Buchstaben <two>P</two> beginnt. A: <one>PMSF</one>: <two>Phenylmethylsulfonyalfluorid</two>.
761
+ - Contrast <one>phage display</one> with <one>yeast display</one>: name an advantage of yeast display here. A: Many more proteins can be tested for than via phage display.
762
+ - <one>Meselson und Stahl</one> entwickelten welche Methode? Die <one>CsCl-Gleichgewichtszentrifugation</one>.
763
+ - Welche zwei <one>Ionenaustauschchromatographie-Methoden</one> gibt es? (1) <one>AEC</one> (<peru>Anionenaustauschchromatographie</peru>) - hier gibt es negativ geladene Partikel, die an die positiv geladene Säulenmatrix binden können. (2) <one>CEC</one> (<peru>Kationenaustauschchromatographie</peru>) - hier gibt es positiv geladene Partikel, die an die negativ geladene Säulenmatrix binden können.
764
+ - Name one big disadvantage of <one>YAC Vectors</one>. A: They often <one>undergo rearrangements in host cells</one>.
765
+ - <one>Membranproteine</one> können wir nur aus der Membran isolieren unter <two>Zugabe von ... </two>? <one>Detergenzien</one>.
766
+ - In <one>Golden Gate Cloning</one> we may make use of the restriction enzyme <two>Bsa1</two>. What is the advantage of this enzyme? This restriction enzyme can assemble multiple fragments of DNA in a directional fashion.
767
+ - Die <one>Biuret-Reaktion</one> beruht auf ... ? Sie beruht auf einer Komplexbildung von Cu2+ Ionen mit je vier Peptid-Bindungen eines Proteins im alkalischen Medium.
768
+ - <one>Glutamine</one> has a half-life of ... in liquid media? About <one>two weeks</one>.
769
+ - Was genau passiert bei der <one>Zufallsmutagenese</one> in der Gentechnik? Das Gen für ein Enzym wird ungerichtet an unterschiedlichen Stellen mutiert.
770
+ - Name <one>a simple way how to eliminate plasmids from bacteria, in the laboratory</one>. A: We could make use of plasmids containing a <one>temperature sensitive origin of replication</one>, so that it can subsequently be easily lost by growing a strain at 37° C.
771
+ - Um das <one>pUC-System</one> verwenden zu können benötigen wir besondere Bakterien? Ja - und zwar solche die in ihrem Genom den <two>3' Abschnitt des lacZ-Gens</two> besitzen.
772
+ - We wish to <one>detect apoptosis</one> in many cells at once. Which protein can we use for that? <one>Annexin V</one>.
773
+ - Können wir das <one>bakterielle Nucleoid</one> isolieren? Ja - zum Beispiel mit Hilfe einer <one>Saccharosegradienten-Zentrifugation</one>.
774
+ - Was ist <one>das Problem</one> bei hohen Konzentrationen an <two>SYBR Green I</two>? Dieser <one>Fluoreszenzfarbstoff</one> kann in zu hohen Konzentrationen die <two>DNA Polymerase hemmen</two>.
775
+ - In der <one>Phosphoramidite Methode</one>: wie werden die Nukleotide chemisch modifiziert? (1) A und G erhalten eine <two>benzoyl Gruppe</two>. (2) G erhält eine <two>isobutyryl Gruppe</two>.
776
+ - Warum ist das Restriktionsenzym <one>NcoI</one> besonders geeignet für <two>Translationsexpressionsvektoren</two>? Da es in seiner Erkennungssequenz <one>ATG</one> enthält. Seine vollständige Erkennungssequenz ist: <springgreen>5'-CCATGG-3'</springgreen> https://www.neb.com/products/r0193-ncoi
777
+ - Name a way <one>how to localize RNA inside of a cell</one>. A: Through <one>in-situ hybridisation</one>.
778
+ - Was heisst <one>Chip-seq</one>? <one>Chromatin immunoprecipitation-sequencing</one>.
779
+ - In der Gentechnik gibt es die sogenannten <one>Good-Puffer</one>. Was sollte man in Bezug auf die Permeabilität wissen? Der Puffer sollte <one>nicht durch biologische Membranen permeieren</one>, um eine Konzentrierung innerhalb der Zelle/Organelle zu verhindern. Tris ist relativ gut fettlöslich und kann daher durch Membranen gelangen. Dies erklärt auch seine Toxizität für viele Säugerzellen in Kultur!
780
+ - Eine <one>Variante des EMSA</one> wird auch <two>supershift assay</two> genannt. Wie unterscheidet sie sich von dem normalen EMSA? Beim Supershift Assay wird ein Antikörper verwendet, der das spezifische Protein erkennen kann in einer Mischung. Durch die Bindung kommt es zu einem grösseren Komplex - dies äussert sich durch einen grösseren "Shift" im EMSA.
781
+ - Nenne <one>zwei Vorteile</one> der <two>SDS-PAGE</two>. A: (1) die <one>SDS-PAGE zeigt eine relativ hohe Beladbarkeit</one> (2) die <one>SDS-PAGE ist relativ billig</one>
782
+ - Name a general advantage if we use <one>mammalian selection markers</one>, as opposed to <one>bacterial antibiotic resistance genes</one>. A: Mammalian selection markers are typically NOT antibiotic resistance genes, so no antibiotic resistance will spread. Usually we employ mutants in mammalian cell culture systems that are deficient in some metabolic pathway.
783
+ - Nenne eine <one>direkte</one> und eine <one>indirekte</one> Methode zur Bestimmung der Primärstruktur von Proteinen. A: (1) <one>Direkt</one>: Edman-Abbau (2) <one>Indirekt</one>: aus der Sequenz des zugehörigen Gens heraus.
784
+ - Was ist eine <one>Exopeptidase</one>? Eine <one>Peptidase</one>, die ein Protein vom Ende her unspezifisch abbauen kann.
785
+ - A <one>restriction enzyme</one> starting with the letters <two>Bam</two>, may <three>originate from which organism</three>? It may originate from <one>Bacillus amyloliquefaciens</one>.
786
+ - Was ist <one>Toyopearl</one>? Ein sehr poröses, halbstarres sphärisches Gel, das für die Mittel- und Tiefdruck-Flüssigchromatographie entworfen ist.
787
+ - Wieso wird in der Gentechnik die <one>UIZma DNA-Polymerase</one> verwendet? Sie ist <one>am hitzestabilsten</one>.
788
+ - <one>Ampicillin</one> wirkt wogegen? Gegen die Zellwand sich teilender <one>gram-negativer Bakterien</one>.
789
+ - We can generate so called <one>somatic cell hybrids</one>. Name two ways how to do that. A: (1) certain viruses like the Sendai virus can help (2) use polyethylene glycol
790
+ - Name <one>a simple way to extract proteins</one>. A: <one>Add an equal amount of phenol</one>. <two>Proteins can then be found in the Phenol-phase</two>.
791
+ - Was sind <one>Phagemide</one>? Dies sind <one>Vektoren</one>, die teils von <two>Bakteriophagen</two> und teils von <two>Plasmiden</two> stammen.
792
+ - Grundidee hinter <one>phage display</one>? Die Idee hinter einem Phage Display ist es das wir ein Protein an ein coat protein eines Bacterophagen fusionieren, und dieses dann an der Oberfläche darstellen (<two>to display on the surface</two>).
793
+ - <one>ChIP-seq</one> has what kind of <two>calling</two>? A <one>peak calling</one>.
794
+ - Welchen <one>Nachteil</one> haben die <two>Proofreading-Polymerasen</two> gegenüber den <two>normalen Polymerasen</two>? Sie besitzen eine <one>geringere Prozessivität</one>.
795
+ - Was ist der <one>genetische Fingerabdruck</one>? Eine Methode zur Erzeugung eines für jeden Menschen einzigartigen Musters der DNA seines Genoms.
796
+ - Welche Aufgabe hat die <one>Type I restriction enzyme M-subunit</one>? Diese fügt eine <one>Methyl-Gruppe</one> an die recognition site hinzu.
797
+ - Which enormous advantage do we gain through <one>recombineering</one>, as opposed to the more classical <two>in-vitro genetic engineering</two> technique? Recombineering does not rely on restriction enzymes.
798
+ - Bei der <one>Proteinanalyse</one>: welche zwei groben Punkte können wir unterscheiden? (1) Die <one>quantitative</one> Proteinanalyse (2) Die <one>qualitative</one> Proteinanalyse
799
+ - Nach <one>IUPAC</one>: was ist <two>die Einheit der Enzymaktivität</two>? <one>1 Katal</one>. (Umsatz von 1 mol Substrat/sec)
800
+ - An welcher Sequenzfolge schneidet <one>NotI</one>? <one>NotI</one> ist ein <two>8-cutter</two> der an <three>GCGGCCGC</three> schneidet, und zwar an Position 2.
801
+ - Why was the name <one>ribosome display</one> chosen? Because the mRNA remains connected to the ribosome. We thus have some mRNA-genotype system here.
802
+ - In a molecular biology labor, we may use <one>DEPC</one>. What does this abbreviation stand for? <one>Diethylpyrocarbonate</one>.
803
+ - Is <one>FACS</one> used in a typical <two>Yeast Display</two>? Yes, to sort for <one>the maximum binders</one>.
804
+ - Wie können wir <one>mRNA</one> von <one>ribosomaler RNA</one> aus einem Zelllysat trennen? Wir verwenden <one>Oligo(dT)-Cellulose</one>; hierbei hybridisiert die mRNA mit der Oligo(dT)-Cellulose.
805
+ - Wie sind <one>Ligasen</one> definiert? Dies sind Enzyme, die DNA-Moleküle durch "Phosphodiesterbindungen" zwischen einem 5-Strich Phosphat und einem 3 Strich Hydroxylende miteinander verknüpfen können.
806
+ - Which enzyme is used in order to create <one>ds-cDNA</one> from <one>ss-cDNA</one>? <one>DNA polymerase I</one>.
807
+ - Kann man <one>Trypsin</one> inhibieren? Ja: so zum Beispiel durch einen <one>Trypsin-Inhibitor</one>, aus Soja.
808
+ - The <one>comet assay</one> can be used to ... ? Measure deoxyribonucleic acid (DNA) strand breaks in eukaryotic cells. It is <one>a single-cell gel electrophoresis</one>. URL: https://en.wikipedia.org/wiki/Comet_assay
809
+ - Sind <one>viele Reinigungsschritte</one> in der Biochemie ein Problem? Ja. Das Protein wird zunehmend instabiler.
810
+ - Beim <one>Western Blotting</one> wird häufig das Enzym <two>Alkalische Phosphatase</two> eingesetzt, das ein chromogenes Substrat benötigt. Nenne ein Beispiel für ein solches Substrat, das von diesem Enzym umgesetzt wird. A: <one>X-Phos</one>.
811
+ - <one>Morpholinos</one> bind to ... ? <one>mRNA</one>.
812
+ - Was genau liefern uns <one>ESTs</one>? Einen Ausschnitt der Sequenz von Genen, die in der betrachteten Zelle exprimiert werden (also aktiv sind).
813
+ - Give another, more scientific, name for <one>equal density</one>, as part of the topic <two>centrifugation</two>. A: <one>Isopycnic point</one>.
814
+ - Was ist der <one>Aussalzeffekt</one> in der Biochemie? Beim Erhöhen der Ionenstärke fallen die Proteine aus.
815
+ - A <one>pellet</one> may contain our protein of interest. What can we do to dissolve it? (1) wash it with a buffer containing low concentrations of <one>chaotropic agents</one> (such as guanidine-HCl or urea) (2) use detergents such as <one>1% Triton X-100</one>
816
+ - What is meant with the term <one>star activity</one>? This refers to the fact that many restriction enzymes cleave sequences that are similar to their defined recognition site.
817
+ - In <one>phage display</one>: selection involves subjecting the phage library to successive rounds of ... ? <one>Antigen exposure</one>.
818
+ - <one>His-Tags</one> binden an ... ? <one>Zweiwertige Nickel-Ionen</one>.
819
+ - Deutsche Bezeichnung für <one>Blotting</one>? <one>Transfertechnik</one>.
820
+ - Was sind <one>pRARE plasmids</one>? Plasmide, die <one>seltene tRNA-Gene</one> besitzen (bezogen auf E. coli).
821
+ - The enzyme <one>bacterial alkaline phosphatase</one> does what exactly? It removes a phosphate group from the 5' end of DNA, thus leaving a 5'-OH group in place.
822
+ - In der Gentechnik: was ist die sogenannte <one>Star-Aktivität</one>? Dies ist die (leider problematische) Fähigkeit eines Restriktionsenzyms, unter speziellen Bedingungen an anderen als den Standarderkennungssequenzen an die DNA zu binden und sie dort zu spalten.
823
+ - Was bezeichnen wir mit dem Begriff <one>Klonierung</one>? Die Herstellung vielfacher, exakter Kopien eines bestimmten DNA-Segments, mittels spezieller Technologien und Vektoren.
824
+ - Which enzyme can we use to <one>make nicks in RNA</one>? <one>RNase H</one>. URL: https://en.wikipedia.org/wiki/Ribonuclease_H
825
+ - After a <one>heat-shock procedure</one>, the protocols often used require a time range of 60-90 minutes. Why? This time range is <one>giving the plasmids time</one> to become established and permit phenotypic expression of their traits.
826
+ - Was ist die Idee in der Gentechnik hinter der <one>phage display technique</one>? Ein Protein wird an ein coatprotein eines Bacteriophagen fusioniert (an das Gen davon), und später dadurch an der Aussenseite des Phagen dargestellt.
827
+ - Unterschied zwischen einem normalen <one>Deoxynucleotide</one> und einem <one>Dideoxynucleotide</one>? Dem Dideoxynucleotide fehlt die <one>3' OH Gruppe</one>.
828
+ - What means <one>goat anti-rabbit</one>? Immunize a goat with rabbit antibodies.
829
+ - What is <one>DNA Sequencing</one>? This refers to <one>the determination of the nucleotide sequence of DNA</one>.
830
+ - Why the name <one>electrophoresis</one>? In electrophoresis, substances are <one>separated using an electric field</one>.
831
+ - In der Gentechnik: was heisst <one>CN-PAGE</one>? <one>Colorless, native polyacrylamide gel electrophoresis</one>.
832
+ - <one>DNA-SYBR Green</one> absorbiert Licht welcher Farbe und emittiert Licht welcher Farbe? (1) <one>Absorbiert blaues Licht</one>. (2) <one>Emittiert grünes Licht</one>.
833
+ - We can <one>reverse transcribe RNA</one>. Name two different ways how to initiate this. A: (1) either through oligo-dT (2) or through random hexamere primers
834
+ - Was ist <one>targeted mutagenesis</one> in der Gentechnologie? Strukturinformation über ein Enzym wird ausgewählt, um eine kleine Zahl von AA zu mutieren. Multiple Mutationen in bzw um die Aktivitätszentrum sollen die Substratspezifität oder Regioselektivität verändern. Kleine Library/Anzahl - daher weniger Screening nötig. Aber: Kein Einbeziehen von möglichen positiven Mutationen, die vom aktiven Zentrum entfernt sind.
835
+ - Das Temperaturoptimum von <one>Pyrococcus furiosus</one> liegt bei ... ? <one>100°C</one>.
836
+ - Was ist der kritische Punkt bei der <one>Kettenabbruch-Methode</one>? Die <one>genaue Auftrennung der Syntheseprodukte</one>.
837
+ - In gene technology: what is meant with the term <one>linkers</one>? Linkers are "self-complementary oligomers" that contain a recognition sequence for a particular restriction enzyme. For example, the sequence "5'-CCGAATTCGG-3'" would contain, in its dsDNA form, the recognition sequence for the restriction endonuclease "EcoRI", which is "GAATTC".
838
+ - In der Gentechnik gibt es die Methode <one>directed evolution</one>. Was bezweckt man damit? Zufällige Mutationen im Gen des Zielproteins einführen.
839
+ - Lange Bezeichnung für <one>DNAzyme</one>? <one>Desoxyribozyme</one>. URL: https://en.wikipedia.org/wiki/Deoxyribozyme
840
+ - Nenne eine Methode Zellen zu zählen, die mit dem Buchstaben <one>H</one> beginnt. A: <one>Hämozytometer</one>.
841
+ - In welchem Jahr wurde erstmals rekombinante DNA <one>erstellt</one>? Im Jahre <one>1973</one>. URL: https://de.wikipedia.org/wiki/Rekombinante_DNA
842
+ - Nenne einen <one>rot fluoreszierenden Farbstoff</one>. A: <one>Propidiumjodid</one>.
843
+ - Bei der Proteinreinigung können wir <one>Polykationen</one> als Fällungsmittel verwenden. Nenne zwei Beispiele hierfür. A: (1) <one>Protamin</one> (2) <one>Streptomycin</one> (als Sulfat)
844
+ - When DNA is isolated in the lab, what <one>physical vulnerability</one> may exist? DNA may be vulnerable to <one>shearing forces</one>.
845
+ - <one>Micrococcal Nuclease</one> will typically cut eukaryotic DNA threads at ...? At <one>junctions between the nucleosomes</one>.
846
+ - Was genau liefert uns eine <one>RACE</one>? Fehlende Sequenzen der cDNA, 5 Strich und 3 Strich werden erzeugt.
847
+ - Wozu dient der <one>Ligation Assay</one>? Wir können eine Auskunft erhalten über Kontamination mit Phosphatasen und Exonukleasen, geliefert über die Menge an nicht religierbarem Fragmenten.
848
+ - Welche <one>Farbe</one> hat der Komplex in der Biuret-Methode? <one>Blau-violett</one>.
849
+ - What is <one>modENCODE</one>? Like the ENCODE project, but it focuses on <one>model organisms</one> primarily.
850
+ - The first step in <one>Gateway cloning</one> is ... ? The <one>preparation of a Gateway Entry clone</one>.
851
+ - In der Gentechnik: was heisst <one>Pfu exo minus</one>? Pfu hat keine Exonuklease-Aktivität. Kann man kommerziell erhalten.
852
+ - Name 3 features that an <one>effective cloning vector</one> should include. A: (1) an origin of replication (2) selectable markers (3) one or more unique restriction sites
853
+ - Name a technique with which we could <one>quantify the length of telomeres</one>. A: <one>Flow-FISH</one>.
854
+ - What is a <one>leaky promoter</one>? A promoter whose product is made continuously in low levels even when it is shut down by a repressor.
855
+ - Gibt es <one>Desoxyribozyme</one>? Ja - zumindest <one>künstlich erzeugte</one>.
856
+ - Nenne ein <one>Expressionssystem</one> das in E. coli Verwendung findet. A: Das <one>pET-System</one>.
857
+ - We may wish to remove proteins from a mixture. Proteins tend to stay in ... <one>which phase</one>? In the <one>phenol phase</one>. (Mnemonic: protein ... phenol ... <royalblue>p-p</royalblue>
858
+ - Das <one>GST gene fusion system</one> wird wozu verwendet? Dieses System wird verwendet um Proteine zu reinigen und zu detektieren.
859
+ - Nenne eine Einsatzmöglichkeit für <one>chemisch synthetisierte Oligonukleotide</one>. A: Als <one>Primer</one> (für die PCR).
860
+ - How can we reveal <one>chromosomal territories</one>? Via <one>FISH</one>.
861
+ - What means <one>star activity</one>? <one>Restriction enzymes</one> may begin cutting DNA at nucleotide sequences other than the exact recognition site.
862
+ - Was heisst, übersetzt, <one>Tunel-Assay</one>? <one>Terminal transferase dUTP nick end labeling</one>.
863
+ - Name a group of enzymes that <one>can degrade nucleic acids</one>, by breaking the phosphodiester bond that holds these nucleotides together. A: <one>Nucleases</one> can do so.
864
+ - In general: how do we create <one>fusion proteins</one> in the lab? We link the two proteins together and then cleave them with a commercial available <one>protease</one>.
865
+ - In <one>Northern Blotting</one>: how is the RNA transferred? Via <one>electrophoresis</one>.
866
+ - Wozu dient im Labor die <one>Phenolextraktion</one>? Um aus einer Lösung die <one>Proteine zu entfernen</one>.
867
+ - Name an antibiotic that is <one>toxic to eukaryotic cells</one> - but not to E. coli cells. A: The antibiotic <one>kanamycin</one>. URL: https://en.wikipedia.org/wiki/Kanamycin_A
868
+ - In molecular biology and gene technology: what is meant with the expression <one>a coupled system</one>? This is, for example, <one>when transcription and translation in the same tube occur</one>.
869
+ - Wieviele <one>Typ-II Restriktionsenzyme</one> sind zur Zeit (2019) mindestens bekannt? <one>2750</one>.
870
+ - The read length of <one>Ion Torrent PGM</one> is ... ? About <one>200 bp - 400 bp</one>.
871
+ - If we wish to <one>isolate eukaryotic mRNAs</one>, what technique may we employ? We can use <one>affinity chromatography</one> via "oligo(dT)-cellulose", which will bind to the poly(A) tails of eukaryotic mRNAs.
872
+ - Was wird mit der wissenschaftlichen Strategie <one>descriptive strategy</one> in der Molekularbiologie gemeint? Das ganze System (Zellen oder der Organismus) wird beobachtet ohne das man ihn beeinflusst. Vorteil ist das der Zustand des Systems hierbei nicht verändert wird. Ein Nachteil ist aber das es schwierig ist Ursache-Wirkung herauszufinden.
873
+ - Nenne <one>ein Nukleotid mit fluoreszierender Seitengruppe</one>. A: <one>2,4-Dinitrophenol</one>.
874
+ - If we mark a protein with <one>six His-tags</one>, how can we then purify such a protein? By <one>nickel affinity chromatography</one>.
875
+ - In one short sentence: what happens in <one>flow cytometry</one>? We measure the properties of cells in flow.
876
+ - Was ist ein <one>Overdigestion Assay</one>? Die Substrat-DNA wird für <one>16 Stunden</one> mit unterschiedlichen Enzymmengen verdaut.
877
+ - <one>Coomassie Brilliant</one> hat ein Absorptionsmaximum bei ...? Bei <one>595 nm</one>.
878
+ - Nenne einen Vorteil des <one>pET-Proteinexpressionsystems</one>. A: Die rekombinanten Proteine werden erst nach Induktion exprimiert.
879
+ - Warum funktioniert die <one>Biuret-Methode</one>? Proteine bestehen aus Aminosäuren. Aminosäuren verfügen über NH-Gruppen. Der Stickstoff dieser Gruppe hat ein freies Elektronenpaar, mit dessen Hilfe ein "Kupferion" komplexiert werden kann. Amminkomplexe von Kupfer(II)-Ionen haben eine blau-violette Farbe.
880
+ - What are <one>isocaudomers</one>? These are restriction enzymes that produce the same nucleotide extensions, but have <one>different recognition sites</one>.
881
+ - In <one>DNA extraction from plants</one>: which chemical may we use to break up the cell content? <one>Mercaptoethanol</one>.
882
+ - When a technique says <one>rRNA depletion</one>, what does it mean? That <one>rRNA will be selectively removed in the process</one>.
883
+ - The peptide array <one>SunTag</one> can recruit multiple copies of ... ? A: An <one>antibody-fusion protein</one>.
884
+ - When was <one>Sanger Sequencing</one> established? In the year <one>1977</one>.
885
+ - In der Gentechnik, bei der Proteinreinigung: wieso sollten wir den <one>Kontakt mit Metall</one> vermeiden? Metallische Oberflächen können <one>Schwermetallionen</one> an die Lösung abgeben.
886
+ - Wie lange leuchtet <one>Luminol</one> in etwa? Etwa <one>30 Sekunden</one> lang.
887
+ - Welchen Vorteil hat <one>PEG</one> (Polyethylengylcol)? Es ist <one>vollständig wasserlöslich</one>.
888
+ - What limits <one>genome sequencing</one>? Cloning, or more accurately, <one>the length of the individual reads</one>.
889
+ - How is the <one>rolling-circle replication</one> initiated? By a break in one of the nucleotide strands, thus creating a 3-prime-OH group and a <one>5' phosphate group</one>.
890
+ - Was sind <one>Nukleasen</one>? Dies sind Enzyme, die die <one>Phosphodiesterbindungen</one> zwischen den Nukleotiden abbauen können.
891
+ - Nenne eine einfache Methode, wie wir Proteine nach ihrer Größe auftrennen können. A: Mittels <one>Gelfiltrationschromatographie</one>.
892
+ - Nenne eine einfache Methode, wie wir Proteine unterschiedlicher Ladung auftrennen können. A: Mittels <one>Ionenaustauschchromatographie</one>.
893
+ - What is the general idea behind <one>display protocols</one>? They are designed to identify both the gene and the encoded protein.
894
+ - Optimal temperature for the <one>Taq polymerase</one>? About (or a bit less) than <one>80°C</one>.
895
+ - Wie nennt man einzelsträngige, vorwiegend DNA-basierte Oligonukleotide, die die <one>RNase H</one> aktivieren? <one>Antisense</one>.
896
+ - In einer <one>RFLP Analyse</one>: welche zwei Möglichkeiten gibt es diese durchzuführen? (1) mittels <one>Southern blotting</one> (2) mittels <one>PCR</one>
897
+ - The <one>His-tag</one>, aka polyhistidine, binds strongly to divalent metal ions. Name two such metals as examples. A: (1) <one>nickel</one> (2) <one>cobalt</one>
898
+ - Name the three general, major steps in gene cloning. A: (1) cut genomic DNA with restriction enzyme (2) add vector cut with the same restriction enzyme (3) add DNA ligase to form recombinant molecules
899
+ - Welche 4 Strategien wurden angewandt um den genetischen Code zu entschlüsseln? (1) RNA Homopolymere + in vitro Translationssystem (2) RNA Heteropolymere (3) Triplettbindungsversuche (triplet binding assays) (4) RNA Polymere mit di-, tri-, and Tetranukleotid Repeats
900
+ - Man kann Proteine aussalzen lassen. Wieso funktioniert das? Dieser Effekt beruht auf der Konkurrenz von Protein und Salz um die solvatisierenden Wasser-Moleküle. Bei hoher Ionenkonzentration stehen nicht mehr genügend Wasser-Moleküle zur Solvatisierung der Proteine zur Verfügung, die Wechselwirkungen zwischen den Proteinen werden stärker als die Interaktion mit dem Lösungsmittel, die Proteine aggregieren und fallen dadurch aus.
901
+ - Was erlaubt die Herstellung von Protoplasten? Die Fusionierung von Zellen unterschiedlicher Arten.