changeset 8:238a698f7904 draft

Uploaded
author stef
date Mon, 27 Oct 2014 05:38:16 -0400
parents 1181e22c2b5a
children 4efd258b33d9
files QDNAseq.R
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/QDNAseq.R	Mon Oct 27 05:24:59 2014 -0400
+++ b/QDNAseq.R	Mon Oct 27 05:38:16 2014 -0400
@@ -146,10 +146,11 @@
 catMsg( "Loading R libraries" )
 catMsg( R.version.string )
 
-catMsg( "Loading Limma" )
-library( "limma" )
-catMsg( "Loading DNAcopy" )
-library( "DNAcopy" )
+packs <- c( "limma", "marray", "CGHbase", "impute", "DNAcopy", "CGHcall" )
+for ( pack in packs ){
+	catMsg( c("Loading ", pack) )
+	library( pack )
+}
 
 ## supress msg to allow R to finish with non-error msg
 suppressWarnings( suppressMessages( library( QDNAseq, quietly = TRUE ) ) )