Skip to content

Instantly share code, notes, and snippets.

@readbio
readbio / deseq-vs-edger.R
Created October 6, 2015 19:51 — 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
@readbio
readbio / multi-threading with perl example
Created July 6, 2016 13:45 — forked from jclosure/multi-threading with perl example
multi-threading with perl example
#!/opt/local/bin/perl -w
use threads;
use strict;
use warnings;
# SOURCE REF: http://chicken.genouest.org/perl/multi-threading-with-perl/
my @a = ();
my @b = ();