-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython.html
100 lines (62 loc) · 3.96 KB
/
python.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
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- If IE use the latest rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the page to the width of the device and set the zoon level -->
<meta name="viewport" content="width = device-width, initial-scale = 1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/tooltipglossary.js"></script>
<script src="js/lightswitch.js"></script>
<link id="generalcss" href="css/light.css" rel="stylesheet" type="text/css" />
<title>Ripa Codrin-Andrei</title>
<link rel="icon" href="https://i.imgur.com/aYr9UGD.jpg">
</head>
<body>
<nav id="mynavbar" class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle navbar-toggler" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a class="navbar-brand" href="#">Seedless Bloom</a> -->
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="about.html">About</a></li>
<li class="active"><a href="#">Python</a></li>
<li><a href="webdev.html">Web Dev</a></li>
<li><a href="c-c++.html">C/C++</a></li>
<li><a href="java.html">Java</a></li>
<li><a href="csharp.html">C#</a></li>
<li><a href="other.html">Other</a></li>
<!-- <li><a href="#" onclick="lightswitch()">Invert Colors</a></li> -->
</ul>
</div>
</div>
</nav>
<div class="row">
<div class="col-lg-offset-3 col-lg-6 col-md-offset-2 col-md-8 col-sm-offset-1 col-sm-10 col-xs-offset-1 col-xs-10">
<br>
<br>
<br>
<br>
<p class="text-left"><a target="_blank" href="https://ppinteractions.herokuapp.com/">Protein-Protein Interaction</a> is neural network based search engine indexing biomedical articles based on protein interactions. Build with <b><i>Django and Keras</b></i>, this served as my bachelor degree thesis. If you're curious, <a target="_blank" href="https://github.com/vectorkt/Biomedical_Text_Mining/blob/master/Reports/Week%2015%20NN%20applied%20to%20PPI%20abstract%20text%20mining.pdf">give the article a read</a> or <a target="_blank" href="https://github.com/vectorkt/Biomedical_Text_Mining/tree/master/Code">take a look at the code.</a> <br>
For actual use, try <b><i>keratin</b></i>, the protein in your hair, and click on a node to see the interactions.</p>
<br>
<p class="text-left"><a target="_blank" href="http://www.mediafire.com/file/di8w5dbywyoogo7/Postfix_Analyzer.zip/file">Postfix Analyzer</a> is a Python 3 parser for arithmetic expressions which uses the shunting-yard algorithm algorithm.</p>
<br>
<p class="text-left"><a target="_blank"d href="http://www.mediafire.com/file/p6j76cl7qf9kc6t/Permutation_Tools.zip/file">Permutation Tools</a> are suite of python programs handing permutations and their ranks.</p>
<br><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</body>
</html>