Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion _includes/default-header.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,17 @@
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">Materials</a>
<div class="navbar-dropdown">
<p class="navbar-item navbar-separator">Slides</p>
{% for page in site.materials %}
<a class="navbar-item" href="{{ page.url }}"> {{ page.title }} </a>
{% if page.type == 'slides' %}
<a class="navbar-item" href="{{ page.url }}"> {{ page.title }} </a>
{% endif %}
{% endfor %}
<p class="navbar-item navbar-separator">Handbooks</p>
{% for page in site.materials %}
{% if page.type == 'handbook' %}
<a class="navbar-item" href="{{ page.url }}"> {{ page.title }} </a>
{% endif %}
{% endfor %}
</div>
</div>
Expand Down
74 changes: 74 additions & 0 deletions _materials/beerdecoded_handbook.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
layout: default
title: Running a BeerDECoded workshop
type: handbook
---


We're thrilled you choose to run a BeerDEcoded workshop.
We hope this guide will help you navigate the logistics of the workshop organization. If anything is unclear or you have more questions, feel free to add comments in this doc, or reach out to us directly. We're here to help!

# Goals, targets, and learning objectives

**Purpose**: make life-science tangible & accessible

**Outcome**: pupils, citizens aware about DNA, sequencing technologies, bioinformatics, open science and their applications and their impact on their daily life

**Process**: 1.5 day (or less according to modules) practical workshop on beer

**Targets**: pupils in high school (above 16 years old) and citizens with or without scientific background

**Learning objectives**: at the end of the workshop, participants will be able to:

- perform simple laboratory tasks
- give original examples of microbes and their diverse roles
- explain what is cell and what it contains
- describe DNA as the building block for life
- give examples of DNA sequencing technologies
- apply a pre-defined data analysis pipeline

# Pedagogical Material

- Online
- Free to (re)use if credits are given

Ready to use and modular protocols
- 2 versions
- detailed and explanatory version for teachers
- streamlined version for pupils
- Possibility to interrupt and split the protocols
- Ideas of small pedagogical games to help understanding the protocols
- List of required consumables and materials

Slides for introduction talks but also as support for all protocols
- Open questions to start discussions
- Notes for presenters
- Presentation material to introduce the topic, theoretical background for lab-work and bioinformatics, with notes for presenters

# Requirements

Rooms
- Lab with enough lab benches to have groups of max. 4 people
- Projector
- Room with computers

At the university or at a school

Materials
- Computer for sequencing
- Centrifuge
...

Consumables
- Add includes from protocols

# Schedule

Add links to material

## Part I: Extraction of the yeast DNA

## Part II: Sequencing of the DNA

## Part III: Analysis of the data

1 change: 1 addition & 0 deletions _materials/introduction.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
layout: slides
title: "Microbiota, DNA and sequencing?"
type: slides
---

![](/images/materials/introduction/anna.jpg)
Expand Down
4 changes: 4 additions & 0 deletions css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ $navbar-dropdown-item-hover-background-color: #e5e8dd;
max-height: 2.5rem;
}
}

.navbar-separator {
font-weight: bold;
}
}

.content {
Expand Down