Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup notes #57

Merged
merged 1 commit into from
Oct 8, 2024
Merged
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
14 changes: 3 additions & 11 deletions learners/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@
title: Setup
---

- Install R, RStudio and packages (see below).

### R and RStudio

- R and RStudio are separate downloads and installations. R is a programming language and collection of software that implements that language. RStudio is a graphical integrated development environment
R and RStudio are separate downloads and installations. R is a programming language and collection of software that implements that language. RStudio is a graphical integrated development environment
(IDE) that makes using R easier and more interactive. You need to install R
before you install RStudio. After installing both programs, you will need to
install some R libraries from within RStudio. If you need to install R and/or RStudio, there are platform-specific installation instructions in the [Introduction to Bioconductor module](https://carpentries-incubator.github.io/bioc-intro/).

### For everyone
### Package installation

After installing R and RStudio, you need to install some packages that will be
used during the workshop. We will also learn about package installation during
Expand All @@ -29,11 +27,5 @@ BiocManager::install(c("AUCell", "batchelor", "BiocStyle",
Ncpus = 4)
```

<!---
grep -Ph "library\(" episodes/*.Rmd | sort | uniq

^these are all libraries loaded in the episodes
-->


You can adjust `Ncpus` as needed for your machine.

Loading