-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpra_vis.html
88 lines (70 loc) · 3.9 KB
/
mpra_vis.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Visualization - TRE MPRA </title>
<link rel="stylesheet" href="style.css"> <!-- Add this line to link the CSS file -->
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.18.1/build/cssreset/cssreset-min.css">
<script src="https://d3js.org/d3.v7.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<!-- <h1>TRE MPRA VIS</h1> -->
<div id="header-div">
<button id="treatment_view_button", class="view_button">Treatment Centric View</button>
<button id="motif_view_button", class="view_button">Motif Centric View</button>
<a id="lab_link" href = "https://www.english.biochem.utah.edu/">The English Lab</a>
</div>
</header>
<div id="wrapper">
<div id="treatment-wrapper-div" class="parent-div">
<div id="volcano-div" class="child-div">
</div>
<div class="right-column">
<input type="text" id="searchBarBase" size="50" list="searchOptionsBase" style="float:right;"placeholder="Search basal conditions...">
<input type="text" id="searchBarStim" size="50" list="searchOptionsStim" style="float:right;"placeholder="Search stimulated conditions...">
<label for="searchBarBase", id = "search_bar_base_label">Basal Condition</label>
<label for="searchBarStim", id = "search_bar_stim_label">Stimulated Condition</label>
<div id="alpha-div" class="child-div">
</div>
<div id="info-div" class="child-div">
<div class="info-tooltip"></div>
<button id="copy-button">Copy Selected Unit Sequence</button>
<button id="copy-button-top" class="oligo_group">Copy Top Oligo</button>
<button id="copy-button-bottom" class="oligo_group">Copy Bottom Oligo</button>
<input type="text" id="searchBar" list="searchOptions" placeholder="Search Motifs...">
<!-- <button id="filter_button">Filter By Searched Motif</button> -->
<input type="checkbox", id="filter_motif_check">
<label for="filter_motif_check", id = "filter_motif_check_label" >Filter By Searched Motif</label>
<button id="show_button">Show All Motifs</button>
<input type="checkbox", id="control_check" class="control_check_group">
<label for="control_check", id = "control_check_label" class="control_check_group">Highlight Negative Controls</label>
<input type="checkbox", id="top_check"class="top_check_group">
<label for="top_check", id = "top_check_label"class="top_check_group">Highlight Top </label>
<input id="number_selector" type="number" placeholder="5..." min="1" max="99"/>
</div>
</div>
</div>
<div id="motif-wrapper-div">
<input type="text" id="search_motifs" width="10" list="allMotifs" placeholder="Search Motifs...">
<input type="text" id="sort_options" width="10" list="allMotifs" placeholder="Sort by...">
<div id="heat-div">
</div>
<div class="bottom-row">
<div id="scatter-div">
</div>
<div id="motif-info-div">
</div>
</div>
</div>
</body>
<script type = "module" src="js/helper.js"></script>
<script src="js/heat.js"></script>
<script src="js/scatter.js"></script>
<script src="js/motif-info.js"></script>
<script src="js/volcano.js"></script>
<script src="js/alpha.js"></script>
<script src="js/info.js"></script>
<script type = "module" src="js/script.js"></script>
</html>