-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (126 loc) · 6.89 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
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
<!doctype html>
<html>
<head>
<title>The BiocSwirl Project</title>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<link href="css/frame.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/controls.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/custom.css" media="screen" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Ubuntu:regular,bold&subset=Latin">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/menu.js"></script>
<style>
.menu-index {
color: rgb(255, 255, 255) !important;
opacity: 1 !important;
font-weight: 700 !important;
}
</style>
</head>
<body>
<div class="menu-container">
<div class="menu">
<div class="menu-table flex-row-space-between">
<div class="logo flex-row-center">
<a href="index.html">BiocSwirl & BiocTerm</a>
</div>
<a class="menu-button" tabindex="0" href="javascript:void(0)">
<img src="img/menu.png">
</a>
<div class="menu-items flex-row-center flex-item">
<a href="index.html" class="menu-index">Overview</a>
<a href="workshops.html" class="menu-embedding">Workshops</a>
<a href="team.html" class="menu-widget">Meet the Devs</a>
<a href="https://github.com/biocswirl-dev-team">GitHub</a>
</div>
</div>
</div>
~
</div>
<div class="content-container">
<div class="content">
<div class="content-table flex-column">
<!-------------------------------------------------------------------------------------------->
<!--Start Intro-->
<div class="flex-row">
<div class="flex-item flex-column">
<img class="image center" src="img/BiocSwirl_Icon_Banner.jpeg"/>
</div>
<div class="flex-item flex-column">
<p class="text text-large">
BiocSwirl is a series of in-depth swirlify generated courses used to teach bioinformatics workflows in R/Bioconductor using an interactive and easy to digest format.
</p>
</div>
</div>
</div>
<!--End Intro-->
<!-------------------------------------------------------------------------------------------->
<!--Start Text Only-->
<div class="flex-row">
<div class="flex-item flex-column">
<h2 class="add-top-margin">About</h2>
<hr>
<p class="text">
There have been many resources available to interdisciplinary researchers for years now in the form of Rbookdown tutorials, in person workshops, and Youtube videos. However, each method of learning has its pros and cons - for blogpost and video type tutorials we have the inability to troubleshoot and raise our hands, for in-person workshops we have time limitations. Bioinformatics has grown in adoption in many traditional non-computer science fields that lack the time and energy to go truly in depth past copying and pasting code found online. Swirlstats and terminal-based Python courses such as browser-based Codeacademy, have shown to be efficient course structures to teach data science and statistics to complete beginners. </p>
<img class="image center add-top-margin-small" src="img/demofull.gif">
<p class="text">
We develop swirlify()-style console/terminal based courses for the purposes of teaching bioinformatics workflow steps and good coding practices. The philosophy is to keep the GUI use and application switching as minimal as possible but the content itself very rich and informative. See also BiocTerm (still in development) for our interface companion to the course materials. The interface (BiocTerm) and R package (BiocSwirl) can be used independently of each other but are best used together for people who are interested in making the most of their learning experience.
</p>
</div>
</div>
<!--Start Text Only-->
<div class="flex-row">
<div class="flex-item flex-column">
<h2 class="add-top-margin">Installation</h2>
<hr>
<p class="text">
Use the following code to install BiocSwirl via R:
<pre>
# install.packages("devtools")
# library(devtools)
devtools::install_github("biocswirl-dev-team/BiocSwirl")
library(BiocSwirl)
</pre>
Alternatively, the BiocSwirl courses can be installed independently. Please follow these instructions to manually install our courses: https://github.com/swirldev/swirl_courses/wiki/Legacy-Manual-Install-Instructions-for-Swirl-Courses
</p>
<p>
Submission to Bioconductor pending.
</p>
</div>
</div>
<!--Start Text with Gallery-->
<div class="flex-row">
<div class="flex-item flex-column">
<h2 class="add-top-margin">Course Offerings</h2>
<hr>
<p class="text">
We're currently offering five different interactive courses: Introduction to Data Science for Life Scientists, Introduction to Stats, bulk RNAseq analysis, single cell RNAseq analysis, and ChIPseq analysis. We further have classes covering Methylation Arrays and GWAS (genome-wide association studies) in the development pipeline.
</p>
<img class="image center add-top-margin-small" src="https://raw.githubusercontent.com/STRIDES-Codes/CSHL-BiocSwirl/main/BiocSwirl%20course%20structure.png">
<div class="flex-row">
<div class="flex-item flex-column">
<p class="text">
These courses provide interactive material that ranges from beginner's steps (package installation and environment setup) to low level, to high level analyses and visualizations. The courses are easily configurable and break down complex bioinformatics workflows into simple steps, and included standardized datasets to work with. Most importantly these interactive courses provide real time feedback on your work. Further, the material places strong emphasis on coding practices, open science, and reproducibility. Finally the whole framework as very easy to install and included datasets are small, so the courses work on low spec systems.
</p>
</div>
</div>
<!--End Text with Gallery-->
<!-------------------------------------------------------------------------------------------->
<!--Start Credits-->
<div class="flex-row">
<div class="flex-item flex-item-stretch flex-column">
<p class="text text-small text-italic">
Have questions? Contact us at <span class="highlight-text"> [email protected] </span>
</p>
</div>
</div>
<!--End Credits-->
<!-------------------------------------------------------------------------------------------->
</div>
</div>
</div>
</body>
</html>