Skip to content

Instantly share code, notes, and snippets.

View JackieMium's full-sized avatar
🎯
Focusing

JackieMe JackieMium

🎯
Focusing
View GitHub Profile
@JackieMium
JackieMium / quiet_boot.sh
Created October 9, 2021 03:05 — forked from indgy/quiet_boot.sh
FreeBSD Quiet Boot
#!/bin/sh
# Speed up boot slightly
sysrc background_dhclient=YES
sysrc -f /boot/loader.conf autoboot_delay=3
# Quieten boot messages
sysrc rc_startmsgs=NO
sysrc -f /boot/loader.conf boot_mute=YES
sysrc -f /boot/loader.conf beastie_disable=YES
@JackieMium
JackieMium / deseq-vs-edger.R
Created October 10, 2017 02:15 — forked from stephenturner/deseq-vs-edger.R
DESeq vs edgeR comparison
# Note: using the devel versions of both packages!
library(DESeq) # version 1.9.11
library(edgeR) # version 2.99.8
library(VennDiagram)
# Read in data ------------------------------------------------------------
## Use pasilla data
datafile = system.file( "extdata/pasilla_gene_counts.tsv", package="pasilla" )
datafile