You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: misc/cluster_benchmark.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@
39
39
labels_true_t.append(line[1])
40
40
labels_pred.append(line[2])
41
41
labels_true_g.append(tsp[line[1]])
42
-
print("homogeneity score with (sample reads and human transcriptome) is: {:.2f}%".format(metrics.homogeneity_score(labels_true_t, labels_pred) *100))
43
-
print("completeness score with (sample reads and human transcriptome) is: {:.2f}%".format(metrics.completeness_score(labels_true_t, labels_pred) *100))
44
-
print("homogeneity score with (sample reads and human gene) is: {:.2f}%".format(metrics.homogeneity_score(labels_true_g, labels_pred) *100))
45
-
print("completeness score with (sample reads and human gene) is: {:.2f}%".format(metrics.completeness_score(labels_true_g, labels_pred) *100))
42
+
print("homogeneity score with transcriptome is: {:.2f}%".format(metrics.homogeneity_score(labels_true_t, labels_pred) *100))
43
+
print("completeness score with transcriptome is: {:.2f}%".format(metrics.completeness_score(labels_true_t, labels_pred) *100))
44
+
print("homogeneity score with gene is: {:.2f}%".format(metrics.homogeneity_score(labels_true_g, labels_pred) *100))
45
+
print("completeness score with gene is: {:.2f}%".format(metrics.completeness_score(labels_true_g, labels_pred) *100))
0 commit comments