-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
116 lines (100 loc) · 3.8 KB
/
project.html
File metadata and controls
116 lines (100 loc) · 3.8 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="background.css">
<link rel="stylesheet" href="nav.css">
<link rel="stylesheet" href="profiles.css">
<title> Research </title>
</head>
<body>
<div class="row">
<button class = "menuBttn" onclick="drop(this)">
<div class="myMenu">
Click Me
</div>
<div class="bgr1"></div>
<div class="bgr2"></div>
<div class="bgr3"></div>
<ul>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtt">Research</a>
<div class="dropdown-menu">
<a href="https://github.com/vitzwitz/matching-functions/blob/master/README.md">ReadMe</a>
<a onclick="popUp()" href="SBEVSL_Website/main.html">Website</a>
<a href="project.html">Description</a>
<!-- <a href="SBEVSL_Website/mainPage.html">Website</a> -->
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtt">Projects</a>
<div class="dropdown-menu">
<a href="https://github.com/vitzwitz/school_projects/blob/master/README.md">Java Projects</a>
<a href="#">Python Projects</a>
<a href="https://github.com/vitzwitz/school_projects/blob/master/README.md">Matlab Projects</a>
<a href="TylersWebsite/mainPage.html">HTML Projects</a>
<!-- <li class="dropdown">
<a href="javascript:void(0)" class="dropbtt">HTML Projects</a>
<div class="dropdown-menu">
<a href="TylersWebsite/mainPage.html">Photography Website</a>
<a href="#">Bioinformatics Website</a>
</div>
</li> -->
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtt">Contact</a>
<div class="dropdown-menu">
<a href="https://linkedin.com/in/brianna-miskovitz/">Linkedin</a>
<a href="https://github.com/vitzwitz/">Github</a>
</div>
</li>
</button>
</ul>
</div>
<div class="row">
<div class="col-4">
<div class="card">
Help convert the visualization program, ProMOL, from a plug-in into a stand-alone version
</div>
</div>
<div class="col-4">
<div class="card">
Develop a k-nearest neighbor search algorithm \& adapted a k-dimensional tree structure
</div>
</div>
<div class="col-4">
<div class="card">
Implement modified principal components analysis (PCA) procedure into motif
</div>
</div>
</div>
<div class="row">
<div class="col-4">
<div class="card">
Test program by extracting data files from the Protein Data Bank and utilize NumPy & SciPy
</div>
</div>
<div class="col-4">
<div class="card">
Write parsing methods to update motifs & produce tables using Panda
</div>
</div>
<div class="col-4">
<div class="card">
Implement original PCA method to help compare the results between protein structures in the same family
</div>
</div>
</div>
<div class="row">
<div class="card">
I am writing methods that will convert the results from indices that locate where each atom exists in that
protein's k-D tree into matrices consisting specifics, including the atom such as position, occupancy, chain ID,
residue name, and atom name, and for visualization purposes, into tables using Panda. I am also again writing an
algorithm based on principal components analysis in order to find which attributes have the greatest variances
between the search results of protein structures in a protein family.
</div>
</div>
<script src="popup.js"></script>
</body>
</html>