-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (128 loc) · 4.55 KB
/
index.html
File metadata and controls
150 lines (128 loc) · 4.55 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="nghiexFjTa26waESKRPz-_bYzG6zfJ5JRlQP0kVDAb4" />
<title>ProtPipe2: Proteomics Analysis Tool</title>
<meta name="description" content="ProtPipe is a web-based tool for protein data analysis and visualization. Built with R Shiny for researchers and bioinformaticians with our backend R package also available.">
<meta name="keywords" content="ProtPipe, ProtPipe2, Protein Analysis, Bioinformatics, R Shiny, Proteomics, Data Visualization, Pipeline">
<meta name="author" content="Niacard">
<meta property="og:title" content="ProtPipe Analysis Tool">
<meta property="og:description" content="Free online tool for protein pipeline analysis and visualization.">
<meta property="og:url" content="https://your-username.github.io/ProtPipe-Landing/">
<meta property="og:type" content="website">
<style>
:root {
--primary-color: #2c3e50; /* Dark Blue */
--accent-color: #3498db; /* Bright Blue */
--text-color: #333;
--bg-color: #f4f7f6;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
margin: 0;
padding: 0;
}
header {
background-color: var(--primary-color);
color: white;
padding: 2rem 1rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
opacity: 0.9;
}
.container {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
background: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.content-section {
padding: 2rem;
}
.cta-button {
display: inline-block;
background-color: var(--accent-color);
color: white;
padding: 1rem 2rem;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
font-size: 1.2rem;
margin-top: 1rem;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #2980b9;
}
.features {
display: flex;
flex-wrap: wrap;
gap: 2rem;
margin-top: 2rem;
}
.feature-box {
flex: 1;
min-width: 250px;
}
footer {
text-align: center;
padding: 2rem;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<header>
<h1>ProtPipe2</h1>
<p>Advanced Proteomic Analysis & Visualization</p>
</header>
<div class="container">
<div class="content-section" style="text-align: center;">
<h2>Welcome to ProtPipe</h2>
<div style="margin-top: 20px;">
<a href="https://niacard.shinyapps.io/ProtPipe_shiny/" class="cta-button" target="_blank">
Launch App 🚀
</a>
<a href="docs/index.html" class="cta-button" style="background-color: #2c3e50; margin-left: 10px;">
Read the Docs 📖
</a>
</div>
</div>
<hr style="border: 0; border-top: 1px solid #eee;">
<div class="content-section">
<h3>Key Features</h3>
<div class="features">
<div class="feature-box">
<h4>📊 Data Visualization</h4>
<p>Interactive heatmaps, volcano plots, and PCA plots designed for exploring complex protein datasets.</p>
</div>
<div class="feature-box">
<h4>🧬 Pipeline Processing</h4>
<p>Automated workflows for normalization, imputation, and statistical testing.</p>
</div>
<div class="feature-box">
<h4>📂 Export Results</h4>
<p>Download your processed data and figures directly for use in presentations and papers.</p>
</div>
</div>
</div>
</div>
<footer>
<p>ProtPipe is built with R Shiny. <br> Maintained by Jacob Epstein.</p>
</footer>
</body>
</html>