rm(list = ls())
library(MEGENA)
## Loading required package: doParallel
## Loading required package: foreach
## Loading required package: iterators
## Loading required package: parallel
## Loading required package: igraph
##
## Attaching package: 'igraph'
## The following objects are masked from 'package:stats':
##
## decompose, spectrum
## The following object is masked from 'package:base':
##
## union
library(Seurat)
## Attaching SeuratObject
library(ggplot2)
library(cowplot)
library(Matrix)
Read in Seurat Object file.
obj = readRDS("Output/SeuratObject.RDS")
n.cores <- 14;
doPar <- TRUE;
method = "spearman"
FDR.cutoff = 0.05
module.pval = 0.05
hub.pval = 0.05
As an example, we will construct MEGENA network for AD cells in cluster 5.
clusterid = 5
obj.cls = obj[,(Idents(obj) == clusterid & obj@meta.data$pathologic.diagnosis.of.AD == 'YES')]
# remove unexpressed genes
min.cells = ncol(obj.cls) * 0.05 # require at least 5% of cells expressed (~ 100 cells)
cnt = GetAssayData(obj.cls,slot = "counts")
nc = rowSums(cnt >= 1E-320,na.rm = TRUE)
ii = which(nc >= min.cells) # index of expressed genes
print(length(ii))
## [1] 5853
# remove noisy cells
min.genes = 100;
ng = colSums(cnt[ii,] > 1E-320,na.rm = TRUE)
jj = which(ng >= min.genes)
print(length(jj))
## [1] 2047
datExpr = GetAssayData(obj.cls,slot = "data")[ii,jj]
Prepare output directory.
outdir = paste0('MEGENA/Cluster_', clusterid)
if(!file.exists(outdir)) dir.create(outdir, recursive = TRUE)
setwd(outdir)
Calculate pairwise correlation.
ijw <- calculate.correlation(datExpr = as.matrix(datExpr), doPerm = 10, method = method, FDR.cutoff = FDR.cutoff)
## i = 1
## i = 2
## i = 3
## i = 4
## i = 5
## i = 6
## i = 7
## i = 8
## i = 9
## i = 10
## - outputting correlation results...
Prep for parallelization prior to the PFN.
if (doPar)
{
cl = parallel::makeCluster(n.cores)
doParallel::registerDoParallel(cl)
# check how many workers are there
cat(paste("number of cores to use:", foreach::getDoParWorkers(), "\n"))
}
## number of cores to use: 14
Calculate PFN.
el <- calculate.PFN(ijw[, 1:3], doPar = doPar, num.cores = n.cores)
## ####### PFN Calculation commences ########
## [1] "427 out of 17553 has been included."
## [1] "676 out of 17553 has been included."
## [1] "866 out of 17553 has been included."
## [1] "1038 out of 17553 has been included."
## [1] "1180 out of 17553 has been included."
## [1] "1300 out of 17553 has been included."
## [1] "1424 out of 17553 has been included."
## [1] "1526 out of 17553 has been included."
## [1] "1621 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 2745"
## [1] "2799 out of 17553 has been included."
## [1] "2891 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 1482"
## [1] "3867 out of 17553 has been included."
## [1] "3931 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 1367"
## [1] "4971 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 1344"
## [1] "6003 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 1084"
## [1] "6867 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 856"
## [1] "7546 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 644"
## [1] "8078 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 458"
## [1] "8465 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 397"
## [1] "8802 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 281"
## [1] "9038 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 265"
## [1] "9278 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 224"
## [1] "9474 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 153"
## [1] "9615 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 188"
## [1] "9781 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 140"
## [1] "9908 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 103"
## [1] "10005 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 117"
## [1] "10114 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 106"
## [1] "10217 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 89"
## [1] "10299 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 97"
## [1] "10395 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 100"
## [1] "10492 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 89"
## [1] "10579 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 87"
## [1] "10664 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 59"
## [1] "10721 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 63"
## [1] "10783 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 77"
## [1] "10858 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 57"
## [1] "10915 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 70"
## [1] "10985 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 52"
## [1] "11037 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 63"
## [1] "11097 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 62"
## [1] "11158 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 60"
## [1] "11218 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 46"
## [1] "11264 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 60"
## [1] "11323 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 46"
## [1] "11369 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 51"
## [1] "11419 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 42"
## [1] "11460 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 42"
## [1] "11502 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 52"
## [1] "11553 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 44"
## [1] "11597 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 48"
## [1] "11645 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 45"
## [1] "11690 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 46"
## [1] "11735 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 54"
## [1] "11789 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 29"
## [1] "11818 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 47"
## [1] "11865 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 37"
## [1] "11900 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 39"
## [1] "11939 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 37"
## [1] "11975 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 38"
## [1] "12013 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 39"
## [1] "12052 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 35"
## [1] "12087 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 40"
## [1] "12126 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 41"
## [1] "12167 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 34"
## [1] "12200 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 38"
## [1] "12238 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 33"
## [1] "12271 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 34"
## [1] "12305 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 32"
## [1] "12337 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 27"
## [1] "12364 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 31"
## [1] "12395 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 33"
## [1] "12428 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 37"
## [1] "12465 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 31"
## [1] "12496 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 33"
## [1] "12529 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 32"
## [1] "12561 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 35"
## [1] "12596 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 31"
## [1] "12627 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 33"
## [1] "12660 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 28"
## [1] "12688 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 30"
## [1] "12718 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 24"
## [1] "12742 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "12760 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 26"
## [1] "12786 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 23"
## [1] "12809 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 34"
## [1] "12843 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 32"
## [1] "12875 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 24"
## [1] "12898 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 26"
## [1] "12924 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 26"
## [1] "12950 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 26"
## [1] "12976 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 20"
## [1] "12996 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 22"
## [1] "13018 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 32"
## [1] "13050 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 21"
## [1] "13071 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "13088 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 25"
## [1] "13113 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 32"
## [1] "13144 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 22"
## [1] "13166 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 20"
## [1] "13186 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 22"
## [1] "13208 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "13223 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 24"
## [1] "13247 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 27"
## [1] "13274 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "13291 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "13308 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "13323 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 31"
## [1] "13354 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 27"
## [1] "13381 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 19"
## [1] "13400 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 27"
## [1] "13427 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 20"
## [1] "13447 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 22"
## [1] "13469 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 23"
## [1] "13492 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 16"
## [1] "13508 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 20"
## [1] "13528 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "13541 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 22"
## [1] "13563 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 19"
## [1] "13582 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "13596 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "13613 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 21"
## [1] "13634 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 24"
## [1] "13658 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "13676 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 23"
## [1] "13699 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "13716 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 16"
## [1] "13732 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "13750 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "13768 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 20"
## [1] "13788 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 23"
## [1] "13811 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 23"
## [1] "13834 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "13848 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "13861 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "13878 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "13896 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "13910 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "13924 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 22"
## [1] "13946 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 16"
## [1] "13962 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 19"
## [1] "13981 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "13998 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 21"
## [1] "14019 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 19"
## [1] "14037 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "14054 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 19"
## [1] "14073 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "14091 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "14108 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14120 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "14135 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14145 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "14163 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14173 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 20"
## [1] "14193 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14205 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "14220 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "14228 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "14246 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 16"
## [1] "14262 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14275 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "14292 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 19"
## [1] "14311 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14324 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "14341 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 21"
## [1] "14362 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 19"
## [1] "14381 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "14399 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14411 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14423 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "14434 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14444 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14454 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "14461 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "14476 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14486 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14498 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14511 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "14522 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14535 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14545 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "14559 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14569 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "14576 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14586 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 16"
## [1] "14602 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14612 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14625 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "14640 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "14649 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "14664 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14676 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14686 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "14695 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14708 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 17"
## [1] "14725 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "14736 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14748 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "14757 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14770 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14782 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "14791 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 16"
## [1] "14807 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "14815 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "14829 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "14837 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14849 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "14855 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14867 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 18"
## [1] "14885 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14895 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "14905 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "14917 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "14930 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "14937 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "14950 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "14959 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "14967 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "14976 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "14990 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15001 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "15013 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15023 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15032 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15043 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15053 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15063 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15073 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15081 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15087 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15096 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15103 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15112 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15123 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "15135 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15143 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15150 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "15163 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 15"
## [1] "15178 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15183 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15187 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15194 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15202 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15209 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15220 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15226 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15237 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15243 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15254 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15265 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "15277 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15283 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15289 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15293 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 2"
## [1] "15295 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "15308 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15316 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15326 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15334 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15338 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15343 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 3"
## [1] "15346 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15352 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15359 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15363 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15370 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15375 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15384 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15391 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15399 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15403 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15412 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15419 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15429 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15438 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15442 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15449 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15455 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15460 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15468 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15472 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15479 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15488 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15492 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15501 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15506 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15516 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15526 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 13"
## [1] "15539 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 3"
## [1] "15542 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15546 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 3"
## [1] "15549 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 16"
## [1] "15565 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15571 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15581 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15588 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15596 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15607 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15616 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15624 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15633 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15640 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15646 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15651 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 3"
## [1] "15654 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15660 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15667 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15674 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15682 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15692 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 10"
## [1] "15702 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15711 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15720 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "15732 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 14"
## [1] "15746 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15754 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15758 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15763 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15769 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15774 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 3"
## [1] "15777 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 4"
## [1] "15781 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15792 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15797 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 2"
## [1] "15799 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15804 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15811 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 11"
## [1] "15822 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 3"
## [1] "15825 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15832 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15840 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 9"
## [1] "15849 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15855 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15863 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15870 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 12"
## [1] "15882 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15888 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 3"
## [1] "15891 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 6"
## [1] "15897 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 2"
## [1] "15899 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15906 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15911 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 7"
## [1] "15918 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 5"
## [1] "15923 out of 17553 has been included."
## [1] "Performing parallel quality checks on 14000"
## [1] "Qualified edges: 8"
## [1] "15931 out of 17553 has been included."
## [1] "Performing parallel quality checks on 5641"
## [1] "Qualified edges: 0"
## [1] "15931 out of 17553 has been included."
write.table(el, file = "MEGENA_Network.txt", sep = "\t", row.names = FALSE, col.names = TRUE, quote = FALSE)
rm(ijw)
Do multiscale clustering.
g <- graph.data.frame(el,directed = F)
MEGENA.output <- do.MEGENA(g,
mod.pval = module.pval, hub.pval = hub.pval, remove.unsig = TRUE,
min.size = 20,#max.size = vcount(g)/2,
doPar = TRUE, num.cores = n.cores, n.perm = 100,
save.output = TRUE)
## Commence multiscale clustering....
## Calculating distance metric and similarity...
## iteration:1
## - #. tested:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:2
## - assess improvements over compactness
## iteration:2
## - #. tested:2
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,
## - #. of split:72
## - assess improvements over compactness
## iteration:3
## - #. tested:74
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,
## - #. of split:54
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,
## - #. of split:11
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,
## - #. of split:11
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,
## - #. of split:11
## - assess improvements over compactness
## - k=2,3,4,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,
## - #. of split:6
## - assess improvements over compactness
## - k=2,3,4,5,6,7,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,
## - #. of split:1
## - k=2,3,4,5,6,7,8,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,
## - #. of split:3
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,8,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,
## - #. of split:1
## - k=2,3,4,5,6,7,8,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,
## - #. of split:1
## iteration:4
## - #. tested:123
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,
## - #. of split:3
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,
## - #. of split:4
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,
## - #. of split:1
## - k=2,3,4,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:0
## - k=2,3,4,5,6,7,8,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,
## - #. of split:5
## - assess improvements over compactness
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,
## - #. of split:10
## - assess improvements over compactness
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,
## - #. of split:0
## - k=2,3,4,5,6,7,8,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## iteration:5
## - #. tested:55
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,4,5,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,8,
## - #. of split:0
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,
## - #. of split:1
## - k=2,3,4,5,6,7,
## - #. of split:0
## - k=2,3,4,5,6,
## - #. of split:0
## - k=2,3,4,
## - #. of split:1
## - k=2,3,4,5,6,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,
## - #. of split:2
## - assess improvements over compactness
## - k=2,3,4,5,6,7,
## - #. of split:1
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,
## - #. of split:1
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## iteration:6
## - #. tested:9
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,
## - #. of split:1
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,
## - #. of split:0
## - k=2,3,4,
## - #. of split:0
## - k=2,3,4,5,
## - #. of split:0
## Commence MHA...
## Calculating hub significance.....
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## permutation no.:
## Identifying similar scales....
## - Calculating within-module degree profiles.....
## K.max:20
## Cluster scales based on degree profiles...
## k = 2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,
## - identified: 2
## Identifying hub genes significant in each scale level...
## Assigning module/KDA membership
## Calculating node topological properties
Save MEGENA analysis object in a file.
save(MEGENA.output, file = "MEGENA_output.RData")
sessionInfo()
## R version 4.0.3 (2020-10-10)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: CentOS Linux 7 (Core)
##
## Matrix products: default
## BLAS/LAPACK: /hpc/packages/minerva-centos7/intel/parallel_studio_xe_2019/compilers_and_libraries_2019.0.117/linux/mkl/lib/intel64_lin/libmkl_gf_lp64.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## attached base packages:
## [1] parallel stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] Matrix_1.3-4 cowplot_1.1.1 ggplot2_3.3.5 SeuratObject_4.0.2
## [5] Seurat_4.0.5 MEGENA_1.3.7 igraph_1.2.8 doParallel_1.0.16
## [9] iterators_1.0.13 foreach_1.5.1
##
## loaded via a namespace (and not attached):
## [1] Rtsne_0.15 colorspace_2.0-2 deldir_1.0-6
## [4] ellipsis_0.3.2 class_7.3-17 modeltools_0.2-23
## [7] ggridges_0.5.3 mclust_5.4.7 spatstat.data_2.1-0
## [10] leiden_0.3.7 listenv_0.8.0 farver_2.1.0
## [13] graphlayouts_0.7.1 ggrepel_0.9.1 flexmix_2.3-17
## [16] fansi_0.5.0 codetools_0.2-16 splines_4.0.3
## [19] robustbase_0.93-7 knitr_1.31 polyclip_1.10-0
## [22] jsonlite_1.7.2 ica_1.0-2 cluster_2.1.0
## [25] kernlab_0.9-29 png_0.1-7 uwot_0.1.10
## [28] spatstat.sparse_2.0-0 sctransform_0.3.2 ggforce_0.3.3
## [31] shiny_1.7.1 compiler_4.0.3 httr_1.4.2
## [34] assertthat_0.2.1 fastmap_1.1.0 lazyeval_0.2.2
## [37] later_1.3.0 tweenr_1.0.2 htmltools_0.5.2
## [40] tools_4.0.3 gtable_0.3.0 glue_1.5.0
## [43] reshape2_1.4.4 RANN_2.6.1 dplyr_1.0.7
## [46] Rcpp_1.0.7 scattermore_0.7 vctrs_0.3.8
## [49] nlme_3.1-149 fpc_2.2-9 ggraph_2.0.5
## [52] lmtest_0.9-38 xfun_0.22 stringr_1.4.0
## [55] globals_0.14.0 mime_0.12 miniUI_0.1.1.1
## [58] lifecycle_1.0.1 irlba_2.3.3 goftest_1.2-3
## [61] future_1.22.1 DEoptimR_1.0-8 MASS_7.3-53
## [64] zoo_1.8-9 scales_1.1.1 tidygraph_1.2.0
## [67] spatstat.core_2.3-0 spatstat.utils_2.2-0 promises_1.2.0.1
## [70] RColorBrewer_1.1-2 yaml_2.2.1 reticulate_1.22
## [73] pbapply_1.5-0 gridExtra_2.3 rpart_4.1-15
## [76] reshape_0.8.8 stringi_1.7.5 rlang_0.4.12
## [79] pkgconfig_2.0.3 prabclus_2.3-2 matrixStats_0.61.0
## [82] evaluate_0.14 lattice_0.20-41 tensor_1.5
## [85] ROCR_1.0-11 purrr_0.3.4 patchwork_1.1.1
## [88] htmlwidgets_1.5.4 tidyselect_1.1.1 parallelly_1.28.1
## [91] RcppAnnoy_0.0.19 plyr_1.8.6 magrittr_2.0.1
## [94] R6_2.5.1 generics_0.1.1 DBI_1.1.1
## [97] withr_2.4.2 mgcv_1.8-33 pillar_1.6.4
## [100] fitdistrplus_1.1-6 abind_1.4-5 survival_3.2-7
## [103] nnet_7.3-14 tibble_3.1.6 future.apply_1.8.1
## [106] crayon_1.4.2 KernSmooth_2.23-17 utf8_1.2.2
## [109] spatstat.geom_2.3-0 plotly_4.10.0 rmarkdown_2.6
## [112] viridis_0.6.2 grid_4.0.3 data.table_1.14.2
## [115] digest_0.6.28 diptest_0.75-7 xtable_1.8-4
## [118] tidyr_1.1.4 httpuv_1.6.3 stats4_4.0.3
## [121] munsell_0.5.0 viridisLite_0.4.0