Skip to content

Instantly share code, notes, and snippets.

View klarrey's full-sized avatar

Enoch Larrey klarrey

  • University of Arkansas for Medical Sciences
View GitHub Profile
@klarrey
klarrey / 0_installSoftware.sh
Created January 3, 2023 04:39 — forked from DannyArends/0_installSoftware.sh
Scripts and other things for RNA-Seq
# 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
#
# Call expression from aligned SRA reads
# copyright (c) 2022 - Danny Arends
#
library("GenomicAlignments")
library("GenomicFeatures")
library("Rsamtools")
library("preprocessCore")
library("vioplot")