Skip to content

Commit 6ce198b

Browse files
committed
update logging
1 parent 693e688 commit 6ce198b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

PyComplexHeatmap/annotations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1967,7 +1967,7 @@ def plot_annotations(
19671967
# print(ax.figure.get_size_inches())
19681968
self._set_label_kws(self.label_kws, self.ticklabels_kws)
19691969
if self.verbose >= 1:
1970-
print("Starting plotting HeatmapAnnotations")
1970+
print("Plotting HeatmapAnnotations")
19711971
if ax is None:
19721972
self.ax = plt.gca()
19731973
else:

PyComplexHeatmap/clustermap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2358,7 +2358,7 @@ def plot_legends(self, ax=None):
23582358

23592359
def plot(self, ax=None, subplot_spec=None, row_order=None, col_order=None):
23602360
if self.verbose >= 1:
2361-
print("Starting plotting..")
2361+
print("Starting..")
23622362
if ax is None:
23632363
self.ax = plt.gca()
23642364
else:
@@ -2371,12 +2371,12 @@ def plot(self, ax=None, subplot_spec=None, row_order=None, col_order=None):
23712371
self._define_right_axes()
23722372
if row_order is None:
23732373
if self.verbose >= 1:
2374-
print("Starting calculating row orders..")
2374+
print("Calculating row orders..")
23752375
self._reorder_rows()
23762376
row_order = self.row_order
23772377
if col_order is None:
23782378
if self.verbose >= 1:
2379-
print("Starting calculating col orders..")
2379+
print("Calculating col orders..")
23802380
self._reorder_cols()
23812381
col_order = self.col_order
23822382
self.plot_matrix(row_order=row_order, col_order=col_order)

0 commit comments

Comments
 (0)