Skip to content

Commit

Permalink
Merge pull request #32 from stemangiola/few-edits
Browse files Browse the repository at this point in the history
Few edits
  • Loading branch information
mblue9 authored Jul 24, 2020
2 parents 6d0f0b9 + a1c6428 commit b153659
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 50 deletions.
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,20 @@ Website: https://stemangiola.github.io/bioc_2020_tidytranscriptomics

Docker image: https://hub.docker.com/repository/docker/stemangiola/bioc_2020_tidytranscriptomics

Material [web page](https://stemangiola.github.io/bioc_2020_tidytranscriptomics/articles/tidytranscriptomics.html) .

Dr. Maria Doyle (Maria.Doyle@petermac.org) and Dr. Stefano Mangiola (mangiola.s@wehi.edu.au)

**This material was created for a Bioc2020 conference workshop but it can also be used for self-learning.**

The workshop material can be accessed [here](https://stemangiola.github.io/bioc_2020_tidytranscriptomics/articles/tidytranscriptomics.html) .

## Running the workshop
## Workshop package installation (necessary in order to reproduce)

The workshop is designed for R `4.0` and packages from the 3.12 `devel` branch of Bioconductor. It can be installed as an R package.
```
devtools::install_github("stemangiola/bioc_2020_tidytranscriptomics", build_vignettes = TRUE, force=TRUE)
```


But the easiest way to try out the workshop is to use the Docker image (see section below), which has all the software pre-configured to the correct versions.
### Via Docker image

## Docker image

You can run this workshop using the Docker image. If you need to install Docker you can get it from [here](https://docs.docker.com/get-docker/):
All the software is pre-configured to the correct versions. If you need to install Docker you can get it from [here](https://docs.docker.com/get-docker/):

```
docker run -e PASSWORD=abc -p 8787:8787 stemangiola/bioc_2020_tidytranscriptomics
Expand All @@ -37,6 +32,14 @@ docker run -e PASSWORD=abc -p 8787:8787 stemangiola/bioc_2020_tidytranscriptomic
Once running, navigate to <http://localhost:8787/> and then login with
`rstudio:abc`.

### Via GitHub
```
devtools::install_github("stemangiola/tidybulk")
devtools::install_github("stemangiola/bioc_2020_tidytranscriptomics", build_vignettes = TRUE)
library(tidytranscriptomics)
vignette("tidytranscriptomics")
```

## Workshop Description

This workshop will present how to perform analysis of RNA sequencing data following the tidy data paradigm [@wickham2014tidy]. The tidy data paradigm provides a standard way to organise data values within a dataset, where each variable is a column, each observation is a row, and data is manipulated using an easy-to-understand vocabulary. Most importantly, the data structure remains consistent across manipulation and analysis functions.
Expand Down
Loading

0 comments on commit b153659

Please sign in to comment.