-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (69 loc) · 3.05 KB
/
index.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
---
layout: default
title: "Home"
group: "navigation"
order: 1
---
<!-- Carousel -->
<div id="carousel" class="carousel slide carousel-fit" align="center" style="margin-left: auto; margin-right: auto; margin-top:50px;" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img class="img-responsive center-block" src="public/images/carousel/iobio.png">
</div>
<div class="item">
<img class="img-responsive center-block" src="public/images/carousel/iobio.png">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Describe what gkno is.-->
<hr>
<div class='section'>
<div class="section-title">A bioinformatics pipeline launcher</div>
<div class='description'>
gkno opens the world of complex bioinformatic analysis to people of all level of computational expertise. This site contains documentation, tutorials and information
on all the tools that comprise gkno.
</div>
<!-- Provide a link for downloading gkno -->
<div class='section-title'><a href="http://gkno.me/install.html">Get gkno</a></div>
<div class='description'>
Learn how to download, install and maintain gkno and get data resources.
</div>
<!-- Give an example describing variant calling and visualisation -->
<hr>
<div class='section-subtitle'>Example: Call and visualize variants</div>
<div class='description'>
Use the gkno freebayes pipeline to call and filter variants. Easily parallelize calling over multiple regions and generate
a compressed and indexed vcf file. The <a href="http://iobio.io">iobio</a> project allows visualization and real-time analysis
of large data sets. Having generated variant calls for your sample, use <a href="http://vcf.iobio.io">vcf.iobio</a> to view
global summary statistics.
</div>
<ul id="apps">
<li>
<div class='app'>
<div class='app-title'><a href="http:///pipelines.html#freebayes">gkno freebayes variant calling pipeline</a></div></br>
<a href="http:///pipelines.html#freebayes"><img src="/public/images/pipelines/freebayes.png" style="width:450px; height:100px;"></img></a>
</div>
</li>
<li>
<div class='app'>
<div class='app-title'><a href="http://vcf.iobio.io">vcf.iobio: real-time variant visualization</a></div>
<a href="http://vcf.iobio.io"><img src="/public/images/vcf.iobio_wide.png" style="width:450px; height:300px;"></img></a>
</div>
</li>
</ul>
</div>