# HG changeset patch # User stef # Date 1414402696 14400 # Node ID 238a698f7904b594a6079b4e22638d9f954fc7e8 # Parent 1181e22c2b5a8cc143e0701c863569a744d0d1cb Uploaded diff -r 1181e22c2b5a -r 238a698f7904 QDNAseq.R --- 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 ) ) )