#
# This file is part of the CNO software
#
# Copyright (c) 2011-2012 - EMBL - European Bioinformatics Institute
#
# File author(s): CNO developers (cno-dev@ebi.ac.uk)
#
# Distributed under the GPLv3 License.
# See accompanying file LICENSE.txt or copy at
# http://www.gnu.org/licenses/gpl-3.0.html
#
# CNO website: http://www.cellnopt.org
#
##############################################################################
# $Id$
cutSimList <- function(simList, bString)
{
bString = as.logical(bString)
simListCut <- simList
finalCube <- simListCut$finalCube[bString,,drop=FALSE]
ixNeg <-simListCut$ixNeg[bString,,drop=FALSE]
ignoreCube <- simListCut$ignoreCube[bString,,drop=FALSE]
maxIx <- simListCut$maxIx[bString]
# in some cases the finalcube is a matrix but list of integer, so we
# need to convert back to a matrix. Happens for simple models only hence
# the warning.
if (is.matrix(finalCube) == FALSE){
#warning("converting back to matrix in prep4sim")
simListCut$finalCube<-matrix(finalCube,
dimnames=list(names(finalCube), 1))
simListCut$ixNeg<-matrix(ixNeg, dimnames=list(names(ixNeg), 1))
simListCut$ignoreCub<-matrix(ignoreCube,dimnames=list(names(ignoreCube), 1))
simListCut$maxIx<-matrix(maxIx,dimnames=list(names(maxIx), 1))
}
else{
simListCut$finalCube = finalCube
simListCut$ixNeg<-ixNeg
simListCut$ignoreCube<-ignoreCube
simListCut$maxIx<-maxIx
}
return(simListCut)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.