changeset 29:2e8281109e79 draft

Uploaded
author bzonnedda
date Fri, 07 Jul 2017 04:14:15 -0400
parents 629681116b5f
children ecd88ec22fe3
files conifer_functions.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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')