-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoes0compute.html
executable file
·64 lines (56 loc) · 2.74 KB
/
does0compute.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
---
layout: page
title: Does[0]Compute?
permalink: /compute/
---
{% assign site_year = site.time | date: "%Y" %}
{% assign site_day = site.time | date: "%j" %}
<div class="home">
<p>
Does[0]compute? (pronounced “Does naught compute?”), is intended to foster a discussion about best practices in computational biology.
Visit the <a href="https://github.com/MorrellLAB/DoesNaughtCompute" rel="external">DoesNaughtCompute Github</a> for presentation slides, code, and sample data sets. Please bring a computer to use during the discussion.
Everyone is welcome to attend!
For more information please sign up for the Google group, <a href="https://groups.google.com/a/umn.edu/forum/#!forum/biocomputing" rel ="external">Biocomputing Discussion Group</a>.
</p><br />
<p>
During spring semester 2020, the discussion group meets in <b> 409 Borlaug Hall</b> from <b>1pm to 2pm</b> every other Wednesday. You can also join remotely via Zoom meeting ID 928-745-035 or <a href="https://umn.zoom.us/j/928745035" rel="external">join URL</a>. Please see schedule below for dates we will meet and topics we will cover. All programming levels are welcome!
</p><br />
<hr />
<h2>Schedule</h2>
<ul class="posts">
{% for post in site.compute %}
{% assign post_year = post.meet_date | date: "%Y" %}
{% assign post_day = post.meet_date | date: "%j" %}
{% if post_year >= site_year %}
{% if post_day >= site_day %}
<li>
<span class="post-date">{{ post.meet_date | date: "%b %-d, %Y" }}</span>
<a href="{{ post.url }}">{{ post.topic }}</a><br />
<span class="post-content">
Lead by:
{% if post.leaders %}
{{ post.leaders }}
{% else %}
<em>To be determined</em>
{% endif %}
</span>
</li>
{% endif %}
{% endif %}
{% endfor %}
</ul>
<a href="../previousDNC/index.html">Previous Meetings</a>
</div>
<!-- Start Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19694768-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- End Google Analytics -->
<!-- placeholder -->