This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add yourself to the sudo group | |
| su - | |
| usermod -aG sudo danny | |
| exit | |
| # Install the virtual box guest additions | |
| cd /media/cdrom0 | |
| sudo sh ./VBoxLinuxAdditions.run | |
| # Install R and deps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Call expression from aligned SRA reads | |
| # copyright (c) 2022 - Danny Arends | |
| # | |
| library("GenomicAlignments") | |
| library("GenomicFeatures") | |
| library("Rsamtools") | |
| library("preprocessCore") | |
| library("vioplot") |