| (17 intermediate revisions by one other user not shown) | |||
| Line 17: | Line 17: | ||
<script src="https://2019.igem.org/Team:Bielefeld-CeBiTec/script.js?debug=false&lang=en&modules=jquery%2Cmediawiki&only=scripts&skin=igem&version=20161104T193904Z"></script> | <script src="https://2019.igem.org/Team:Bielefeld-CeBiTec/script.js?debug=false&lang=en&modules=jquery%2Cmediawiki&only=scripts&skin=igem&version=20161104T193904Z"></script> | ||
| + | <link rel="shortcut icon" href="https://2019.igem.org/wiki/images/7/71/T--Bielefeld-CeBiTec--favicon.png"> | ||
| + | |||
| + | <script type="text/javascript"> | ||
| + | |||
| + | /*! Image Map Resizer | ||
| + | * Desc: Resize HTML imageMap to scaled image. | ||
| + | * Copyright: (c) 2014-15 David J. Bradshaw - dave@bradshaw.net | ||
| + | * License: MIT | ||
| + | */ | ||
| + | |||
| + | |||
| + | ;(function() { | ||
| + | 'use strict' | ||
| + | |||
| + | |||
| + | function scaleImageMap() { | ||
| + | function resizeMap() { | ||
| + | function resizeAreaTag(cachedAreaCoords, idx) { | ||
| + | function scale(coord) { | ||
| + | var dimension = 1 === (isWidth = 1 - isWidth) ? 'width' : 'height' | ||
| + | return ( | ||
| + | padding[dimension] + | ||
| + | Math.floor(Number(coord) * scalingFactor[dimension]) | ||
| + | ) | ||
| + | } | ||
| + | |||
| + | var isWidth = 0 | ||
| + | areas[idx].coords = cachedAreaCoords | ||
| + | .split(',') | ||
| + | .map(scale) | ||
| + | .join(',') | ||
| + | } | ||
| + | |||
| + | var scalingFactor = { | ||
| + | width: image.width / image.naturalWidth, | ||
| + | height: image.height / image.naturalHeight, | ||
| + | } | ||
| + | |||
| + | var padding = { | ||
| + | width: parseInt( | ||
| + | window.getComputedStyle(image, null).getPropertyValue('padding-left'), | ||
| + | 10 | ||
| + | ), | ||
| + | height: parseInt( | ||
| + | window.getComputedStyle(image, null).getPropertyValue('padding-top'), | ||
| + | 10 | ||
| + | ), | ||
| + | } | ||
| + | |||
| + | cachedAreaCoordsArray.forEach(resizeAreaTag) | ||
| + | } | ||
| + | |||
| + | function getCoords(e) { | ||
| + | //Normalize coord-string to csv format without any space chars | ||
| + | return e.coords.replace(/ *, */g, ',').replace(/ +/g, ',') | ||
| + | } | ||
| + | |||
| + | function debounce() { | ||
| + | clearTimeout(timer) | ||
| + | timer = setTimeout(resizeMap, 250) | ||
| + | } | ||
| + | |||
| + | function start() { | ||
| + | if ( | ||
| + | image.width !== image.naturalWidth || | ||
| + | image.height !== image.naturalHeight | ||
| + | ) { | ||
| + | resizeMap() | ||
| + | } | ||
| + | } | ||
| + | |||
| + | function addEventListeners() { | ||
| + | image.addEventListener('load', resizeMap, false) //Detect late image loads in IE11 | ||
| + | window.addEventListener('focus', resizeMap, false) //Cope with window being resized whilst on another tab | ||
| + | window.addEventListener('resize', debounce, false) | ||
| + | window.addEventListener('readystatechange', resizeMap, false) | ||
| + | document.addEventListener('fullscreenchange', resizeMap, false) | ||
| + | } | ||
| + | |||
| + | function beenHere() { | ||
| + | return 'function' === typeof map._resize | ||
| + | } | ||
| + | |||
| + | function getImg(name) { | ||
| + | return document.querySelector('img[usemap="' + name + '"]') | ||
| + | } | ||
| + | |||
| + | function setup() { | ||
| + | areas = map.getElementsByTagName('area') | ||
| + | cachedAreaCoordsArray = Array.prototype.map.call(areas, getCoords) | ||
| + | image = getImg('#' + map.name) || getImg(map.name) | ||
| + | map._resize = resizeMap //Bind resize method to HTML map element | ||
| + | } | ||
| + | |||
| + | var /*jshint validthis:true */ | ||
| + | map = this, | ||
| + | areas = null, | ||
| + | cachedAreaCoordsArray = null, | ||
| + | image = null, | ||
| + | timer = null | ||
| + | |||
| + | if (!beenHere()) { | ||
| + | setup() | ||
| + | addEventListeners() | ||
| + | start() | ||
| + | } else { | ||
| + | map._resize() //Already setup, so just resize map | ||
| + | } | ||
| + | } | ||
| + | |||
| + | function factory() { | ||
| + | function chkMap(element) { | ||
| + | if (!element.tagName) { | ||
| + | throw new TypeError('Object is not a valid DOM element') | ||
| + | } else if ('MAP' !== element.tagName.toUpperCase()) { | ||
| + | throw new TypeError( | ||
| + | 'Expected <MAP> tag, found <' + element.tagName + '>.' | ||
| + | ) | ||
| + | } | ||
| + | } | ||
| + | |||
| + | function init(element) { | ||
| + | if (element) { | ||
| + | chkMap(element) | ||
| + | scaleImageMap.call(element) | ||
| + | maps.push(element) | ||
| + | } | ||
| + | } | ||
| + | |||
| + | var maps | ||
| + | |||
| + | return function imageMapResizeF(target) { | ||
| + | maps = [] // Only return maps from this call | ||
| + | |||
| + | switch (typeof target) { | ||
| + | case 'undefined': | ||
| + | case 'string': | ||
| + | Array.prototype.forEach.call( | ||
| + | document.querySelectorAll(target || 'map'), | ||
| + | init | ||
| + | ) | ||
| + | break | ||
| + | case 'object': | ||
| + | init(target) | ||
| + | break | ||
| + | default: | ||
| + | throw new TypeError('Unexpected data type (' + typeof target + ').') | ||
| + | } | ||
| + | |||
| + | return maps | ||
| + | } | ||
| + | } | ||
| + | |||
| + | /* | ||
| + | if (typeof define === 'function' && define.amd) { | ||
| + | define([], factory) | ||
| + | } else if (typeof module === 'object' && typeof module.exports === 'object') { | ||
| + | module.exports = factory() //Node for browserfy | ||
| + | } else { */ | ||
| + | window.imageMapResize = factory() | ||
| + | /* } */ | ||
| + | |||
| + | if ('jQuery' in window) { | ||
| + | window.jQuery.fn.imageMapResize = function $imageMapResizeF() { | ||
| + | return this.filter('map') | ||
| + | .each(scaleImageMap) | ||
| + | .end() | ||
| + | } | ||
| + | } | ||
| + | |||
| + | })() | ||
| + | |||
| + | </script> | ||
</head> | </head> | ||
| + | |||
| + | |||
<body> | <body> | ||
<div class="Wrapper"> | <div class="Wrapper"> | ||
| Line 41: | Line 216: | ||
<div class="dark"> | <div class="dark"> | ||
| + | |||
| + | |||
| + | <div class="center-fit"> | ||
| + | |||
| + | <map id="imgmap20191019235634" name="imgmap20191019235634"> | ||
| + | <area shape="circle" alt="" title="" coords="130,148,113" href="https://2019.igem.org/Team:Bielefeld-CeBiTec/Construction" target="_self" /> | ||
| + | <area shape="circle" alt="" title="" coords="337,314,123" href="https://2019.igem.org/Team:Bielefeld-CeBiTec/Endocytosis" target="_self" /> | ||
| + | <area shape="circle" alt="" title="" coords="524,138,114" href="https://2019.igem.org/Team:Bielefeld-CeBiTec/Demonstrate" target="_self" /> | ||
| + | <area shape="circle" alt="" title="" coords="817,91,74" href="https://2019.igem.org/Team:Bielefeld-CeBiTec/Hardware" target="_self" /> | ||
| + | <area shape="circle" alt="" title="" coords="845,336,109" href="https://2019.igem.org/Team:Bielefeld-CeBiTec/CeDIS" target="_self" /> | ||
| + | <area shape="circle" alt="" title="" coords="606,393,51" href="https://2019.igem.org/Team:Bielefeld-CeBiTec/Model" target="_self" /> | ||
| + | <area shape="poly" alt="" title="" coords="61,480,37,390,137,337,194,400,191,448,339,460,341,483,63,483" href="https://2019.igem.org/Team:Bielefeld-CeBiTec/Human_Practices" target="_self" /> | ||
| + | <!-- Created by Online Image Map Editor (http://www.maschek.hu/imagemap/index) --> | ||
| + | </map> | ||
| + | |||
| + | |||
| + | <figure class="figure large"> | ||
| + | <img class="figure image" src="https://2019.igem.org/wiki/images/1/15/T--Bielefeld-CeBiTec--overview_hp.png" usemap="#imgmap20191019235634"> | ||
| + | |||
| + | </figure> | ||
| + | |||
| + | |||
| + | </div> | ||
| + | |||
| + | |||
<div class="contentBlock"> | <div class="contentBlock"> | ||
| Line 74: | Line 274: | ||
</svg></div> | </svg></div> | ||
</td> | </td> | ||
| − | <td> <div class="space"> <a href="#h1"> | + | <td> <div class="space"> <a href="#h1"> Expert opinion </a> </div> </td> |
</tr> | </tr> | ||
| Line 88: | Line 288: | ||
</svg></div> | </svg></div> | ||
</td> | </td> | ||
| − | <td> <div class="space"> <a href="#h2"> | + | <td> <div class="space"> <a href="#h2"> Forward farm </a> </div> </td> |
</tr> | </tr> | ||
<tr id="memberPage"> | <tr id="memberPage"> | ||
| Line 101: | Line 301: | ||
</svg></div> | </svg></div> | ||
</td> | </td> | ||
| − | <td> <div class="space"> <a href="#h3"> | + | <td> <div class="space"> <a href="#h3"> Legal situation </a> </div> </td> |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
</tr> | </tr> | ||
</tbody> | </tbody> | ||
| Line 182: | Line 356: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/2/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/2/2d/T--Bielefeld-CeBiTec--HP_Proffessor_James_Brown.jpg"> |
<button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F;"> Professor James Brown </b> <br> | <button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F;"> Professor James Brown </b> <br> | ||
Group Leader – Plant Health <br> | Group Leader – Plant Health <br> | ||
| Line 214: | Line 388: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/e/ec/T--Bielefeld-CeBiTec--HP_Francismar_Marcelino-Guimaraes.jpg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F;"> Dra. Francismar Corrêa Marcelino-Guimaraes</b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F;"> Dra. Francismar Corrêa Marcelino-Guimaraes</b> <br> | ||
Research and Development <br> | Research and Development <br> | ||
| Line 244: | Line 418: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/0/09/T--Bielefeld-CeBiTec--HP_Zabel_1.png"> |
<button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F;"> Paul Zabel</b> <br> | <button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F;"> Paul Zabel</b> <br> | ||
Research Associate at DLR working on the EDEN ISS project <br> | Research Associate at DLR working on the EDEN ISS project <br> | ||
| Line 317: | Line 491: | ||
--> | --> | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/c/c3/T--Bielefeld-CeBiTec--HP_Jha.jpeg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Gopaljee Jha </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Gopaljee Jha </b> <br> | ||
PhD. student <br> | PhD. student <br> | ||
| Line 357: | Line 531: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/9/90/T--Bielefeld-CeBiTec--HP_Kogel1.png"> |
<button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;"> Prof. Dr. Karl-Heinz Kogel </b> <br> | <button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;"> Prof. Dr. Karl-Heinz Kogel </b> <br> | ||
Head of the institute for Phytopathology <br> | Head of the institute for Phytopathology <br> | ||
| Line 408: | Line 582: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/6/61/T--Bielefeld-CeBiTec--HP_Wei-Xiong.jpg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Wei Xiong </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Wei Xiong </b> <br> | ||
Crop Modeler and Physiologist at CIMMYT’s Sustainable Intensification Program <br> | Crop Modeler and Physiologist at CIMMYT’s Sustainable Intensification Program <br> | ||
| Line 442: | Line 616: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/4/4f/T--Bielefeld-CeBiTec--HP_Korr.jpg"> |
<button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;"> Prof. Dr. Verena Haberlah-Korr </b> <br> | <button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;"> Prof. Dr. Verena Haberlah-Korr </b> <br> | ||
Prof. of plant production and protection <br> | Prof. of plant production and protection <br> | ||
| Line 481: | Line 655: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/7/71/T--Bielefeld-CeBiTec--HP_Langridge.jpeg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F;"> Professor Peter Langridge </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F;"> Professor Peter Langridge </b> <br> | ||
International Science Coordinator, Wheat Initiative <br> | International Science Coordinator, Wheat Initiative <br> | ||
| Line 517: | Line 691: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/f/f0/T--Bielefeld-CeBiTec--HP_Dr._Ravi_P._Singh.jpg"> |
<button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;"> Dr. Ravi P. Singh </b> <br> | <button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;"> Dr. Ravi P. Singh </b> <br> | ||
Distinguished Scientist - Head-Wheat Improvement Global Wheat Program <br> | Distinguished Scientist - Head-Wheat Improvement Global Wheat Program <br> | ||
| Line 544: | Line 718: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/4/4a/T--Bielefeld-CeBiTec--HP_Asdal.jpg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Åsmund Asdal </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Åsmund Asdal </b> <br> | ||
Coordinator of Operation and Management, NordGen <br> | Coordinator of Operation and Management, NordGen <br> | ||
| Line 578: | Line 752: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/7/7a/T--Bielefeld-CeBiTec--HP_Tscharntke.jpg"> |
<button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;">Prof. Dr. Teja Tscharntke </b> <br> | <button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;">Prof. Dr. Teja Tscharntke </b> <br> | ||
Department of Agroecology <br> | Department of Agroecology <br> | ||
| Line 609: | Line 783: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/7/74/T--Bielefeld-CeBiTec--HP_Schmitt.jpg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Prof. Dr. Lutz Schmitt </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Prof. Dr. Lutz Schmitt </b> <br> | ||
Chair of Biochemistry I <br> | Chair of Biochemistry I <br> | ||
| Line 643: | Line 817: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/c/c0/T--Bielefeld-CeBiTec--HP_Westhoff.jpeg"> |
<button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;">(Univ.-) Prof. Dr. Peter Westhoff </b> <br> | <button class="collapsible colLeft"><div id="HP"> <b style="color:#39F;">(Univ.-) Prof. Dr. Peter Westhoff </b> <br> | ||
Vice President for Research and Technology Transfer <br> | Vice President for Research and Technology Transfer <br> | ||
| Line 675: | Line 849: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/7/7b/T--Bielefeld-CeBiTec--HP_Tessa.jpg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Tessa Alexanian </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F;">Tessa Alexanian </b> <br> | ||
iGEM Human Practice Committee <br> | iGEM Human Practice Committee <br> | ||
| Line 713: | Line 887: | ||
<hr style="background-color:#330036"> <!--Blaue Linie--> | <hr style="background-color:#330036"> <!--Blaue Linie--> | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/c/c5/T--Bielefeld-CeBiTec--HP_Oliver.jpeg"> |
<button class="collapsible colRight"> <div id="HP"><b style="color:#39F;"> Prof. Richard Oliver</b> <br> | <button class="collapsible colRight"> <div id="HP"><b style="color:#39F;"> Prof. Richard Oliver</b> <br> | ||
Professor of Agriculture <br> | Professor of Agriculture <br> | ||
| Line 759: | Line 933: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/8/85/T--Bielefeld-CeBiTec--HP_Zeilinger.jpg"> |
<button class="collapsible colLeft"> <div id="HP"><b style="color:#39F">Prof. Dr. Susanne Zeilinger-Migsich </b> <br> | <button class="collapsible colLeft"> <div id="HP"><b style="color:#39F">Prof. Dr. Susanne Zeilinger-Migsich </b> <br> | ||
Deputy Head of the Department of Microbiology <br> | Deputy Head of the Department of Microbiology <br> | ||
| Line 793: | Line 967: | ||
</div> | </div> | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/f/f1/T--Bielefeld-CeBiTec--HP_Park.jpeg"> |
<button class="collapsible colRight"><div id="HP"> <b style=color:#39f> Prof. Robert Park </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style=color:#39f> Prof. Robert Park </b> <br> | ||
Judith and David Coffey Chair of Sustainable Agriculture and | Judith and David Coffey Chair of Sustainable Agriculture and | ||
| Line 833: | Line 1,007: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/7/77/T--Bielefeld-CeBiTec--HP_Prof._Eduardo_Antonio_Espeso_Fernand%C3%A9z.png"> |
<button class="collapsible colLeft"><div id="HP"><b style="color:#39f">Prof. Eduardo Antonio Espeso Fernández </b> <br> | <button class="collapsible colLeft"><div id="HP"><b style="color:#39f">Prof. Eduardo Antonio Espeso Fernández </b> <br> | ||
Research Professor at the Dept. of Cellular and Molecular Biology <br> | Research Professor at the Dept. of Cellular and Molecular Biology <br> | ||
| Line 863: | Line 1,037: | ||
</div> | </div> | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/0/02/T--Bielefeld-CeBiTec--HP_Diallinas.jpg"> |
<button class="collapsible colRight"><div id="HP"><b style="color:#39f"> Prof. George Diallinas </b> <br> | <button class="collapsible colRight"><div id="HP"><b style="color:#39f"> Prof. George Diallinas </b> <br> | ||
Professor of Biology <br> | Professor of Biology <br> | ||
| Line 888: | Line 1,062: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/8/8b/T--Bielefeld-CeBiTec--HP_Hahn.jpeg"> |
<button class="collapsible colLeft"><div id="HP"><b style="color:#39F"> Prof. Dr. Matthias Hahn </b> <br> | <button class="collapsible colLeft"><div id="HP"><b style="color:#39F"> Prof. Dr. Matthias Hahn </b> <br> | ||
Professor of Phytopathology <br> | Professor of Phytopathology <br> | ||
| Line 921: | Line 1,095: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/2/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/2/2c/T--Bielefeld-CeBiTec--HP_Dr._Alexander_Lichius.jpg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F">Dr. Alexander Lichius </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F">Dr. Alexander Lichius </b> <br> | ||
Department of Microbiology <br> | Department of Microbiology <br> | ||
| Line 948: | Line 1,122: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/c/cd/T--Bielefeld-CeBiTec--HP_Gsaller.jpg"> |
<button class="collapsible colLeft"><div id="HP"> <b style="color:#39f;"> Fabio Gsaller PhD.</b> <br> | <button class="collapsible colLeft"><div id="HP"> <b style="color:#39f;"> Fabio Gsaller PhD.</b> <br> | ||
Institute of Molecular Biology <br> | Institute of Molecular Biology <br> | ||
| Line 992: | Line 1,166: | ||
<hr style="background-color:#721356"> <!--Blaue Linie--> | <hr style="background-color:#721356"> <!--Blaue Linie--> | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/8/85/T--Bielefeld-CeBiTec--HP_Schaffrath.jpg"> |
<button class="collapsible colRight"><div id="HP"><b style="color:#39f"> Prof. Dr. Ulrich Schaffrath</b> <br> | <button class="collapsible colRight"><div id="HP"><b style="color:#39f"> Prof. Dr. Ulrich Schaffrath</b> <br> | ||
Group leader Department of Plant Physiology <br> | Group leader Department of Plant Physiology <br> | ||
| Line 1,057: | Line 1,231: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/f/fe/T--Bielefeld-CeBiTec--HP_Krczal.jpg" alt="Bild hoffentlich rund"> |
<button class="collapsible colLeft"><div id="HP"> <b style="color:#39F"> Prof. Dr. Gabi Krczal </b> <br> | <button class="collapsible colLeft"><div id="HP"> <b style="color:#39F"> Prof. Dr. Gabi Krczal </b> <br> | ||
Director of AlPlanta – Institute of Plant Research <br> | Director of AlPlanta – Institute of Plant Research <br> | ||
| Line 1,098: | Line 1,272: | ||
</div> | </div> | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/e/e8/T--Bielefeld-CeBiTec--HP_Deising.jpg"> |
<button class="collapsible colRight"><div id="HP"><b style="color:#39f"> Prof. Holger Deising </b> <br> | <button class="collapsible colRight"><div id="HP"><b style="color:#39f"> Prof. Holger Deising </b> <br> | ||
Professor for Phytopathology and Plant Protection <br> | Professor for Phytopathology and Plant Protection <br> | ||
| Line 1,128: | Line 1,302: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/6/68/T--Bielefeld-CeBiTec--HP_Cox.jpeg"> |
<button class="collapsible colLeft"> <div id="HP"> <b style="color:#39f">Prof. Dr. Russel Cox </b> <br> | <button class="collapsible colLeft"> <div id="HP"> <b style="color:#39f">Prof. Dr. Russel Cox </b> <br> | ||
Research group leader – Synthetic Biology <br> | Research group leader – Synthetic Biology <br> | ||
| Line 1,173: | Line 1,347: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/0/0e/T--Bielefeld-CeBiTec--HP_Dr._Primrose_J_Boynton.jpg"> |
<button class="collapsible colRight"><div id="HP"><b style="color:#39F"> Dr. Primrose Boynton </b> <br> | <button class="collapsible colRight"><div id="HP"><b style="color:#39F"> Dr. Primrose Boynton </b> <br> | ||
Project Leader <br> | Project Leader <br> | ||
| Line 1,201: | Line 1,375: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/d/db/T--Bielefeld-CeBiTec--HP_Kniemeyer.jpg"> |
<button class="collapsible colLeft"> <div id="HP"><b style="color:#39F"> Dr. Olaf Kniemeyer </b> <br> | <button class="collapsible colLeft"> <div id="HP"><b style="color:#39F"> Dr. Olaf Kniemeyer </b> <br> | ||
Molecular and Applied Microbiology · Deputy head of Department <br> | Molecular and Applied Microbiology · Deputy head of Department <br> | ||
| Line 1,239: | Line 1,413: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/e/e6/T--Bielefeld-CeBiTec--HP_Varrelmann.jpg"> |
<button class="collapsible colRight"><div id="HP"><b style="color:#39F">Prof. Dr. Mark Varrelmann </b> <br> | <button class="collapsible colRight"><div id="HP"><b style="color:#39F">Prof. Dr. Mark Varrelmann </b> <br> | ||
Research group leader - Phytomedicin <br> | Research group leader - Phytomedicin <br> | ||
| Line 1,277: | Line 1,451: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/2/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/2/26/T--Bielefeld-CeBiTec--HP_Annicka_Roos.jpg"> |
<button class="collapsible colLeft"> <div id="HP"><b style="color:#39F"> Annika Roos </b> <br> | <button class="collapsible colLeft"> <div id="HP"><b style="color:#39F"> Annika Roos </b> <br> | ||
Marketing consultant for wheat (Nordrhein-Westfalen) <br> | Marketing consultant for wheat (Nordrhein-Westfalen) <br> | ||
| Line 1,306: | Line 1,480: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/a/a6/T--Bielefeld-CeBiTec--HP_Fischer.jpeg"> |
<button class="collapsible colRight"><div id="HP"><b style="color:#39F"> Prof. Dr. Reinhard Fischer </b> <br> | <button class="collapsible colRight"><div id="HP"><b style="color:#39F"> Prof. Dr. Reinhard Fischer </b> <br> | ||
Professor at the Institute for Applied Biosciences, Department of Microbiology <br> | Professor at the Institute for Applied Biosciences, Department of Microbiology <br> | ||
| Line 1,386: | Line 1,560: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/f/f6/T--Bielefeld-CeBiTec--HP_Sirven.jpg"> |
<button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F">Catherine Sirven</b> <br> | <button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F">Catherine Sirven</b> <br> | ||
Computational Life Science Portfolio <br> | Computational Life Science Portfolio <br> | ||
| Line 1,435: | Line 1,609: | ||
</div> | </div> | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/d/d9/T--Bielefeld-CeBiTec--HP_German.jpeg"> |
<button class="collapsible colRight"> <div id="HP"> <b style="color:#39F"> Prof. Silvia Germán </b> <br> | <button class="collapsible colRight"> <div id="HP"> <b style="color:#39F"> Prof. Silvia Germán </b> <br> | ||
Emeritus researcher at the National Agricultural Research Institute (INIA) of Uruguay <br> | Emeritus researcher at the National Agricultural Research Institute (INIA) of Uruguay <br> | ||
| Line 1,472: | Line 1,646: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/5/56/T--Bielefeld-CeBiTec--HP_Doohan.jpg"> |
<button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F"> Prof. Fiona Doohan </b> <br> | <button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F"> Prof. Fiona Doohan </b> <br> | ||
Professor at School of Biology and Environmental Science <br> | Professor at School of Biology and Environmental Science <br> | ||
| Line 1,510: | Line 1,684: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/1/1f/T--Bielefeld-CeBiTec--HP_Guenther.jpeg"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F"> Susanne Günther </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F"> Susanne Günther </b> <br> | ||
Philosopher, Editor and Farmer <br> | Philosopher, Editor and Farmer <br> | ||
| Line 1,550: | Line 1,724: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/ | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/4/47/T--Bielefeld-CeBiTec--HP_Kleimann.jpg" alt="Bild hoffentlich rund"> |
<button class="collapsible colLeft"> <div id="HP"> <b style="color:#39f"> Michael Kleimann</b> <br> | <button class="collapsible colLeft"> <div id="HP"> <b style="color:#39f"> Michael Kleimann</b> <br> | ||
Farmer <br> | Farmer <br> | ||
| Line 1,588: | Line 1,762: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/f/ff/T--Bielefeld-CeBiTec--HP_Waldschmidt.jpg" alt="Bild hoffentlich rund"> |
<button class="collapsible colRight"> <div id="HP"> <b style="color:#39f"> Kristina Waldschmidt </b> <br> | <button class="collapsible colRight"> <div id="HP"> <b style="color:#39f"> Kristina Waldschmidt </b> <br> | ||
Farmer <br> | Farmer <br> | ||
| Line 1,620: | Line 1,794: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundRight" src="https://2019.igem.org/wiki/images/2/2a/T--Bielefeld-CeBiTec-- | + | <img class="roundRight" src="https://2019.igem.org/wiki/images/2/2a/T--Bielefeld-CeBiTec--HP_Toebber.jpg"> |
<button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F"> Theo Többer </b> <br> | <button class="collapsible colLeft"> <div id="HP"> <b style="color:#39F"> Theo Többer </b> <br> | ||
Farmer <br> | Farmer <br> | ||
| Line 1,655: | Line 1,829: | ||
<div class="hideDiv"> | <div class="hideDiv"> | ||
| − | <img class="roundLeft" src="https://2019.igem.org/wiki/images/2/ | + | <img class="roundLeft" src="https://2019.igem.org/wiki/images/2/2f/T--Bielefeld-CeBiTec--HP_Krainbring.jpg" alt="Bild hoffentlich rund"> |
<button class="collapsible colRight"><div id="HP"> <b style="color:#39F"> Phillip Krainbring </b> <br> | <button class="collapsible colRight"><div id="HP"> <b style="color:#39F"> Phillip Krainbring </b> <br> | ||
Farmer <br> | Farmer <br> | ||
| Line 2,023: | Line 2,197: | ||
<details> | <details> | ||
<summary> References </summary> | <summary> References </summary> | ||
| − | + | <p><a href="http://www.moa.gov.cn/ztzl/zjyqwgz/spxx/201901/P020190108439855980836.pdf">[1] http://www.moa.gov.cn/ztzl/zjyqwgz/spxx/201901/P020190108439855980836.pdf</a> </p> | |
<p><a href="https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp"> [2] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp</a> </p> | <p><a href="https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp"> [2] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp</a> </p> | ||
<p><a href="https://www.cell.com/trends/biotechnology/fulltext/S0167-7799(19)30037-X">[3] https://www.cell.com/trends/biotechnology/fulltext/S0167-7799(19)30037-X</a> </p> | <p><a href="https://www.cell.com/trends/biotechnology/fulltext/S0167-7799(19)30037-X">[3] https://www.cell.com/trends/biotechnology/fulltext/S0167-7799(19)30037-X</a> </p> | ||
| Line 2,058: | Line 2,232: | ||
<p><a href="https://www.loc.gov/law/help/restrictions-on-gmos/canada.php#_ftn49">[32] https://www.loc.gov/law/help/restrictions-on-gmos/canada.php#_ftn49 </a> </p> | <p><a href="https://www.loc.gov/law/help/restrictions-on-gmos/canada.php#_ftn49">[32] https://www.loc.gov/law/help/restrictions-on-gmos/canada.php#_ftn49 </a> </p> | ||
<p><a href="https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp">[33] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp</a> </p> | <p><a href="https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp">[33] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp</a> </p> | ||
| − | <p><a href="https://www.canada.ca/en/health-canada/services/food-nutrition/genetically-modified-foods-other-novel-foods/factsheets-frequently-asked-questions/part-1-regulation-novel-foods.html#p3">[34] https://www.canada.ca/en/health-canada/services/food-nutrition/genetically-modified-foods-other-novel-foods/factsheets-frequently-asked-questions/part-1-regulation-novel-foods.html#p3 </p> | + | <p><a href="https://www.canada.ca/en/health-canada/services/food-nutrition/genetically-modified-foods-other-novel-foods/factsheets-frequently-asked-questions/part-1-regulation-novel-foods.html#p3">[34] https://www.canada.ca/en/health-canada/services/food-nutrition/genetically-modified-foods-other-novel-foods/factsheets-frequently-asked-questions/part-1-regulation-novel-foods.html#p3 </a></p> |
| Line 2,095: | Line 2,269: | ||
var $circDrei= $('.animated-circle-drei'); | var $circDrei= $('.animated-circle-drei'); | ||
var $circVier= $('.animated-circle-vier'); | var $circVier= $('.animated-circle-vier'); | ||
| − | + | //var $progCount = $('.progress-count'); | |
| − | + | //var $prog2 = $('.progress-indicator-2'); | |
| + | // var $progCountZwei = $('.progress-count-zwei'); | ||
| + | // var $progCountDrei = $('.progress-count-drei'); | ||
| + | // var $prog3= $('.progress-indicator-3'); | ||
| − | var wh, h, sHeight, partOne, partTwo, partThree, partFour | + | var wh, h, sHeight, partOne, partTwo, partThree, partFour; |
function setSizes1(){ | function setSizes1(){ | ||
| Line 2,104: | Line 2,281: | ||
s=$("#a1").offset().top+$(window).innerHeight(); //ist der Abstand vom Anfang der Seite bis nach der Summary | s=$("#a1").offset().top+$(window).innerHeight(); //ist der Abstand vom Anfang der Seite bis nach der Summary | ||
s2=$("#a2").offset().top+$(window).innerHeight();//+140; //Erster Abschnitt h1- H2 | s2=$("#a2").offset().top+$(window).innerHeight();//+140; //Erster Abschnitt h1- H2 | ||
| − | s3=$("#a3").offset().top+$(window).innerHeight() | + | s3=$("#a3").offset().top+$(window).innerHeight()-50; |
| − | s4 | + | s4=($("#Ende").offset().top)+250; //zweiter Abschnitt h2-h3 |
| − | + | ||
| − | + | ||
h = $('body').height()-$(window).innerHeight(); | h = $('body').height()-$(window).innerHeight(); | ||
partOne =s-wh; | partOne =s-wh; | ||
| Line 2,113: | Line 2,288: | ||
partThree=s3-(wh+partTwo+partOne); | partThree=s3-(wh+partTwo+partOne); | ||
partFour=s4-(wh+partThree+partTwo+partOne); | partFour=s4-(wh+partThree+partTwo+partOne); | ||
| − | |||
| − | |||
} | } | ||
| Line 2,124: | Line 2,297: | ||
var percThree = Math.max(0, Math.min(1, ($w.scrollTop()-partTwo-partOne)/partThree)); | var percThree = Math.max(0, Math.min(1, ($w.scrollTop()-partTwo-partOne)/partThree)); | ||
var percFour = Math.max(0, Math.min(1, ($w.scrollTop()-partThree-partTwo-partOne)/partFour)); | var percFour = Math.max(0, Math.min(1, ($w.scrollTop()-partThree-partTwo-partOne)/partFour)); | ||
| − | |||
| − | |||
| − | updateProgress1(percTwo,percThree,percFour | + | updateProgress1(percTwo,percThree,percFour); |
}).on('resize', function(){ | }).on('resize', function(){ | ||
setSizes1(); | setSizes1(); | ||
| Line 2,134: | Line 2,305: | ||
| − | function updateProgress1(percTwo,percThree,percFour | + | function updateProgress1(percTwo,percThree,percFour){ |
| − | + | var circle_offset = 63 * percTwo; | |
| + | //var circle_offset_eins = 126 * percOne; | ||
var circle_offset_zwei = 63 * percThree; | var circle_offset_zwei = 63 * percThree; | ||
var circle_offset_drei = 63 * percFour; | var circle_offset_drei = 63 * percFour; | ||
| − | |||
| − | |||
$circZwei.css({ | $circZwei.css({ | ||
"stroke-dashoffset" : 63 - circle_offset | "stroke-dashoffset" : 63 - circle_offset | ||
}); | }); | ||
| + | //$circ.css({ | ||
| + | // "stroke-dashoffset" : 126 - circle_offset_eins | ||
| + | //}); | ||
$circDrei.css({ | $circDrei.css({ | ||
"stroke-dashoffset" : 63 - circle_offset_zwei | "stroke-dashoffset" : 63 - circle_offset_zwei | ||
| Line 2,150: | Line 2,323: | ||
"stroke-dashoffset" : 63 - circle_offset_drei | "stroke-dashoffset" : 63 - circle_offset_drei | ||
}); | }); | ||
| − | + | // $progCountZwei.html(Math.round(percTwo * 100) + "%"); | |
| − | + | // $progCount.html(Math.round(percOne * 100) + "%"); | |
| − | + | // $progCountDrei.html(Math.round(percThree * 100) + "%"); | |
| − | + | // $prog2.css({width : perc*100 + '%'}); | |
| − | + | // $prog2.css({width : perc*100 + '%'}); | |
| − | + | // $prog2.css({width : perc*100 + '%'}); | |
| − | + | ||
| − | + | ||
| − | + | ||
} | } | ||
| Line 2,164: | Line 2,334: | ||
}()); | }()); | ||
| + | </script> | ||
| + | |||
| + | <script type="text/javascript"> | ||
| + | $('map').imageMapResize(); | ||
</script> | </script> | ||
Latest revision as of 23:29, 13 December 2019
All together, we came into contact with 50+ experts and stakeholders out of more than 18 different countries from all continents. Their contributions shaped our project into what it is now and the various backgrounds of our experts and their sometimes contradictory opinions elevated our project to a real-world application that aroused interests in farmers, mycologists and experts from the industry alike. For example, we discussed the optimisation of our proof of concept with Professor Dr. Mark Varrelmann from the Institute for sugar beet research (IfZ) at the University of Göttingen. He suggested us to extent our proof of concept and test our system for a filamentous fungus. As a result, we also tested our system in Aspergillus niger to closer resemble a crop pathogenic fungus. Furthermore, we were able to improve biosafety and biosecurity aspects of our project according to the legal situation, guidelines and suggestions for improvements through experts. By doing so, we made sure our Troygenics do not pose any harm for the environment or the consumer.
Expert opinions
General Experts
Skype Conference 04.07
Extended Phone call 23.08
Visit at Bayer Forward Farm in Rommerskirchen 26.09
In general, the risk of resistances being developed is strongly influenced by a sheer endless number of factors. Furthermore, there are many different fungicides with very different modes of action. Farmers try to avoid the progression of resistance development with multiple measures, for example switching fungicides or the order of their usage. Others use mixtures of different reagents. The chambers of agriculture have many suggestions for the usage of fungicides, but at the end farmers are responsible for their own decisions on how to use them, as long as they stick to the law. Besides his extensive support he also gave us the chance to visit the Bayer Forward Farm in Rommerskirchen, a testing area to educate people about agriculture, common methods and recent technological advances. It also resembles a specialised facility for people to get in touch with farmers and stakeholders.
The biggest current concern, regarding the off-target effects of fungicides is that triazole fungicides, which are targeting ERG11 (CYP51) in the ergosterol synthesis pathway in fungi, can have off-target effects on at least one enzyme involved in the hormone synthesis in mammals. These effects are still very small though and far below the level detectable by epidemiological analysis. The EU legislation still requires strictly no off-target effects on the mammalian reproductive system, by whatever method of testing.
Phone call 10.09
Video conference 13.09
Skype Conference 06.09
He suggested us to alternatively think about modifying mycoviruses for our project, which could be a focus of later research. He pointed out, that special bacteria, called Burkholderia, are able to express proteins which can destroy the cell walls of fungi. As far as they were researched, this worked in every fungus that was tested.
Phone call 19.08
Phone call 16.10
Skype conference 13.08
Mail contact 25.07
Mail contact 25.07
Skype conference 01.08
Skype Conference 02.10
Endocytosis
Skype conference 15.08
Phone call 06.08
Skype conference 26.08
Skype conference 27. 08
Mail with helpful papers attached: 30.8.
Skype conference 19.08
Phone call 02.08
Phone call 06.08
CeDIS
Skype conference 23.07
Phone call 15.08
Video conference 29.07
Demonstrate
Phone call 02.09
Phone call 21.06
Skype conference 04.09.
Modeling
Phone call: 28.08
Skype conference 03.09
Skype call 13.09
Agriculture
Mail contact 25.07
Skype conference 05.08
Phone call 11.09.
Visit at his farm and interview 17.09.
Phone call 23.09
Phone call 10.04
Visit at his farm and interview 23.08
11.09 extensive phone call
Forward Farm
The farm in Rommerskirchen is one of two locations in Germany where Bayer established a Forward Farm: An experimental testing area for novel approaches to solve problems in the field of agriculture. Thereby, the farm’s purpose is also to educate the public about farming and emerging technologies. The engagement with the public and the promotion of face to face interaction is one of the foundations the project is based on.
During our visit, we received extensive first-hand insights into agriculture from different points of views. The different experts who accompanied us each represented a different important aspect of modern agriculture.
Dr Patrick Beuters
Karl Eschenbacher
Bernd Olligs
Legal Situation
Legal situation: Point of view
Point of View: Germany
Coming from Germany, a country that strictly regulates the use of GMOs under any circumstances and does not allow any genetically modified organisms to be released, it was rather surprising, that there are countries that don’t only allow the release of GMOs, but have more than 100 kinds of genetically modified crops on the market. It was rather startling that in the USA the use of 130 genetically modified plants is not regulated anymore and that companies do not have to get permits or even notify the government that and where they are planting those GMOs. It left us even more surprised that there are several thousand more GMOs on the fields in the USA that are monitored and are not used in food, feed or any other application just yet. The fact that there are Genetically Modified Microorganisms (GMMs) with an authorization for release at all, totaling to 39 in Brazil and Australia, was another surprise to us. The rules set for risk assessments in the EU make it rather unlikely that a GMM would pass the regulatory process, no matter how many safety measures have been taken to construct a save organism and to prevent its spreading. Coming from a precautionary point of view, the tedious risk assessments ensure safety – and as unlikely as any negative consequences of releasing a GMM into the environment might be, the EU wants to prevent them without any doubt. Since eliminating the doubt is only possible, if the organism is not released, this is the option the EU usually choses. Seeing that other countries accept and live with that doubt, left us startled – most Germans would not be okay with those policies. Another thing that was rather new to us was that countries as the USA and Canada do not enforce the labeling of products that contain GMOs. While we are insecure about the clarity of the definition of GMO and the awareness that the regular consumer has towards this definition, transparency is considered to be incredibly important for democracy in Germany and in the EU. Even though the acts of authorities don’t always live up to the high expectancies for transparency among the people, this is often called out and complained about. Therefore, labeling the origin of products in the supermarket is important to many Germans, allowing for a more informed consumer decision. Whether this should also be true for GMO-products has to be discussed, mostly due to the varying definition of GMOs all over the world. Is an organism that is produced with random mutagenesis genetically modified? How about a cross-bred plant? What if a CRISPR/Cas system had been used? The definitions are different depending on the law – and vary even more widely on the minds of consumers. If a consumer does not properly understand a label, labeling GMO products might not lead to a more, but rather a less informed choice. However, we do believe that some kind of labeling, be it GMO or non-GMO or naming the plant variety that had been used might help the consumer to make an informed decision. That the legal situation in other countries enables the selling of GMO products without labeling them might be another approach that would not be accepted by many Germans due to the lack of transparency and the impact that this might have on their informed decisions.Point of View: Brazil
In Brazil, we’re used to GM crops, since over 50 Million hectares are destined to growing GM crops. Recently, approval of agrochemicals mainly destined to GM cultivations, such as glyphosate-based herbicides in the news frequently. Furthermore, labelling GM products is mandatory in Brazil and is often discussed in recent times. Overall, we find it very difficult to find data about GMOs. We expected this would be easier given its importance for food as well as for the development of new technologies in health and for the environment. Considering the high number of GMO crops and the application of GMMs and even GM animals in Brazil the legislation is one of the most flexible in the world, allowing GMOs use, different from what we thought, due to the general bureaucracy in the country. The most remarkable feature in the GMO legislation for Australia is the restriction of GMO crop cultivation, since 61% of the Australian landmass is not suitalbe for agricultural production. Therefore, using GM crops to improve the production efficiency might be interesting for the country. We knew that GMO legislation in the European Union is much stricter than the one we have in Brazil, so we expected that no transgenic plants would be grown in Sweden and England, and that the labelling of GMO products would be mandatory in both countries. We find it amazing that there is a lot of research on GMMs in Swedish high schools. Besides that, we were stunned when reading about the case of the Amflora potato in the country. Approval took a long time when the swedes began producing it, the crops were contaminated by another unauthorized GMO potato. Therefore, they stopped growing the potato and the responsible company stopped all further activities in the country! This is not common in Brazil: when an environmental disaster happens, the responsible companies do not shut down… When reading about the UK, we were surprised by Boris Johnson's recent quote about the GMO production there: “Let's liberate the UK's extraordinary bioscience sector from anti-genetic modification rules." We did not imagine this stance, as there is a strong anti-GMO culture in the UK and all current crop cultivations are non-transgenic. May this be the starting point for Europe to change its mind about GMOs? It was surprising to us that Egypt forbids GMO cultivation, although it imports many GMOs varieties. Given its arid climate, we were sure that there would be some GMO production that would dodge this circumstance. In addition, the anti-GMO mindset appears to be quite strong, as well as incidences of illegal use of toxic substances in agricultural production. Regarding India, we found it impressive that the governing laws about GMOs were very old: from 1989. However, it is not always respected, and the problems of irreversible cross-contamination due to the illegal cultivation of other GMO varieties are recurrent. We were surprised that the only variety allowed for cultivation is cotton. In addition, we think it is progressive for the country to allow research with Oxitec and GM silkworms mosquitoes. It was unexpected to find that Canada does not require mandatory labelling of genetically modified foods. It is voluntary, unless there is an explicit health or safety concern. As one of the main producers of GM crops, there are movements of those in the country who believe the labelling should be mandatory. On the other hand, it was interesting to find that China - also one of the largest producers of GM crops - needs, on average, much less time to get a GMO approved, even though the project has to go through three main institutions to do so. Makes us wonder about the bureaucracy in other countries, that require 7 to 11 years to get a GM crop approved such as in Brazil. Furthermore, as a study from 2018 points out, almost half of the Chinese population have a negative perception of genetically modified foods, which may explain the mandatory labelling of GM foods in the country.GMO legislations in several countries
Discussion with Felix Beck
References
[1] http://www.moa.gov.cn/ztzl/zjyqwgz/spxx/201901/P020190108439855980836.pdf
[2] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp
[3] https://www.cell.com/trends/biotechnology/fulltext/S0167-7799(19)30037-X
[4] https://law.ucla.edu/~/media/Files/UCLA/Law/Pages/Publications/RES_PUB_GMO.ashx
[9] https://www.fas.usda.gov/data/egypt-agricultural-biotechnology-annual-2018
[10] https://www.tandfonline.com/doi/pdf/10.4161/gmcr.1.3.12811
[13] https://pdfs.semanticscholar.org/de33/b0c954d71d2f1f0e2148213d545fe848106d.pdf
[15] http://www.ogtr.gov.au/internet/ogtr/publishing.nsf/Content/cr-1/
[16] http://www.ogtr.gov.au/internet/ogtr/publishing.nsf/Content/process-1
[17] http://www.foodstandards.gov.au/consumer/gmfood/labelling/pages/default.aspx
[18] https://www.ers.usda.gov/webdocs/publications/93026/eib-208.pdf#page=36
[19] https://www.aphis.usda.gov/biotechnology/downloads/permit_guidance.pdf
[20] https://s3.amazonaws.com/public-inspection.federalregister.gov/2018-09389.pdf
[21] https://zag.bvl.bund.de/freisetzungen/index.jsf?dswid=4474&dsrid=91
[22] https://www.bfn.de/fileadmin/MDB/documents/eu_memo-04-85.pdf
[24] https://cib.org.br/aprovacoes-da-ctnbio/
[25] https://cib.org.br/top-5-area-cultivada-com-transgenicos-no-mundo/
[26] http://ctnbio.mcti.gov.br/regimento-interno-da-ctnbio
[27] http://www.planalto.gov.br/ccivil_03/decreto/2003/d4680.htm
[28] https://www.efsa.europa.eu/sites/default/files/consultation/gmo101129%2C0.pdf
[30] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp
[31] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp
[32] https://www.loc.gov/law/help/restrictions-on-gmos/canada.php#_ftn49
[33] https://www.isaaa.org/resources/publications/briefs/53/executivesummary/default.asp