# HG changeset patch # User bzonnedda # Date 1499415255 14400 # Node ID 2e8281109e7946021cc1f1231e2bcca2382c133b # Parent 629681116b5f91769307f3225e1acaeb9c45df65 Uploaded diff -r 629681116b5f -r 2e8281109e79 conifer_functions.py --- a/conifer_functions.py Fri Jul 07 04:04:25 2017 -0400 +++ b/conifer_functions.py Fri Jul 07 04:14:15 2017 -0400 @@ -202,7 +202,7 @@ def smooth(self, window = 15, padded = False): #todo, fix the padding here if self.isGenotype: - print "Warning: the data in this rpkm_data container are single genotype values. Smoothing will have no effect!" + print("Warning: the data in this rpkm_data container are single genotype values. Smoothing will have no effect!") return self.rpkm if window > 0: @@ -249,7 +249,7 @@ """Initialize an rpkm_reader instance. Specify the location of the data file""" if rpkm_fn == None: - print "Must specify RPKM HDF5 file!" + print("Must specify RPKM HDF5 file!") return 0 # set up file access # self.h5file = openFile(rpkm_fn, mode='r')