Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R_basis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CAN
R_basis
Merge requests
!3
Carine dev
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Carine dev
carine_dev
into
master
Overview
0
Commits
4
Pipelines
0
Changes
3
Merged
Carine Rey
requested to merge
carine_dev
into
master
3 years ago
Overview
0
Commits
4
Pipelines
0
Changes
3
Expand
Fill in tuto to install packages from github and bioconductor
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
f77f85b5
4 commits,
3 years ago
3 files
+
42
−
5
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
session_1/bioconductor.Rmd
+
15
−
1
Options
@@ -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