# HG changeset patch # User rnateam # Date 1482620916 18000 # Node ID b8e32e577597c5fb41aab6d587a617e10844b1d2 # Parent ed8c7191b322aeeae441ab31338975febd9bfdb3 planemo upload for repository https://github.com/eteriSokhoyan/galaxytools/tree/branchForIterations/tools/GraphClust/CollectResults commit 9bc3c9b613d106098a78e16534897c88a3738c07 diff -r ed8c7191b322 -r b8e32e577597 evaluation.py --- a/evaluation.py Thu Dec 22 09:06:48 2016 -0500 +++ b/evaluation.py Sat Dec 24 18:08:36 2016 -0500 @@ -1,6 +1,7 @@ import glob from os import system import re +from sklearn import metrics def sh(script): system("bash -c '%s'" % script) @@ -46,3 +47,29 @@ toWrite += listOfClasses[i] + "\t" + listOfClusters[i] + '\n' with open("RESULTS/fullTab.tabular", "w") as full: full.write(toWrite) + + +listOfClasses = [] +listOfClusters = [] +pattern = re.compile("^RF.*$") + + +if len(listOfClasses) > 0 and pattern.match(str(listOfClasses[0])): + with open("RESULTS/fullTab.tabular", "r") as tabF: + for line in tabF.readlines(): + listOfClasses.append(line.split()[0]) + listOfClusters.append(line.split()[1]) + + completeness_score = metrics.completeness_score(listOfClasses, listOfClusters) + homogeneity_score = metrics.homogeneity_score(listOfClasses, listOfClusters) + adjusted_rand_score = metrics.adjusted_rand_score(listOfClasses, listOfClusters) + adjusted_mutual_info_score = metrics.adjusted_mutual_info_score(listOfClasses, listOfClusters) + v_measure_score = metrics.v_measure_score(listOfClasses, listOfClusters) + + toWrite = "completeness_score : " + str(completeness_score) + "\n" + "homogeneity_score : " + str(homogeneity_score) + "\n" + "adjusted_rand_score : " +str(adjusted_rand_score) + "\n" + "adjusted_mutual_info_score : " + str(adjusted_mutual_info_score)+ "\n" + "v_measure_score : " + str(v_measure_score) + +else: + toWrite = "completeness_score : NA \nhomogeneity_score : NA \nadjusted_rand_score : NA \nadjusted_mutual_info_score : NA \nv_measure_score : NA" + +with open("RESULTS/evaluation.txt", "w") as fOut: + fOut.write(toWrite) diff -r ed8c7191b322 -r b8e32e577597 glob_report.xml --- a/glob_report.xml Thu Dec 22 09:06:48 2016 -0500 +++ b/glob_report.xml Sat Dec 24 18:08:36 2016 -0500 @@ -2,6 +2,7 @@ graphclust-wrappers perl-array-utils + scikit-learn @@ -64,6 +65,7 @@ +