106 lines
2.7 KiB
HTML
106 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>M. Tuberculosis Interactive Tools</title>
|
|
<style type="text/css">
|
|
body, html {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
background-color: #F5F5F5;
|
|
color: #114;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
#titleBar {
|
|
height: 80px;
|
|
background-color: #3475b4;
|
|
overflow: hidden;
|
|
border-bottom: 1px solid #3475b3;
|
|
-moz-box-shadow: 0px 0px 10px 3px #BBC;
|
|
-webkit-box-shadow: 0px 0px 10px 3px #BBC;
|
|
box-shadow: 0px 0px 10px 3px #BBC;
|
|
}
|
|
#titleBar #container {
|
|
margin-top: 14px;
|
|
}
|
|
#titleBar h1 {
|
|
margin: 0 auto .5em auto;
|
|
padding: .2em;
|
|
color: #EEE;
|
|
text-align: center;
|
|
}
|
|
#intro {
|
|
background-color: #DDD;
|
|
margin: 1em 1em 0 1em;
|
|
padding: .75em;
|
|
text-align: center;
|
|
border: 1px solid #CCC;
|
|
font-size: 18px;
|
|
}
|
|
#intro p {
|
|
margin: .3em 0 .3em 0;
|
|
}
|
|
#outer-content {
|
|
max-width: 910px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
#content {
|
|
margin: 1em auto 1em auto;
|
|
float: left;
|
|
}
|
|
#main{
|
|
margin-right: 350px;
|
|
float: left;
|
|
line-height: 24px;
|
|
}
|
|
|
|
#shiny{
|
|
float: left;
|
|
width: 305px;
|
|
margin-left: -330px;
|
|
padding-left: 20px;
|
|
border-left: 1px solid #AAA;
|
|
}
|
|
#shiny iframe {
|
|
margin-top: 30px;
|
|
}
|
|
.caption{
|
|
font-size: 13px;
|
|
}
|
|
code {
|
|
background-color: #E5E5E5;
|
|
border: 1px solid #AAA;
|
|
-webkit-border-radius: 3px;
|
|
-khtml-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
padding: 0 .5em 0 .5em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="titleBar">
|
|
<div id="container">
|
|
<h1>M. Tuberculosis Interactive Tools</h1>
|
|
</div>
|
|
</div>
|
|
<div id="outer-content">
|
|
<div id="intro">
|
|
<p>These tools were built as part of my PhD project. "Drug/Gene Target Explorer" is the main dashboard and provides several views of the data for my thesis. Likewise the ML/AL model tool give you the option of flicking back and forth between the many approaches explored. The "MSA" explorer is useful for a high-level overview of sequence alighment and provides an easy way to see which positions experience high mutational frequency.</p>
|
|
</div>
|
|
<div id="content">
|
|
<div id="main">
|
|
<a href = "drug-target/"><h2>Drug/Gene Targets</h2></a>
|
|
<a href="ml/"><h2>ML/AI model explorer</h2></a>
|
|
<a href="msa/"><h2>Multiple Sequence Alignment</h2></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|