Skip to content
Snippets Groups Projects

Carine dev

Merged Carine Rey requested to merge carine_dev into master
3 files
+ 42
5
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 15
1
@@ -24,4 +24,18 @@ klippy::klippy(
@@ -24,4 +24,18 @@ klippy::klippy(
tooltip_success = 'Copied !')
tooltip_success = 'Copied !')
```
```
To install packages from [Bioconducor](http://www.bioconductor.org) you need to
To install packages from [bioconductor](http://www.bioconductor.org) you must first install a package called "BiocManager".
\ No newline at end of file
This package imports a function called "install" allowing you to install packages hosted in bioconductor from their name.
 
 
To install "BiocManager" you must type:
 
 
```R
 
install.packages("BiocManager")
 
```
 
 
Then to install, for example "tximport", you just have to write:
 
 
```R
 
BiocManager::install("tximport")
 
```
 
Loading