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
| #!/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 = (); |
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
| # 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 |