-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
139 lines (118 loc) · 4.8 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Genopo - Mobile-Genomics</title>
<meta name="description" content="Website for Genopo mobile-genomics">
<meta name="author" content="Anjana Senanayake">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1">
<!-- Loading third party fonts -->
<!-- <link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700|" rel="stylesheet" type="text/css"> -->
<link href="fonts/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Loading main css file -->
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="images/f5n-logo-50dp.png">
</head>
<body>
<div class="site-content">
<header class="site-header">
<div class="container">
<a href="index.html" class="logo"><img src="images/f5n-logo-50dp.png" alt="Genopo"></a>
<div class="main-navigation">
<button type="button" class="menu-toggle"><i class="fa fa-bars"></i></button>
<ul class="menu">
<li class="menu-item"><a href="index.html">Home</a></li>
<li class="menu-item current-menu-item"><a href="about.html">About</a></li>
<li class="menu-item"><a href="download.html">Download</a></li>
<li class="menu-item"><a href="support.html">Advance Details</a></li>
<li class="menu-item"><a href="contact.html">Contact</a></li>
</ul> <!-- .menu -->
</div> <!-- .main-navigation -->
<div class="mobile-navigation"></div>
</div>
</header> <!-- .site-header -->
<main class="main-content">
<div class="fullwidth-block">
<div class="container">
<h2 class="section-title large">About Genopo</h2>
<p class="leading">Genopo a.k.a. F5N - A <a href="https://nanoporetech.com/">nanopore</a> sequencing
analysis toolkit for Android smartphones. </p>
</div>
</div>
<div class="fullwidth-block feature-details">
<div class="container">
<div class="feature-with-copy">
<div class="feature-image">
<img src="images/auto_config.png" alt="">
</div>
<div class="feature-text">
<h2>Auto configured pipelines</h2>
<p>You just neeed to configure the input files and some basic parameters. Intermediate files and parameters
need to run the pipeline will be generated automatically.</p>
<p>This feature is available for the following pipelines,
<br>- Artic C Pipeline
<br>- Consensus Generation Pipeline
</p>
</div>
</div>
<div class="feature-with-copy">
<div class="feature-image">
<img src="images/manual_pipeline.png" alt="">
</div>
<div class="feature-text">
<h2>Manually configure each pipeline</h2>
<p>This feature enables you to configure each tool manually. You can use the GUI mode to configure
the most used parameters and if you want to further tweak the tool we have provided a Terminal mode
which is similar to linux terminal
</p>
</div>
</div>
<div class="feature-with-copy">
<div class="feature-image">
<img src="images/sub_tool.png" alt="">
</div>
<div class="feature-text">
<h2>Run any sub tool</h2>
<p>Eventhough we have provided the GUI mode for a limited number of sub tools, you can run any sub tool using the Terminal mode</p>
<p>For samtools we have provided the GUI mode only for samtools index and samtools sort, but if you want to run samtools merge sub
tool you can use the terminal mode</p>
</div>
</div>
<div class="feature-with-copy">
<div class="feature-image">
<img src="images/min_it.png" alt="">
</div>
<div class="feature-text">
<h2>Real-time sequence analysis (alpha phase)</h2>
<p>You can use the MinIT mode along with <a href="https://github.com/AnjanaSenanayake/f5n_server">F5N Server</a> to do Real-time methylation calling on
nanopore sequencing batch datasets</p>
<p></p>
</div>
</div>
</div>
</div>
<div class="fullwidth-block cta center-aligned">
<div class="container">
<p class="leading">Go to <a href="download.html">download section</a></p>
</div>
</div>
</main> <!-- .main-content -->
<footer class="site-footer">
<div class="container">
<div class="social-links">
<a href="https://github.com/SanojPunchihewa/f5n"><i class="fa fa-github"></i></a>
<a href="mailto:[email protected]?subject = Feedback&body = Message"><i
class="fa fa-envelope"></i></a>
</div>
<div class="colophon">
<p>Copyright 2020 Genopo - Mobile Genomics</p>
</div>
</div>
</footer> <!-- .site-footer -->
</div>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/app.js"></script>
</body>
</html>