-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (76 loc) · 3.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="https://fediscience.org/@adlvdl" rel="me">
<title>Antonio de la Vega</title>
<!-- Bootstrap -->
<link href="css/external_style.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<article>
<section class="page-header">
<h1 class="project-name">Antonio de la Vega de León</h1>
<h2 class="project-tagline">Using computer science to aid chemical research</h2>
<span style="cursor:pointer" onclick="openNav()" id='menu_button'>☰ Menu</span>
<nav id ="slide_nav" class='sidenav'>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<ul style="list-style-type: none;">
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="outreach.html">Outreach</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="cv.pdf">CV</a></li>
</ul>
</nav>
</section>
<nav id ="left_nav">
<ul style="list-style-type: none">
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="outreach.html">Outreach</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="cv.pdf">CV</a></li>
</ul>
</nav>
<section class="main-content">
<h1 id="welcome">Welcome</h1>
<img src="images/portrait_small.jpg" alt="my photo" style="float:right; margin-top: 1rem; ">
Hi, I'm Antonio de la Vega de León.
I am a Principal Scientist at Bristol Myers Squibb and my research focuses on novel applications of data visualization and machine learning to chemical data.
I have a large amount of teaching experience in data science and chemoinformatics in my previous post as Lecturer in Chemoinformatics in the University of Sheffield.
Previously, I worked as a postdoctoral researcher at the University of Sheffield, as part of a Marie Curie project against Alzheimer's disease (<a href="https://sites.google.com/site/d3i4adiapp/">D3i4AD</a>).
I originally studied Biology in Madrid and decided, when I was finishing, to focus on bioinformatics.
I went to Bonn to do the Life Science Informatics masters.
There I was introduced into chemoinformatics by Prof. Jürgen Bajorath, with whom I did my master's thesis and then my PhD.
<br />
<br />
With this website, I want to show the research I have done and that I am currently working in.
You can also see the outreach events I have been involved with and also the teaching I have been involved with.
The links below go to my profile in different social media from where you can get in touch with me.
<br /><br />
<a href="https://www.researchgate.net/profile/Antonio_De_La_Vega_De_Leon">ResearchGate</a>
<br />
<a href="https://www.linkedin.com/in/adlvdl/">LinkedIn</a>
<br />
<a href="https://orcid.org/0000-0003-0927-2099">ORCID</a>
<br />
<a href="https://twitter.com/adlvdl">Twitter</a>
<footer class="site-footer">
<span class="site-footer-credits">This page was heavily based on <a href="https://pages.github.com">GitHub Pages</a>.</span>
</footer>
</section>
</article>
<script>
function openNav() {
document.getElementById("slide_nav").style.width = "250px";
}
function closeNav() {
document.getElementById("slide_nav").style.width = "0";
}
</script>
</body>
</html>