Team:Valencia Biocampus/c3poInstructors
From 2012.igem.org
(Difference between revisions)
Cristina VS (Talk | contribs) |
|||
(19 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
- | |||
- | |||
- | |||
{{:Team:Valencia_Biocampus/banner}} | {{:Team:Valencia_Biocampus/banner}} | ||
{{:Team:Valencia_Biocampus/estiloc3po}} | {{:Team:Valencia_Biocampus/estiloc3po}} | ||
{{:Team:Valencia_Biocampus/menu2}} | {{:Team:Valencia_Biocampus/menu2}} | ||
- | + | <center> | |
+ | <ol> | ||
+ | <div id="Titulos"> | ||
+ | <br> | ||
+ | <h2>Instructors</h2> | ||
+ | <!-- source based on the section of Cambridge team 2012--> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | < | + | <html> |
- | < | + | |
+ | <style type = 'text/css'> | ||
+ | .team {width: 720px; height:640px;} | ||
+ | .row {width:720px; height:160px;} | ||
+ | .profile {width:350px; height:350px; margin:5px; position:relative; float:left;} | ||
+ | #miguel {background-image: url('https://static.igem.org/mediawiki/2012/0/0d/Miguel77.png');} | ||
+ | #manel {background-image: url('https://static.igem.org/mediawiki/2012/c/ce/Manel9.png');} | ||
+ | #ferri {background-image: url('https://static.igem.org/mediawiki/2012/2/2c/Ferri.png');} | ||
+ | #ramon {background-image: url('https://static.igem.org/mediawiki/2012/b/b3/Ramon.png');} | ||
+ | #andres {background-image: url('https://static.igem.org/mediawiki/2012/0/05/Andres7.png');} | ||
+ | #ana {background-image: url('https://static.igem.org/mediawiki/2012/7/76/Ana.png');} | ||
+ | #sari {background-image: url('https://static.igem.org/mediawiki/2012/0/0e/Sari.png');} | ||
+ | #emilia {background-image: url('https://static.igem.org/mediawiki/2012/e/e0/Emilia.png');} | ||
+ | |||
+ | #juli {background-image: url('https://static.igem.org/mediawiki/2012/9/95/Juli7.png');} | ||
+ | #marta {background-image: url('https://static.igem.org/mediawiki/2012/0/02/Marta.png');} | ||
+ | #santi {background-image: url('https://static.igem.org/mediawiki/2012/7/7c/Santi.png');} | ||
+ | #jesus {background-image: url('https://static.igem.org/mediawiki/2012/2/2d/Jesus7.png');} | ||
+ | |||
+ | #miguel_hover {background-color:blue;} | ||
+ | #manel_hover {background-color:purple;} | ||
+ | #ferri_hover {background-color:blue;} | ||
+ | #ramon_hover {background-color:purple;} | ||
+ | #andres_hover {background-color:purple} | ||
+ | #ana_hover {background-color:blue;} | ||
+ | #sari_hover {background-color:blue;} | ||
+ | #emilia_hover {background-color:purple;} | ||
+ | |||
+ | #juli_hover {background-color:purple;} | ||
+ | #marta_hover {background-color:blue;} | ||
+ | #santi_hover {background-color:blue;} | ||
+ | #jesus_hover {background-color:purple;} | ||
+ | |||
+ | |||
+ | |||
+ | .hover {width:340px; height:340px; padding:5px; float:left; position:absolute; top:0px; left:0px;} | ||
+ | .hover h6 {font-family:sans-serif; font-size:10px; color:white;} | ||
+ | |||
+ | </style> | ||
+ | |||
+ | <script type ='text/javascript'> | ||
+ | $(document).ready(function() { | ||
+ | |||
+ | $('.hover').css("display","none"); | ||
+ | |||
+ | $('#miguel').mouseover(function() { | ||
+ | $('#miguel_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#miguel').mouseleave(function() { | ||
+ | $('#miguel_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#manel').mouseover(function() { | ||
+ | $('#manel_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#manel').mouseleave(function() { | ||
+ | $('#manel_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#ferri').mouseover(function() { | ||
+ | $('#ferri_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#ferri').mouseleave(function() { | ||
+ | $('#ferri_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#ramon').mouseover(function() { | ||
+ | $('#ramon_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#ramon').mouseleave(function() { | ||
+ | $('#ramon_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#andres').mouseover(function() { | ||
+ | $('#andres_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#andres').mouseleave(function() { | ||
+ | $('#andres_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#ana').mouseover(function() { | ||
+ | $('#ana_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#ana').mouseleave(function() { | ||
+ | $('#ana_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#sari').mouseover(function() { | ||
+ | $('#sari_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#sari').mouseleave(function() { | ||
+ | $('#sari_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#emilia').mouseover(function() { | ||
+ | $('#emilia_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#emilia').mouseleave(function() { | ||
+ | $('#emilia_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#juli').mouseover(function() { | ||
+ | $('#juli_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#juli').mouseleave(function() { | ||
+ | $('#juli_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#marta').mouseover(function() { | ||
+ | $('#marta_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#marta').mouseleave(function() { | ||
+ | $('#marta_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#santi').mouseover(function() { | ||
+ | $('#santi_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#santi').mouseleave(function() { | ||
+ | $('#santi_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | $('#jesus').mouseover(function() { | ||
+ | $('#jesus_hover').fadeIn(200); | ||
+ | }); | ||
+ | |||
+ | $('#jesus').mouseleave(function() { | ||
+ | $('#jesus_hover').fadeOut(200); | ||
+ | }); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | |||
+ | |||
+ | <div id='team'> | ||
+ | <div class='row'> | ||
+ | <div id='manel' class='profile'> | ||
+ | <div id='manel_hover' class='hover'> | ||
+ | <h5>Manel Porcar</h5> | ||
+ | <h6> | ||
+ | I am an enthusiastic applied microbiologist and biotechnologist. <br><br> | ||
+ | I lead the Biotechnology and Synthetic Biology lab at the Cavanilles | ||
+ | Institute of the University of Valencia, where I work on bioremediation, biofuels production and bioenergetics. | ||
+ | </h6> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id='miguel' class='profile'> | ||
+ | <div id='miguel_hover' class='hover'> | ||
+ | <h5>Miguel Lozano</h5> | ||
+ | <h6> | ||
+ | I am a doctor in computer science at the engineering school of the University of València (E.T.S.E) where I am | ||
+ | currently teaching and researching. My research interests mainly include Simulation (numerical and multiagent models) | ||
+ | and Computer Graphics (physics based animation). | ||
+ | </h6> | ||
+ | </div> | ||
</div> | </div> | ||
- | < | + | </div> |
- | + | <div class='row'> | |
- | + | <div id='ferri' class='profile'> | |
- | + | <div id='ferri_hover' class='hover'> | |
- | + | <h5>Francesc J. Ferri</h5> | |
- | + | <h6> | |
- | + | I am a professor of computer science doing teaching and research on machine perception and learning at the University | |
- | + | of València. My interests go from computer vision applications and data mining to theoretical foundations of computing. | |
- | + | </h6> | |
- | + | </div> | |
- | + | </div> | |
- | + | <div id='ramon' class='profile'> | |
- | + | <div id='ramon_hover' class='hover'> | |
- | + | <h5>Daniel Ramón Vidal</h5> | |
- | + | <h6> | |
- | + | ||
- | + | I made my PhD working at the Dep. of Molecular Genetics of the pharmaceutical company Antibióticos S.A. Then I moved | |
- | + | to the Univ. of Wageningen as a post-doc. I was Professor of Food Tech at CSIC and UV. Currently I am CEO of Biópolis S.L. | |
- | + | My interests are microbial biotech and the production of microbial metabolites. I'm author of more than 100 articles and | |
- | + | co-author of 30 patents. I've obtained the European Prize of Divulgation, the Prize of the Danone Institute, and the | |
- | + | National Price in Technology Transfer. | |
- | + | </h6> | |
- | + | </div> | |
- | + | </div> | |
- | + | </div> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <div class='row'> | |
- | + | <div id='andres' class='profile'> | |
- | + | <div id='andres_hover' class='hover'> | |
- | + | <h5>Andrés Moya</h5> | |
- | + | <h6> | |
- | + | I am a doctor in biology and philosophy. | |
- | + | Experimental evolution and evolutionary genomics are the areas where I have made more significant contributions.<br> | |
- | + | I am the creator of the Cavanilles Institute of Biodiversity and Evolutive Biology at the “Universitat de València” and | |
- | + | of the Advanced Center for Research in Public Health (CSISP). Also, I am a founding member of the European Society of | |
- | + | Evolutionary Biology, the Spanish Society of Virology and the Spanish Society of Evolutionary Biology, of which I am the current President. | |
- | + | </h6> | |
+ | </div> | ||
+ | </div> | ||
+ | <div id='ana' class='profile'> | ||
+ | <div id='ana_hover' class='hover'> | ||
+ | <h5>Ana Delgado</h5> | ||
+ | <h6> | ||
+ | I do social studies of science and technology at the Centre for the Study of the Sciences and the Humanities, University of | ||
+ | Bergen (Norway). <br> | ||
+ | I work in a project on the ethical, legal and social aspects of synthetic biology. <br> | ||
+ | I have been doing work on other emerging technologies... and on science fiction. | ||
+ | </h6> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
- | + | <div class='row'> | |
- | + | <div id='sari' class='profile'> | |
- | + | <div id='sari_hover' class='hover'> | |
- | + | <h5>Rosario Gil</h5> | |
- | + | <h6> | |
- | + | I am a Doctor in Pharmacy, and an Associate Professor of Genetics. I teach Genetics, Molecular Genetics and Genomics at the University of Valencia. | |
- | + | As a member of the Evolutionary Genetics group at the Cavanilles Institute of Biodiversity and Evolutionary Biology, my research interests focus on functional | |
- | + | genomics of endosymbiotic bacteria from insects, minimal genomes, the evolution of metabolism in bacteria and synthetic biology. | |
- | + | </h6> | |
- | + | </div> | |
- | + | </div> | |
- | + | <div id='emilia' class='profile'> | |
- | + | <div id='emilia_hover' class='hover'> | |
- | + | <h5>Emilia Matallana</h5> | |
- | + | <h6> | |
- | + | I am a teacher of biochemistry and molecular biology at the University of Valencia and my research is focused on molecular biology and biotechnology of yeasts, | |
- | + | specifically on oxidative stress responses and technological performance of industrial strains. | |
- | + | </h6> | |
- | + | </div> | |
+ | </div> | ||
+ | </div> | ||
- | + | ||
- | + | <div class='row'> | |
- | + | <div id='juli' class='profile'> | |
- | + | <div id='juli_hover' class='hover'> | |
- | + | <h5>Juli Peretó</h5> | |
+ | <h6> | ||
+ | I am Associate Professor of Biochemistry and Molecular Biology at the University of València and member of the Evolutionary Genetics Group at the Cavanilles Institute | ||
+ | for Biodiversity and Evolutionary Biology. My research interests include the origin and early evolution of life, with a focus on metabolic pathways evolution, as well | ||
+ | as the minimal cell concept. I am also interested in the history of ideas on the natural origi and the artificial synthesis of life. I like to teach metabolism with an | ||
+ | evolutionary flavor. | ||
+ | </h6> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id='marta' class='profile'> | ||
+ | <div id='marta_hover' class='hover'> | ||
+ | <h5>Marta Tortajada</h5> | ||
+ | <h6> | ||
+ | I am a chemical engineer, specialized in automatics and system engineering, particularly fond of systems biology. <br><br> I work in applied biotechnology in the | ||
+ | company Biopolis, in projects related to the production of microorganisms and valuable metabolites, such as recombinant proteins, active pharmaceutical ingredients, | ||
+ | alcohols and microbial polymers. | ||
+ | </h6> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | <div class='row'> | ||
+ | <div id='santi' class='profile'> | ||
+ | <div id='santi_hover' class='hover'> | ||
+ | <h5>Santiago F. Elena</h5> | ||
+ | <h6> | ||
+ | |||
+ | Evolutionary Virology and Systems Group | ||
+ | Institute for Plant Molecular and Cellular Biology (IBMCP) | ||
+ | National Research Council (CSIC) | ||
+ | |||
+ | I got my Ph.D. in Biological Sciences from the University of Valencia in | ||
+ | 1995. I have done research stays at the University of California | ||
+ | San Diego and Michigan State University. After coming back I joined the Department of Genetics at the University of Valencia, | ||
+ | I am a Research Professor at CSIC in the IBMCP and I am also at the Santa Fe Institute (New Mexico, USA). | ||
+ | |||
+ | My research focuses on the study of the mechanisms that generate and | ||
+ | maintain the great genetic diversity of microorganisms and more | ||
+ | specific RNA viruses. For this, I use the theoretical framework provided | ||
+ | for population genetics and experimental methodology of | ||
+ | molecular Virology. | ||
+ | </h6> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div id='jesus' class='profile'> | ||
+ | <div id='jesus_hover' class='hover'> | ||
+ | <h5>Jesús Picó</h5> | ||
+ | <h6> | ||
+ | I am a control engineer fascinated with the world of systems and synthetic biology. <br> | ||
+ | I lead the group of Control of Complex Systems at the Universitat Politècnica de València, where I am Professor of Automatic Control. Our main interests are | ||
+ | in robust possibilistic estimation of metabolic fluxes, possibilistic flux balance analysis, nonlinear feedback control techniques applied to synthetic biology, | ||
+ | and nonlinear distributed feedback control applied to coordination of multi-cellular systems. | ||
+ | </h6> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | </div> | ||
</html> | </html> |
Latest revision as of 21:47, 26 September 2012
Instructors