Skip to content

Commit

Permalink
removed test prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Leily Rabbani committed Jan 19, 2021
1 parent 859ee27 commit 4ade3de
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions deeptools/computeMatrixOperations.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,6 @@ def rbindMatrices(hm, args):
It's assumed that the same samples are present in both and in the exact same order
"""
print("B")
hm2 = heatmapper.heatmapper()
hm.read_matrix_file(args.matrixFile[0])
for idx in range(1, len(args.matrixFile)):
Expand All @@ -513,7 +512,6 @@ def rbindMatrices(hm, args):
appendMatrix(hm, hm2, group)
hm.parameters["group_labels"].append(group)

print("C")
# Update the group boundaries attribute
hm.matrix.group_labels = hm.parameters['group_labels']
hm.matrix.group_boundaries = hm.parameters['group_boundaries']
Expand Down Expand Up @@ -797,8 +795,6 @@ def main(args=None):
hm = heatmapper.heatmapper()
if not isinstance(args.matrixFile, list):
hm.read_matrix_file(args.matrixFile)
print("A")

if args.command == 'info':
printInfo(hm)
elif args.command == 'dataRange':
Expand Down

0 comments on commit 4ade3de

Please sign in to comment.