-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
74 lines (52 loc) · 2.88 KB
/
about.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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-433406-15"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-433406-15');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="pmtree.css" rel="stylesheet" type="text/css">
<title>About PubTrees</title>
<!-- Bootstrap core CSS -->
<link href="https://getbootstrap.com/docs/4.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Custom styles for this template -->
</head>
<body>
<main role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron" id="topbanner">
<div class="container">
<h1 class="display-3">About PubTrees</h1>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div id="chooseroot" class="row">
<div class="col-md-8">
<p>This is an instance of the <a href="http://hint.fm/papers/wordtree_final2.pdf">Word Tree Visualization technique</a>
pioneered by Martin Wattenberg and Fernanda B. Viégas. It is used in this case to graph the text of titles and abstracts
resulting from a search of <a href="https://www.ncbi.nlm.nih.gov/pubmed/">PubMed</a>.</p>
<h3>Technology and Credits</h3>
<p>This application is a wrapper of the <a href="https://developers.google.com/chart/interactive/docs/gallery/wordtree">Google Charts Word Trees</a>
implementation with a soupçon of <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a>/<a href="https://jquery.com/">jQuery</a> to hold it together.</p>
<p>PubMed is queried and results are retrieved using the <a href="https://www.ncbi.nlm.nih.gov/">National Center for Biotechnology Information's</a> publicly accessible
<a href="https://dataguide.nlm.nih.gov/eutilities/utilities.html">E-utilities API</a>.</p>
<p>Responsive design made less painful with <a href="https://getbootstrap.com/">Bootstrap</a>.</p>
</div>
</div>
<hr>
</div> <!-- /container -->
</main>
<footer class="container">
<span class="text-muted">Design and contruction by <a href="https://esperr.github.io/about/">Ed Sperr, M.L.I.S.</a> |
Data from <a href="http://www.ncbi.nlm.nih.gov/">NCBI</a> | Visualization tools from <a href="https://developers.google.com/chart/interactive/docs/gallery/wordtree" target="_blank">Google</a>
| See the code at <a href="https://github.com/esperr/pub-trees">GitHub</a></span>
</footer>
</body>
</html>