R/network.R

#' Analysing the network
#' 
#' Calculates some indicators for each node in the network.
#' 
#' 
#' @aliases analyze_network analyze_network-methods
#' analyze_network,network-method
#' @param Omega a network object
#' @param nv the level of cutoff at which the analysis should be done
#' @param label_v (optionnal) the name of the genes
#' @return A matrix containing, for each node, its betweenness,its degree, its
#' output, its closeness.
#' @author Nicolas Jung, Frédéric Bertrand , Myriam Maumy-Bertrand.
#' @references Jung, N., Bertrand, F., Bahram, S., Vallat, L., and
#' Maumy-Bertrand, M. (2014). Cascade: a R-package to study, predict and
#' simulate the diffusion of a signal through a temporal gene network.
#' \emph{Bioinformatics}, btt705.
#' 
#' Vallat, L., Kemper, C. A., Jung, N., Maumy-Bertrand, M., Bertrand, F.,
#' Meyer, N., ... & Bahram, S. (2013). Reverse-engineering the genetic
#' circuitry of a cancer cell with predicted intervention in chronic
#' lymphocytic leukemia. \emph{Proceedings of the National Academy of
#' Sciences}, 110(2), 459-464.
#' @keywords methods
#' @examples
#' 
#' 	data(network)
#' 	analyze_network(network,nv=0)
#' 
#' @exportMethod analyze_network
setMethod("analyze_network","network",function(Omega,nv,label_v=NULL){
  require(tnet)
  if(is.null(label_v)){label_v<-1:dim(Omega@network)[1]}
  O<-Omega@network
  Omega<-Omega@network
  O[abs(O)<=nv]<-0
  G<-graph.adjacency(O,weighted=TRUE)
  
  get.edgelist(G)->Q	
  
  weight<-rep(0,dim(Q)[1])
  for(i in 1:dim(Q)[1]){weight[i]<-Omega[Q[i,1],Q[i,2]]}
  R<-cbind(Q,abs(weight))
  G<-as.tnet(R,type="weighted one-mode tnet")
  C<-data.frame(label_v,betweenness_w(G)[,2], degree_w(G)[,2:3],closeness_w(G,gconly=FALSE)[,2])
  colnames(C)<-c("node","betweenness","degree","output","closeness")
  return(C)
}
)

#' @rdname print-methods
setMethod("print","network",function(x,...){
  cat(paste("This is a S4 class with : \n - (@network) a matrix of dimension ",dim(x@network)[1],"*",dim(x@network)[2]," .... [the network] \n - (@name) a vector of length ",length(x@name)," .... [gene names] \n","- (@F) a array of dimension ",dim(x@F)[1],"*",dim(x@F)[2],"*",dim(x@F)[3]," .... [F matrices] \n","- (@convF) a matrix of dimension ",dim(x@convF)[1],"*",dim(x@convF)[2]," .... [convergence (L1 norm) of array F] \n","- (@convO)a vector of length ",length(x@convO)," .... [convergence (L1 norm) of matrix Omega]\n","- (@time_pt) an vector of length",length(x@time_pt),"  .... [time points]")) 
})


#' See the evolution of the network with change of cutoff
#' 
#' See the evolution of the network with change of cutoff.  This function may
#' be usefull to see if the global topology is changed while increasing the
#' cutoff.
#' 
#' @aliases evolution evolution-methods evolution,network-method
#' @param net a network object
#' @param list_nv a vector of cutoff at which the network should be shown
#' @param gr a vector giving the group of each gene 
#' @param color.vertex a vector giving the color of each node
#' @param fix logical, should the position of the node in the network be calculated once at the beginning ? Defaults to TRUE.
#' @param gif logical, TRUE
#' @param taille vector giving the size of the plot. Default to c(2000,1000)
#' @param label_v (optional) the name of the genes
#' @param legend.position (optional) the position of the legend, defaults to "topleft"
#' @param frame.color (optional) the color of the frame, defaults to "black"
#' @param label.hub (optional) boolean, defaults to FALSE
#' 
#' @return A HTML page with the evolution of the network.
#' @author Nicolas Jung, Frédéric Bertrand , Myriam Maumy-Bertrand.
#' @references Jung, N., Bertrand, F., Bahram, S., Vallat, L., and
#' Maumy-Bertrand, M. (2014). Cascade: a R-package to study, predict and
#' simulate the diffusion of a signal through a temporal gene network.
#' \emph{Bioinformatics}, btt705.
#' 
#' Vallat, L., Kemper, C. A., Jung, N., Maumy-Bertrand, M., Bertrand, F.,
#' Meyer, N., ... & Bahram, S. (2013). Reverse-engineering the genetic
#' circuitry of a cancer cell with predicted intervention in chronic
#' lymphocytic leukemia. \emph{Proceedings of the National Academy of
#' Sciences}, 110(2), 459-464.
#' @keywords methods
#' @examples
#' 
#' \donttest{
#' 	data(network)
#' 	sequence<-seq(0,0.2,length.out=20)
#' 	#setwd("inst/animation")
#' 	#evolution(network,sequence)
#' }
#' 
#' @exportMethod evolution
setMethod("evolution","network",function(net
                                         ,list_nv
                                         ,gr=NULL
                                         ,color.vertex=NULL
                                         ,fix=TRUE
                                         ,gif=TRUE
                                         ,taille=c(2000,1000)
                                         ,label_v=1:dim(net@network)[1]
                                         ,legend.position="topleft"
                                         ,frame.color="black"
                                         ,label.hub=FALSE
                                         #,edge.arrow.size=0.6*(1+size.ed)
                                         #,edge.thickness=1
)
{
  Omega<-net
  
  if(length(list_nv)==1){
    list_nv=seq(0,max(net@network)-0.05,length.out=list_nv)	
  }
  
  if(gif==TRUE){
    require(animation)
    animation::ani.options(ani.height=taille[2],ani.width=taille[1],outdir = getwd())
    animation::saveHTML({
      
      POS<-position(net,nv=list_nv[1])
      
      for(i in list_nv){
        
        if(fix==TRUE){
          plot(Omega
               ,nv=i
               ,gr=gr
               ,ini=POS
               ,color.vertex=color.vertex
               ,label_v=label_v
               ,legend.position=legend.position
               ,frame.color=frame.color
               ,label.hub=label.hub
               #,edge.arrow.size=edge.arrow.size
               #,edge.thickness=edge.thickness
          )
        }
        else{
          plot(Omega
               ,nv=i
               ,gr=gr
               ,color.vertex=color.vertex
               ,label_v=label_v
               ,legend.position=legend.position
               ,frame.color=frame.color
               ,label.hub=label.hub
               #,edge.arrow.size=edge.arrow.size
               #,edge.thickness=edge.thickness
          )
          
        }
        text(-1,1,round(i,3))
      }
    })
  }
  
  else{
    par(ask=TRUE)
    POS<-position(net,nv=list_nv[1])
    if(is.null(gr)){gr<-rep(1,dim(Omega@network)[1])} 
    for(i in list_nv){
      plot(Omega
           ,nv=i
           ,gr=gr
           ,ini=POS
           ,color.vertex=color.vertex
           ,label_v=label_v
           ,legend.position=legend.position
           ,frame.color=frame.color
           ,label.hub=label.hub
           #,edge.arrow.size=edge.arrow.size
           #,edge.thickness=edge.thickness
      )
    }
    par(ask=FALSE)	
  }
}
)

#' Returns the position of edges in the network
#' 
#' Returns the position of edges in the network
#' 
#' 
#' @name position-methods
#' @aliases position position-methods position,network-method
#' @docType methods
#' @section Methods: \describe{
#' 
#' \item{list("signature(net = \"network\")")}{ Returns a matrix with the
#' position of the node. This matrix can then be used as an argument in the
#' plot function. } }
#' @param net a network object
#' @param nv the level of cutoff at which the analysis should be done
#' @keywords methods
#' @examples
#' 
#' data(Net)
#' position(Net)
#' 
#' @exportMethod position
setMethod("position","network",function(net,nv=0){
  require(igraph)
  O<-net@network
  Omega<-net@network
  O[abs(O)<=nv]<-0
  O[abs(O)>nv]<-1
  
  nom<-1:dim(O)[1]
  enle<-which(apply(O,1,sum)+apply(O,2,sum)==0)
  if(length(enle)!=0){
    nom<-nom[-enle]
    O<-O[-enle,-enle]
  }
  
  G<-graph.adjacency(O,weighted=TRUE)
  get.edgelist(G)->Q	
  
  Q[,1]<-nom[Q[,1]]
  Q[,2]<-nom[Q[,2]]
  
  # dev.new(width=150,heigth=300,xlim=c(min(L[,1]),max(L[,1])))
  #par(mar=c(0,0,0,0), oma=c(0,0,0,0),mai=c(0,0,0,0))
  L<-layout.fruchterman.reingold(G,minx=rep(0,vcount(G)),maxx=rep(150,vcount(G)),miny=rep(0,vcount(G)),maxy=rep(300,vcount(G)))
  return(cbind(nom,L))
}
)

#######################################
#######################################
#######################################

#' @rdname plot-methods
setMethod("plot"
          ,"network"
          ,function(x
                    ,y
                    ,choice="network"
                    ,nv=0
                    ,gr=NULL
                    ,ini=NULL
                    ,color.vertex=NULL
                    ,video=TRUE
                    ,weight.node=NULL
                    ,ani=FALSE
                    ,taille=c(2000,1000)
                    ,label_v=1:dim(x@network)[1]
                    ,horiz=TRUE
                    ,legend.position="topleft"
                    ,frame.color="black"
                    ,label.hub=FALSE
                    #,edge.arrow.size=0.6*(1+size.ed)
                    #,edge.thickness=1
                    ,...
          )
{
            
            if(choice=="F"){
              F<-x@F
              
              par(mar=c(0,0,0,0), oma=c(0,0,0,0),mai=c(0,0,0,0))
              
              couleur<-rainbow(dim(F)[1])
              ymax<-max(F)
              nF<-dim(F)[3]
              par(mfcol=c(dim(F)[1],dim(F)[1]))
              ordre<-0
              u<-dim(F)[1]-1
              t<-0
              k<-1
              for(i in 1:dim(F)[1]){
                for(w in 1:k){
                  ordre<-ordre+1	
                  t<-t+1                                                                            
                  KK<-ordre%%(dim(F)[1]+1)
                  if(KK==0){
                    KK<-2
                  }
                  if(ordre<=dim(F)[1]){
                    par(mai=c(0,0.3,0,0))
                    plot(F[,1,t]
                         ,xlab=""
                         ,ylab=""
                         ,type="h"
                         ,lwd=3
                         ,xaxt="n"
                         ,ylim=c(0,ymax)
                         ,col=couleur[KK])
                    #axis(1,at=1:dim(F)[1],1:3)
                    
                    GG<-ordre%%dim(F)[1]
                    if(GG==0){
                      GG<-dim(F)[1]
                    }
                    GG2<-(ordre/dim(F)[1])
                    if(floor(GG2)==GG2){
                      GG2<-GG2-1
                    }
                    GG2<-floor(GG2)
                    text((dim(F)[1]+dim(F)[1]-1)/2,ymax*0.9,paste("F",GG,GG2+2,sep=""),cex=2)
                    
                    par(mai=c(0,0,0,0))
                  }
                  else{
                    
                    plot(F[,1,t]
                         ,xlab=""
                         ,ylab=""
                         ,type="h"
                         ,lwd=3
                         ,xaxt="n"
                         ,ylim=c(0,ymax)
                         ,col=couleur[KK]
                         ,yaxt="n" )
                    
                    GG<-ordre%%dim(F)[1]
                    if(GG==0){GG<-dim(F)[1]}
                    GG2<-(ordre/dim(F)[1])
                    if(floor(GG2)==GG2){GG2<-GG2-1}
                    GG2<-floor(GG2)
                    text((dim(F)[1]+dim(F)[1]-1)/2,ymax*0.9,paste("F",GG,GG2+2,sep=""),cex=2)
                    
                    #axis(1,at=1:dim(F)[1],1:3)
                  }
                  
                  
                }
                k<-k+1
                if(u !=0){
                  for(j in 1:u){
                    ordre<-ordre+1
                    if(ordre<=dim(F)[1]){
                      par(mai=c(0,0.3,0,0))
                      plot(c(0,0,0),xlab="",ylab="",xaxt="n",ylim=c(0,ymax),xaxt="n")
                      
                      GG<-ordre%%dim(F)[1]
                      if(GG==0){GG<-dim(F)[1]}
                      GG2<-(ordre/dim(F)[1])
                      if(floor(GG2)==GG2){GG2<-GG2-1}
                      GG2<-floor(GG2)
                      text((dim(F)[1]+dim(F)[1]-1)/2,ymax*0.9,paste("F",GG,GG2+2,sep=""),cex=2)
                      
                      par(mai=c(0,0,0,0))
                    }
                    else{
                      plot(c(0,0,0),xlab="",ylab="",xaxt="n",ylim=c(0,ymax),yaxt="n")
                      
                      GG<-ordre%%dim(F)[1]
                      if(GG==0){GG<-dim(F)[1]}
                      GG2<-(ordre/dim(F)[1])
                      if(floor(GG2)==GG2){GG2<-GG2-1}
                      GG2<-floor(GG2)
                      text((dim(F)[1]+dim(F)[1]-1)/2,ymax*0.9,paste("F",GG,GG2+2,sep=""),cex=2)
                      
                    }
                  }
                  u<-u-1
                }
              }
            }
            if(choice=="network"){
              
              couleur<-0	
              O<-x@network
              Omega<-x@network
              O[abs(O)<=nv]<-0
              O[abs(O)>nv]<-1
              
              require(igraph)
              if(is.null(gr)){gr<-rep(1,dim(O)[1])}
              if(is.null(color.vertex)){
                color.vertex<-rainbow(length(unique(gr)))
                couleur<-1
              }
              
              nom<-1:dim(O)[1]
              enle<-which(apply(O,1,sum)+apply(O,2,sum)==0)
              if(length(enle)!=0){
                nom<-nom[-enle]
                
                O<-O[-enle,-enle]
                
                if(!is.null(weight.node)){weight.node<-weight.node[-enle]}
              }
              
              if(!is.null(ini)){
                ini<-ini[which(ini[,1] %in% nom),]
              }
              nom2<-nom
              nom2<-label_v[nom]
              if(!is.null(weight.node)){
                size<-weight.node
              }else
              {
                size<-apply(O,1,sum)
              }
              
              size<-size/max(size)*10
              size[size<2]<-2 
              
              if(label.hub==TRUE){nom2[which(size<3)]<-NA}
              
              
              G<-graph.adjacency(O,weighted=TRUE)
              
              
              get.edgelist(G)->Q	
              
              Q[,1]<-nom[Q[,1]]
              Q[,2]<-nom[Q[,2]]
              size.ed<-rep(0,dim(Q)[1])
              
              for(i in 1:dim(Q)[1]){
                size.ed[i]<-abs(Omega[Q[i,1],Q[i,2]])
              }
              #fpl<-function(x){3*exp(8*x)/(14+exp(8*x))}
              size.ed<-size.ed/max(size.ed)
              #size.ed<-fpl(size.ed)
              #size.ed<-size.ed
              
              
              
              
              if(ani==TRUE){
                if(is.null(gr)){stop("Need groups")}
                T<-length(x@time_pt)
                require(animation)
                animation::ani.options(ani.height=taille[2],ani.width=taille[1],outdir = getwd())
                
                if(is.null(ini)){
                  ini<-position(x,nv)[]
                }
                
                
                #ini<-ini[which(ini[,1] %in% nom),]
                ini<-ini[,2:3]
                gr2<-gr[nom]
                
                animation::saveHTML({
                  for(i in c(0.999,0.99,0.98,0.97,0.96,0.95)){											
                    plot(G
                         ,layout=ini
                         ,vertex.size=size
                         ,edge.arrow.size=0.6*(1+size.ed)
                         ,edge.width=size.ed*5
                         ,edge.arrow.width=0.5*(1+size.ed)
                         #,edge.width=size.ed*5*edge.thickness
                         #,edge.arrow.size=edge.arrow.size*size.ed*edge.thickness
                         #,edge.arrow.width=edge.arrow.size*size.ed*edge.thickness
                         ,vertex.color=grey(i)
                         ,vertex.label.cex=1
                         ,edge.color=grey(i)
                         ,asp=0
                         ,vertex.label=nom2
                         ,vertex.frame.color=frame.color
                    )
                  }
                  for(i in 1:(T)){
                    
                    Ver.col<-rep(grey(0.95),length(nom))	
                    Edge.col<-rep(grey(0.95),dim(Q)[1])
                    mms<-20
                    PP<-1:mms
                    for(p in PP){	
                      coul<-col2rgb(color.vertex[i])
                      indi<-which(gr2==i)
                      Ver.col[indi]<-rgb(coul[1],coul[2],coul[3],alpha=(p-1)*255/(mms), maxColorValue = 255)
                      
                      
                      for(k in 1:i){
                        coul<-col2rgb(color.vertex[k])	
                        indi3<-which(gr[Q[,1]]==k & gr[Q[,2]]==i )
                        
                        Edge.col[indi3]<-rgb(coul[1],coul[2],coul[3],alpha=255-(p-1)*255/(mms), maxColorValue = 255)
                      }
                      
                      if(i!=T){
                        for(k in 1:i){
                          for(k2 in min((i+1),T):T){
                            coul<-col2rgb(color.vertex[k])	
                            indi3<-which(gr[Q[,1]]==k & gr[Q[,2]]==k2 )
                            
                            
                            
                            
                            al<-round(mms/(k2-k))
                            ald<-min(1+al*(i-k),mms)
                            if(k2==(i+1)){
                              alf<-mms
                            }
                            else{
                              alf<-min(al*(i-k+1),mms)}
                            alseq<-seq(25,255,length.out=mms)
                            
                            alphaseq2<-seq(alseq[ald],alseq[alf],length.out=mms)
                            
                            Edge.col[indi3]<-rgb(coul[1],coul[2],coul[3],alpha=alphaseq2[p], maxColorValue = 255)
                          }}}
                      
                      plot(G
                           ,layout=ini
                           ,vertex.size=size
                           #,vertex.size=size,edge.width=size.ed*5*edge.thickness
                           #,edge.arrow.size=edge.arrow.size*size.ed*edge.thickness
                           #,edge.arrow.width=edge.arrow.size*size.ed*edge.thickness
                           ,edge.arrow.size=0.6*(1+size.ed)
                           ,edge.width=size.ed*5
                           ,edge.arrow.size=0.5*(1+size.ed)
                           ,vertex.color=Ver.col
                           ,vertex.label.cex=1
                           ,edge.color=Edge.col
                           ,asp=0
                           ,vertex.label=nom2
                           ,vertex.frame.color=frame.color
                      )
                      if(length(unique(gr[nom])) >1){
                        legend(legend.position
                               ,horiz=horiz
                               ,pch=21
                               ,pt.bg=color.vertex[unique(gr[nom])[order(unique(gr[nom]))]]
                               ,col=frame.color
                               ,legend=paste("Cluster",unique(gr[nom])[order(unique(gr[nom]))])
                        )
                      } 
                    }
                    
                    
                    
                  }
                  
                  
                })
                
                
              }	
              else{
                if(length(unique(gr[nom])) >1){trr<-color.vertex[gr[Q[,2]]]}
                else{trr<-"grey"} 
                
                if(is.null(ini)){
                  L<-position(x,nv)[,2:3]
                  #maxL<-c(max(abs(L[,1])),max(abs(L[,2])))
                  #matMaxL<-matrix(rep(maxL,nrow(L)),ncol=2,byrow=T)
                  #L<-L/matMaxL
                  if(couleur==0){
                    
                    plot(G
                         ,layout=L
                         ,vertex.size=size
                         #,edge.arrow.size=edge.arrow.size*size.ed*edge.thickness
                         #,edge.width=size.ed*5*edge.thickness
                         #,edge.arrow.width=edge.arrow.size*size.ed*edge.thickness
                         ,edge.arrow.size=0.6*(1+size.ed)
                         ,edge.width=size.ed*5
                         ,edge.arrow.width=0.5*(1+size.ed)
                         ,vertex.color=color.vertex[nom]
                         ,vertex.label.cex=1
                         ,edge.color=trr
                         ,asp=0
                         ,vertex.label=nom2
                         ,vertex.frame.color=frame.color
                    )
                  }  
                  else{  
                    plot(G
                         ,layout=L
                         ,vertex.size=size
                         #,edge.width=size.ed*5*edge.thickness
                         #,edge.arrow.size=edge.arrow.size*size.ed*edge.thickness
                         #,edge.arrow.width=edge.arrow.size*size.ed*edge.thickness
                         ,edge.arrow.size=0.6*(1+size.ed)
                         ,edge.width=size.ed*5
                         ,edge.arrow.width=0.5*(1+size.ed)
                         ,vertex.color=color.vertex[gr[nom]]
                         ,vertex.label.cex=1
                         ,edge.color=trr
                         ,asp=0
                         ,vertex.label=nom2
                         ,vertex.frame.color=frame.color
                    )
                  }
                  
                  if(length(unique(gr[nom])) >1){
                    legend(legend.position
                           ,horiz=horiz
                           ,pch=21
                           ,pt.bg=color.vertex[unique(gr[nom])[order(unique(gr[nom]))]]
                           ,col=frame.color
                           ,legend=paste("Cluster",unique(gr[nom])[order(unique(gr[nom]))])
                    ) 
                  }
                }
                else{
                  L<-ini[,2:3]
                  if(couleur==0){
                    plot(G
                         ,layout=L
                         ,vertex.size=size
                         #,edge.arrow.size=edge.arrow.size*size.ed*edge.thickness
                         #,edge.width=size.ed*5*edge.thickness
                         #,edge.arrow.width=edge.arrow.size*size.ed*edge.thickness
                         ,edge.arrow.size=0.6*(1+size.ed)
                         ,edge.width=size.ed*5
                         ,edge.arrow.width=0.5*(1+size.ed)
                         ,vertex.color=color.vertex[nom]
                         ,vertex.label.cex=1
                         ,edge.color=trr
                         ,asp=0
                         ,vertex.label=nom2
                         ,vertex.frame.color=frame.color
                    )
                  }  
                  else{  
                    plot(G
                         ,layout=L
                         ,vertex.size=size
                         #,edge.width=size.ed*5*edge.thickness
                         #,edge.arrow.size=edge.arrow.size*size.ed*edge.thickness
                         #,edge.arrow.width=edge.arrow.size*size.ed*edge.thickness
                         ,edge.arrow.size=0.6*(1+size.ed)
                         ,edge.width=size.ed*5
                         ,edge.arrow.width=0.5*(1+size.ed)
                         ,vertex.color=color.vertex[gr[nom]]
                         ,vertex.label.cex=1
                         ,edge.color=trr
                         ,asp=0
                         ,vertex.label=nom2
                         ,vertex.frame.color=frame.color
                    )
                  }
                  if(length(unique(gr[nom])) >1){
                    legend(legend.position
                           ,horiz=horiz
                           ,pch=21
                           ,pt.bg=color.vertex[unique(gr[nom])[order(unique(gr[nom]))]]
                           ,col=frame.color
                           ,legend=paste("Cluster",unique(gr[nom])[order(unique(gr[nom]))])
                    ) 
                  }
                  L<-ini
                }
              }
            }	
          }
)


#' Find the neighborhood of a set of nodes.
#' 
#' Find the neighborhood of a set of nodes.
#' 
#' 
#' @aliases geneNeighborhood geneNeighborhood-methods
#' geneNeighborhood,network-method
#' @param net a network object
#' @param targets a vector containing the set of nodes
#' @param nv the level of cutoff. Defaut to 0.
#' @param order of the neighborhood. Defaut to `length(net@time_pt)-1`.
#' @param label_v vector defining the vertex labels.
#' @param ini using the ``position'' function, you can
#' fix the position of the nodes.
#' @param frame.color color of the frames.
#' @param label.hub logical ; if TRUE only the hubs are labeled.
#' @param graph plot graph of the network. Defaults to `TRUE`.
#' @param names return names of the neighbors. Defaults to `FALSE`.
#' 
#' @return The neighborhood of the targeted genes.
#' @author Nicolas Jung, Frédéric Bertrand , Myriam Maumy-Bertrand.
#' @references Jung, N., Bertrand, F., Bahram, S., Vallat, L., and
#' Maumy-Bertrand, M. (2014). Cascade: a R-package to study, predict and
#' simulate the diffusion of a signal through a temporal gene network.
#' \emph{Bioinformatics}, btt705.
#' 
#' Vallat, L., Kemper, C. A., Jung, N., Maumy-Bertrand, M., Bertrand, F.,
#' Meyer, N., ... & Bahram, S. (2013). Reverse-engineering the genetic
#' circuitry of a cancer cell with predicted intervention in chronic
#' lymphocytic leukemia. \emph{Proceedings of the National Academy of
#' Sciences}, 110(2), 459-464.
#' @keywords methods
#' @examples
#' 
#' data(Selection)
#' data(network)
#' #A nv value can chosen using the cutoff function
#' nv=.11 
#' EGR1<-which(match(Selection@name,"EGR1")==1)
#' P<-position(network,nv=nv)
#' 
#' geneNeighborhood(network,targets=EGR1,nv=nv,ini=P,
#' label_v=network@name)
#' 
#' @exportMethod geneNeighborhood
setMethod("geneNeighborhood","network"
          ,function(net
                    ,targets
                    ,nv=0
                    ,order=length(net@time_pt)-1
                    ,label_v=NULL
                    ,ini=NULL
                    ,frame.color="white"
                    ,label.hub=FALSE
                    #,edge.arrow.size=0.7
                    #,edge.thickness=1
                    ,graph=TRUE
                    ,names=FALSE
          ){
            require(igraph)
            O<-net@network
            Omega<-net@network
            O[abs(O)<=nv]<-0
            O[abs(O)>nv]<-1
            G<-graph.adjacency(O,weighted=TRUE)
            couleur<-colorRamp(c("red","blue"))
            color<-rep(grey(0.92),length(V(G)))
            if(is.null(label_v)){label_v<-1:dim(O)[1]}
            K<-vector("list",order)
            for(j in order:1){
              
              #if(.Platform$OS.type=="unix"){
              #N<-neighborhood(G, order=j, nodes=targets-1, mode=c( "out"))
              #}else{
              N<-neighborhood(G, order=j, nodes=targets, mode=c( "out"))
              #}
              K[[j]]<-N
              gg<-length(targets)
              
              for(i in 1:gg){
                #if(.Platform$OS.type=="unix"){
                #color[N[[i]]+1]<-rgb(couleur((j-1)*1/(order-1)),alpha=255,maxColorValue=255)
                #}else{
                color[N[[i]]]<-rgb(couleur((j-1)*1/(order-1)),alpha=255,maxColorValue=255)
                
                #}
                
              }
            }
            if(graph==TRUE){
              color[targets]<-"green"
              plot(net
                   ,nv=nv
                   ,ini=ini
                   ,color.vertex=color
                   ,frame.color=frame.color
                   ,label.hub=label.hub
                   ,label_v=label_v
              )
              legend("topright"
                     ,legend=paste("order",1:order)
                     ,pch=16
                     ,col=rgb(couleur((1:order-1)*1/(order-1)),maxColorValue=255)
              )
            }
            ind1<-K[[1]][[1]]
            neighbors<-list(net@name[ind1])
            for(ord in 2:order){
              neighbors[[ord]]<-list()
              for(nod in 1:gg){
                neighbPrec<-K[[ord-1]][[nod]]
                neighbCur<-K[[ord]][[nod]]
                ind<-neighbCur[!(neighbCur %in% neighbPrec)]
                neighbors[[ord]][[nod]]<-net@name[ind]            
              }
            }
            if(names){
              return(neighbors)
            }
            else{
              return(K)
            }
          }
)


#' Choose the best cutoff
#' 
#' Allows estimating the best cutoff, in function of the scale-freeness of the
#' network.  For a sequence of cutoff, the corresponding p-value is then
#' calculated.
#' 
#' 
#' @aliases cutoff cutoff-methods cutoff,network-method
#' @param Omega a network object
#' @param sequence (optional) a vector corresponding to the sequence of cutoffs 
#' that will be tested.
#' @param x_min (optional) an integer ; only values over x_min are further 
#' retained for performing the test.
#' 
#' @return A list containing two objects : \item{p.value}{the p values
#' corresponding to the sequence of cutoff} \item{p.value.inter}{the smoothed p
#' value vector, using the loess function}
#' @author Nicolas Jung, Frédéric Bertrand , Myriam Maumy-Bertrand.
#' @references Jung, N., Bertrand, F., Bahram, S., Vallat, L., and
#' Maumy-Bertrand, M. (2014). Cascade: a R-package to study, predict and
#' simulate the diffusion of a signal through a temporal gene network.
#' \emph{Bioinformatics}, btt705.
#' 
#' Vallat, L., Kemper, C. A., Jung, N., Maumy-Bertrand, M., Bertrand, F.,
#' Meyer, N., ... & Bahram, S. (2013). Reverse-engineering the genetic
#' circuitry of a cancer cell with predicted intervention in chronic
#' lymphocytic leukemia. \emph{Proceedings of the National Academy of
#' Sciences}, 110(2), 459-464.
#' @keywords methods
#' @examples
#' 
#' \donttest{
#' 	data(network)
#' 	cutoff(network)
#' 	#See vignette for more details
#' }
#' 
#' @exportMethod cutoff
setMethod("cutoff","network",function(Omega,sequence=NULL,x_min=0){
  
  plfit<-function(x=VGAM::rpareto(1000,10,2.5)
                  ,method="limit"
                  ,value=c()
                  ,finite=FALSE
                  ,nowarn=FALSE
                  ,nosmall=FALSE
  ){
    #init method value to NULL	
    vec <- c() ; sampl <- c() ; limit <- c(); fixed <- c()
    ###########################################################################################
    #
    #  test and trap for bad input
    #
    switch(method
           ,range = vec <- value
           ,sample = sampl <- value
           ,limit = limit <- value
           ,fixed = fixed <- value
           ,argok <- 0
    )
    
    if(exists("argok")){stop("(plfit) Unrecognized method")}
    
    if( !is.null(vec) && (!is.vector(vec) || min(vec)<=1 || length(vec)<=1) ){
      print(paste("(plfit) Error: ''range'' argument must contain a vector > 1; using default."))
      vec <- c()
    }
    if( !is.null(sampl) && ( !(sampl==floor(sampl)) ||  length(sampl)>1 || sampl<2 ) ){
      print(paste("(plfit) Error: ''sample'' argument must be a positive integer > 2; using default."))
      sample <- c()
    }
    if( !is.null(limit) && (length(limit)>1 || limit<1) ){
      print(paste("(plfit) Error: ''limit'' argument must be a positive >=1; using default."))
      limit <- c()
    }
    if( !is.null(fixed) && (length(fixed)>1 || fixed<=0) ){
      print(paste("(plfit) Error: ''fixed'' argument must be a positive >0; using default."))
      fixed <- c() 
    }   
    
    #  select method (discrete or continuous) for fitting and test if x is a vector
    fdattype<-"unknow"
    if( is.vector(x,"numeric") ){ fdattype<-"real" }
    if( all(x==floor(x)) && is.vector(x) ){ fdattype<-"integer" }
    if( all(x==floor(x)) && min(x) > 1000 && length(x) > 100 ){ fdattype <- "real" }
    if( fdattype=="unknow" ){ stop("(plfit) Error: x must contain only reals or only integers.") }
    
    #
    #  end test and trap for bad input
    #
    ###########################################################################################
    
    ###########################################################################################
    #   CONTINUOUS CASE
    #  estimate xmin and alpha in the continuous case
    #
    if( fdattype=="real" ){
      xmins <- sort(unique(x))
      xmins <- xmins[-length(xmins)]
      
      if( !is.null(limit) ){
        xmins <- xmins[xmins>=limit]
      } 
      if( !is.null(fixed) ){
        xmins <- fixed
      }
      if( !is.null(sampl) ){ 
        xmins <- xmins[unique(round(seq(1,length(xmins),length.out=sampl)))]
      }
      #Vecteur pour stocker les valeurs de D
      dat <- rep(0,length(xmins))
      #Echantillon trie
      z <- sort(x)
      
      #Boucle sur toutes les valeurs de xmin pour lesquelles on calcule D
      for( xm in 1:length(xmins) ){
        #xmin courant
        xmin <- xmins[xm]
        #Exces
        z    <- z[z>=xmin]
        n    <- length(z)
        # estimate alpha-1 using direct MLE
        a    <- n/sum(log(z/xmin))
        # truncate search if nosmall is selected
        if( nosmall ){
          if((a-1)/sqrt(n) > 0.1){
            dat <- dat[1:(xm-1)]
            print(paste("(plfit) Warning : xmin search truncated beyond",xmins[xm-1]))
            break
          }
        }
        # compute KS statistic
        cx   <- c(0:(n-1))/n
        cf   <- 1-(xmin/z)^a
        dat[xm] <- max(abs(cf-cx))
      }
      #min de D
      D     <- min(dat)
      #argmin de D
      xmin  <- xmins[min(which(dat<=D))]
      #exces et estimations finaux
      z     <- x[x>=xmin]
      n     <- length(z)
      alpha <- 1 + n/sum(log(z/xmin))
      
      if( finite ){
        # finite-size correction
        alpha <- alpha*(n-1)/n+1/n 
      }
    }
    #
    #  end continuous case
    #
    ###########################################################################################
    
    ###########################################################################################
    #  DISCRETE CASE
    #  estimate xmin and alpha in the discrete case
    #
    if( fdattype=="integer" ){
      
      if( is.null(vec) ){ vec<-seq(1.5,3.5,.01) } # covers range of most practical scaling parameters
      zvec <- VGAM::zeta(vec)
      #On enleve la plus grande valeur
      xmins <- sort(unique(x))
      xmins <- xmins[-length(xmins)]
      
      if( !is.null(limit) ){
        limit <- round(limit)
        xmins <- xmins[xmins>=limit]
      } 
      
      if( !is.null(fixed) ){
        xmins <- fixed
      }
      
      if( !is.null(sampl) ){ 
        xmins <- xmins[unique(round(seq(1,length(xmins),length.out=sampl)))]
      }
      
      if( is.null(xmins) || length(xmins) < 2){
        stop("(plfit) error: x must contain at least two unique values.")
      }
      
      if(length(which(xmins==0) > 0)){
        stop("(plfit) error: x must not contain the value 0.")
      }
      
      xmax <- max(x)
      dat <- matrix(0,nrow=length(xmins),ncol=2)
      z <- x
      for( xm in 1:length(xmins) ){
        xmin <- xmins[xm]
        z    <- z[z>=xmin]
        n    <- length(z)
        # estimate alpha via direct maximization of likelihood function
        #  vectorized version of numerical calculation
        # matlab: zdiff = sum( repmat((1:xmin-1)',1,length(vec)).^-repmat(vec,xmin-1,1) ,1);
        if(xmin==1){
          zdiff <- rep(0,length(vec))
        }else{
          zdiff <- apply(rep(t(1:(xmin-1)),length(vec))^-t(kronecker(t(array(1,xmin-1)),vec)),2,sum)
        }
        # matlab: L = -vec.*sum(log(z)) - n.*log(zvec - zdiff);
        L <- -vec*sum(log(z)) - n*log(zvec - zdiff);
        I <- which.max(L)
        # compute KS statistic
        fit <- cumsum((((xmin:xmax)^-vec[I])) / (zvec[I] - sum((1:(xmin-1))^-vec[I])))
        cdi <- cumsum(hist(z,c(min(z)-1,(xmin+.5):xmax,max(z)+1),plot=FALSE)$counts/n)
        dat[xm,] <- c(max(abs( fit - cdi )),vec[I])
      }
      D     <- min(dat[,1])
      I     <- which.min(dat[,1])
      xmin  <- xmins[I]
      n     <- sum(x>=xmin)
      alpha <- dat[I,2]
      
      if( finite ){
        alpha <- alpha*(n-1)/n+1/n # finite-size correction
      }
      
    }
    #
    #  end discrete case
    #
    ###########################################################################################
    
    #  return xmin, alpha and D in a list
    return(list(xmin=xmin,alpha=alpha,D=D))
  }
  
  ###########################################################################################
  ###########################################################################################
  ###########################################################################################
  ###########################################################################################
  ###########################################################################################
  ###########################################################################################
  plpva<-function(x=VGAM::rpareto(1000,10,2.5),xmin=1,method="limit",value=c(),Bt=1000,quiet=FALSE,vec=seq(1.5,3.5,.01)){
    #init method value to NULL  
    sampl <- c() ; limit <- c()
    ###########################################################################################
    #
    #  test and trap for bad input
    #
    switch(method, 
           sample = sampl <- value,
           limit = limit <- value,
           argok <- 0)
    
    if(exists("argok")){stop("(plvar) Unrecognized method")}
    
    if( !is.null(vec) && (!is.vector(vec) || min(vec)<=1 || length(vec)<=1) ){
      print(paste("(plvar) Error: ''range'' argument must contain a vector > 1; using default."))
      vec <- c()
    }
    if( !is.null(sampl) && ( !(sampl==floor(sampl)) ||  length(sampl)>1 || sampl<2 ) ){
      print(paste("(plvar) Error: ''sample'' argument must be a positive integer > 2; using default."))
      sample <- c()
    }
    if( !is.null(limit) && (length(limit)>1 || limit<1) ){
      print(paste("(plvar) Error: ''limit'' argument must be a positive >=1; using default."))
      limit <- c()
    }
    if( !is.null(Bt) && (!is.vector(Bt) || Bt<=1 || length(Bt)>1) ){
      print(paste("(plvar) Error: ''Bt'' argument must be a positive value > 1; using default."))
      vec <- c()
    }
    
    #  select method (discrete or continuous) for fitting and test if x is a vector
    fdattype<-"unknown"
    if( is.vector(x,"numeric") ){ fdattype<-"real" }
    if( all(x==floor(x)) && is.vector(x) ){ fdattype<-"integer" }
    if( all(x==floor(x)) && min(x) > 1000 && length(x) > 100 ){ fdattype <- "real" }
    if( fdattype=="unknown" ){ stop("(plfit) Error: x must contain only reals or only integers.") }
    
    N   <- length(x)
    nof <- rep(0,Bt)
    
    if( !quiet ){
      print("Power-law Distribution, parameter error calculation")
      print("Warning: This can be a slow calculation; please be patient.")
      print(paste(" n =",N,"xmin =",xmin,"- reps =",Bt,fdattype))
    } 
    #
    #  end test and trap for bad input
    #
    ###########################################################################################
    
    ###########################################################################################
    #
    #  estimate xmin and alpha in the continuous case
    #
    if( fdattype=="real" ){
      
      # compute D for the empirical distribution
      z     <- x[x>=xmin];     nz   <- length(z)
      y     <- x[x<xmin];      ny   <- length(y)
      alpha <- 1 + nz/sum(log(z/xmin))
      cz    <- (0:(nz-1))/nz
      cf    <- 1-(xmin/sort(z))^(alpha-1)
      gof   <- max(abs(cz-cf))
      pz    <- nz/N
      
      # compute distribution of gofs from semi-parametric bootstrap
      # of entire data set with fit
      for(B in 1:length(nof)){
        # semi-parametric bootstrap of data
        n1 <- sum(runif(N)>pz)
        q1 <- y[sample(ny,n1,replace=TRUE)]
        n2 <- N-n1
        q2 <- xmin*(1-runif(n2))^(-1/(alpha-1))
        q  <- sort(c(q1,q2))
        
        # estimate xmin and alpha via GoF-method
        qmins <- sort(unique(q))
        qmins <- qmins[-length(qmins)]
        if(!is.null(limit)){
          qmins<-qmins[qmins<=limit] 
        } 
        if(!is.null(sampl)){ 
          qmins <- qmins[unique(round(seq(1,length(qmins),length.out=sampl)))]
        }
        dat <-rep(0,length(qmins))
        for(qm in 1:length(qmins)){
          qmin <- qmins[qm]
          zq   <- q[q>=qmin]
          nq   <- length(zq)
          a    <- nq/sum(log(zq/qmin))
          cq   <- (0:(nq-1))/nq
          cf   <- 1-(qmin/zq)^a
          dat[qm] <- max(abs(cq-cf))
        }
        if(!quiet){
          print(paste(B,sum(nof[1:B]>=gof)/B))
        }
        # store distribution of estimated gof values
        nof[B] <- min(dat)
      } 
    }
    
    ###########################################################################################
    #
    #  estimate xmin and alpha in the discrete case
    #
    if( fdattype=="integer" ){
      
      if( is.null(vec) ){ vec<-seq(1.5,3.5,.01) } # covers range of most practical scaling parameters
      zvec <- VGAM::zeta(vec)
      
      # compute D for the empirical distribution
      z     <- x[x>=xmin];     nz   <- length(z);    xmax <- max(z)
      y     <- x[x<xmin];      ny   <- length(y)
      
      if(xmin==1){
        zdiff <- rep(0,length(vec))
      }else{
        zdiff <- apply(rep(t(1:(xmin-1)),length(vec))^-t(kronecker(t(array(1,xmin-1)),vec)),2,sum)
      }
      # matlab: L = -vec.*sum(log(z)) - n.*log(zvec - zdiff);
      L <- -vec*sum(log(z)) - nz*log(zvec - zdiff);
      I <- which.max(L)
      alpha <- vec[I]
      
      fit <- cumsum((((xmin:xmax)^-alpha))
                    / (zvec[I]
                       - (if (xmin == 1) 0 else sum((1:(xmin-1))^-alpha))))
      
      hist = aggregate(z, list(z), length)
      cdi = rep(0, xmax - xmin + 1)
      cdi[hist$Group.1 - xmin + 1] = hist$x / nz
      cdi = cumsum(cdi)
      
      gof <- max(abs( fit - cdi ))
      pz  <- nz/N
      
      mmax <- 20*xmax
      pdf <- c(rep(0,xmin-1),(((xmin:mmax)^-alpha))
               / (zvec[I]
                  - (if (xmin == 1) 0 else sum((1:(xmin-1))^-alpha))))
      cdf <- cbind(1:(mmax+1),c(cumsum(pdf),1))
      
      # compute distribution of gofs from semi-parametric bootstrap
      # of entire data set with fit
      for(B in 1:Bt){
        # semi-parametric bootstrap of data
        n1 <- sum(runif(N)>pz)
        q1 <- y[sample(ny,n1,replace=TRUE)]
        n2 <- N-n1
        # simple discrete zeta generator
        r2 <- sort(runif(n2));  d <- 1
        q2 <- rep(0,n2);        k <- 1
        for(i in xmin:(mmax+1)){
          while((d <= length(r2)) && (r2[d]<=cdf[i,2])){d <- d+1}
          if (k <= d - 1)
            q2[k:(d-1)] <- i
          k <- d
          if( k > n2 ){break}
        } 
        q <-c(q1,q2)
        ########################################
        # estimate xmin and alpha via GoF-method
        qmins <- sort(unique(q))
        qmins <- qmins[-length(qmins)]
        if(!is.null(limit)){
          qmins <- qmins[qmins<=limit]
        }
        if(!is.null(sampl)){
          qmins <- qmins[sort(unique(round(seq(1,length(qmins),length.out=sampl))))]
        }        
        dat   <- rep(0,length(qmins))
        qmax  <- max(q) 
        zq    <- q
        
        if (length(qmins) > 0)
          for(qm in 1:length(qmins)){
            qmin <- qmins[qm]
            zq   <- zq[zq>=qmin]
            nq    <- length(zq)
            if(nq>1){
              # vectorized version of numerical calculation
              if(qmin==1){
                #WARNING
                #zdiff <- rep(1,length(vec))
                #correction added the 6/10/2009 (following Naoki Masuda for plfit) 
                zdiff <- rep(0,length(vec))
              }else{
                zdiff <- apply(rep(t(1:(qmin-1)),length(vec))^-t(kronecker(t(array(1,qmin-1)),vec)),2,sum)
              }
              L <- -vec*sum(log(zq)) - nq*log(zvec - zdiff);
              I <- which.max(L)
              # compute KS statistic
              fit <- cumsum((((qmin:qmax)^-vec[I]))
                            / (zvec[I]
                               - (if (qmin == 1) 0 else sum((1:(qmin-1))^-vec[I]))))
              
              hist = aggregate(zq, list(zq), length)
              cdi = rep(0, qmax - qmin + 1)
              cdi[hist$Group.1 - qmin + 1] = hist$x / nq
              cdi = cumsum(cdi)
              
              dat[qm] <- max(abs( fit - cdi ))
            }else{
              dat[qm] <- -Inf
            }
          }
        if(!quiet){
          print(paste(B,"-",sum(nof[1:B]>=gof)/B))
        }
        # -- store distribution of estimated gof values
        nof[B] <- min(c(dat, Inf))
        
        
      }
      
      ####################################
      
    }
    #
    #  end discrete case
    #
    ###########################################################################################
    #  return p and gof in a list
    p <- sum(nof>=gof)/length(nof)
    return(list(p=p,gof=gof))
  }
  
  sequence_test<-sequence
  
#   if(is.null(x_min)){
#     x_min<-round(dim(Omega@network)[1]*0.02)
#   }
   if(is.null(sequence_test)){
    sequence_test<-seq(0,min(max(abs(Omega@network*0.9)),0.4),length.out=10)
   }
#   
 #install_github('poweRlaw', 'csgillespie')
  #cutoff courant
  cc<-0
  #compteur
  u<-0
  #pvaleur
  f<-rep(0,length(sequence_test))
  
  #Boucle sur les valeurs candidates pour le cutoff
print("This calculation may be long")
  for(cc in sequence_test){
   
    u<-u+1
    print(paste(u,length(sequence_test),sep="/"))
    O<-Omega@network
    #On garde les liens d'intensite superieure au cutoff
    O[abs(O)>cc]<-1
    O[abs(O)<=cc]<-0
    #nombre de liens pour chaque gene
    liste<-apply(O,1,sum)+1
    if(length(which(liste>round(x_min)+1))<4){break}
    #On prend les genes ayant plus d'un lien
    xmin = plpva(liste,quiet=TRUE)$p
    f[u]<-xmin
  }
  #index du premier element superieur a 0.25
#   p<-which(sequence_test>0.25)[1]
#   #On ne conserve que ceux qui sont inferieurs a 0.25
#   f<-f[1:p]
print(f)
  K<-1:length(f)
  f2<-f
  #interpolation des points de f pour lisser
  f<-predict(loess(f~K))
  par(mar=c(5,4,0.2,0.2))
  plot(sequence_test
       ,f
       ,xlab="cutoff sequence"
       ,ylab="scale-freeness test p-value"
       ,type="l"
       ,lwd=2
       ,ylim=c(min(f)-0.02,max(f))
  )
  abline(h=0.1,col="red")
  rect(0.10,0.10,0.15,1,col=rgb(0,1,0,0.5))
  rect(0.05,0.10,0.10,1,col=rgb(0.5,1,0,0.4))
  rect(-0.5,0.10,0.05,1,col=rgb(1,0,0,0.4))
  rect(0.15,0.10,0.5,1,col=rgb(0.5,1,0,0.4))
  abline(h=0.1,col="red",lwd=3)
  legend("bottomright"
         ,lty=c(1,0,0,0)
         ,col=c("red"
                ,rgb(0,1,0,0.5)
                ,rgb(0.5,1,0,0.4)
                ,rgb(1,0,0,0.4))
         ,pch=c(NA,15,15,15)
         ,legend=c("p-value=0.1:  above this line, scale-freeness may be assumed"
                   ,"best area of choice (determined by simulation)"
                   ,"less recommended area of choice (determined by simulation)"
                   ,"area of choice to be avoided (determined by simulation)")
         ,lwd=c(3,5,5,5)
         ,cex=1
  )
  
  return(list(p.value=f2,p.value.inter=f,sequence=sequence_test)	)
}
)


#' Some basic criteria of comparison between actual and inferred network.
#' 
#' Allows comparison between actual and inferred network.
#' 
#' 
#' @name compare-methods
#' @aliases compare-methods compare compare,network,network,numeric-method
#' @docType methods
#' @return A vector containing : sensibility, predictive positive value, and
#' the F-score
#' @section Methods: \describe{
#' \item{list("signature(Net = \"network\", Net_inf = \"network\", nv =
#' \"numeric\")")}{}
#' }
#' @param Net A network object containing the
#' actual network.
#' @param Net_inf A network object containing the inferred
#' network.
#' @param nv A number that indicates at which level of cutoff the
#' comparison should be done.
#' @author Nicolas Jung, Frédéric Bertrand , Myriam Maumy-Bertrand.
#' @references Jung, N., Bertrand, F., Bahram, S., Vallat, L., and
#' Maumy-Bertrand, M. (2014). Cascade: a R-package to study, predict and
#' simulate the diffusion of a signal through a temporal gene network.
#' \emph{Bioinformatics}, btt705.
#' 
#' Vallat, L., Kemper, C. A., Jung, N., Maumy-Bertrand, M., Bertrand, F.,
#' Meyer, N., ... & Bahram, S. (2013). Reverse-engineering the genetic
#' circuitry of a cancer cell with predicted intervention in chronic
#' lymphocytic leukemia. \emph{Proceedings of the National Academy of
#' Sciences}, 110(2), 459-464.
#' @examples
#' 
#' data(Net)
#' data(Net_inf)
#' 
#' #Comparing true and inferred networks
#' F_score=NULL
#' 
#' #Here are the cutoff level tested
#' test.seq<-seq(0,max(abs(Net_inf@network*0.9)),length.out=200)
#' for(u in test.seq){
#' 	F_score<-rbind(F_score,Cascade::compare(Net,Net_inf,u))
#' }
#' matplot(test.seq,F_score,type="l",ylab="criterion value",xlab="cutoff level",lwd=2)
#' 
#' @exportMethod compare
setMethod("compare",c("network","network","numeric"),function(Net,
                                                    Net_inf,
                                                    nv=1){
  N1<-Net@network
  N2<-Net_inf@network
  N1[abs(N1)>0]<-1
  N1[abs(N1)<=0]<-0
  N2[abs(N2)>nv]<-1
  N2[abs(N2)<=nv]<-0
  Nb<-sum(N1)
  sens<-0
  if(sum(N1==1)){
    sens<-sum((N1-2*N2)==-1)/sum(N1==1)
  }
  spe<-0
  if(sum(N2==1)){
    spe<-sum((N1-2*N2)==-1)/sum(N2==1)
  }
  Fscore<-0
  Fscore12<-0
  Fscore2<-0
  if(sens !=0){
    Fscore<-2*spe*sens/(spe+sens)
    Fscore12<-(1+0.5^2)*spe*sens/(spe/4+sens)
    Fscore2<-(1+2^2)*spe*sens/(spe*4+sens)
    return(c(sens,spe,Fscore,Fscore12,Fscore2))
  }
  return(c(sens,spe,Fscore,Fscore12,Fscore2))
}
)

Try the Cascade package in your browser

Any scripts or data that you put into this service are public.

Cascade documentation built on Nov. 28, 2022, 5:10 p.m.