Blogs

Posts

New people Oct 1, 2020: Tuomas Borman started as a research assistant, welcome! Aug 18, 2020: Pyry Kantanen joined the rOpenGov developer team, welcome! July 20, 2020: Tim Garrels joins our team through the Baltic Science Network Mobility Programme for Research (BARI) Internship June 1, 2020 Guilhem Sommeria-Klein joins the team! Funding Sep 1, 2020 Academy of Finland consortium Eco-evolutionary mechanisms underlying critical transitions in microbial communities now launched!

Continue reading

DHN2020 award

Wrangling with non-standard data by Mäkelä et al. selected as best long paper in DHN2020!

Continue reading

2019 news

Dec 23, 2019 Leo Lahti joined as arXiv moderator (applied statistics) Dec 16-20, 2019 Statistical research in microbiome research workshop in Pune, India Dec 7, 2019 Research talk in Savitribai Pule Pune University by Leo Lahti on microbiome bioinformatics. Nov 29, 2019 Ville Laitinen received the best presentation award in Turku Computational Life Science annual seminar! Nov 29, 2019 Moein Khalighi received a PhD study position in Turku. Congratulations! Nov 26, 2019 Integrating open science in the humanities - the case of computational history

Continue reading

2018 news

12 December Published A Quantitative Approach to Book-Printing in Sweden and Finland, 1640–1828 12 December Significantly improved CRAN release for the pxweb R package. Automated access to data from dozens of statistical authorities globally. 11 December Leo Lahti nominated to Digital Humanities advisory board by National Library of Finland 6 December Presentation on microbiome data science at European Bioconductor Meeting 2018 in Munich (Slides (PDF)). 5 December Best oral poster for Anna Aatsinki in Turku Computational Life Science meeting.

Continue reading

Open science award

December 2017: Open Science and Research award of the Ministry of Education and Culture for Open Knowledge Finland Open Science work group!

Continue reading

Linked post

I’m a linked post in the menu. You can add other posts by adding the following line to the frontmatter: menu = "main" Lorem ipsum dolor sit amet, consectetur adipiscing elit. In mauris nulla, vestibulum vel auctor sed, posuere eu lorem. Aliquam consequat augue ut accumsan mollis. Suspendisse malesuada sodales tincidunt. Vivamus sed erat ac augue bibendum porta sed id ipsum. Ut mollis mauris eget ligula sagittis cursus. Aliquam id pharetra tellus.

Continue reading

Go is for lovers

Hugo uses the excellent go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in go templates. This document is a brief primer on using go templates.

Continue reading

Hugo is for lovers

Step 1. Install Hugo Goto hugo releases and download the appropriate version for your os and architecture. Save it somewhere specific as we will be using it in the next step. More complete instructions are available at installing hugo Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. Follow the following steps: Clone the hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:

Continue reading

Hello R Markdown

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. You can embed an R code chunk like this: summary(cars) ## speed dist ## Min. : 4.0 Min. : 2.00 ## 1st Qu.:12.0 1st Qu.: 26.00 ## Median :15.0 Median : 36.00 ## Mean :15.4 Mean : 42.

Continue reading

Creating a new theme

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme. We’ll start with creating a new site with a very basic template.

Continue reading