From f1f0df1e32e1892fa07ae616bc76ac215d3c5dec Mon Sep 17 00:00:00 2001 From: Calvin Date: Wed, 6 Mar 2013 16:58:47 -0500 Subject: removed debugging statements --- quikr_train.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'quikr_train.py') diff --git a/quikr_train.py b/quikr_train.py index b86afb9..5089e2a 100755 --- a/quikr_train.py +++ b/quikr_train.py @@ -48,10 +48,8 @@ def quikr_train(input_file_location, kmer): uname = platform.uname()[0] if uname == "Linux": - print "Detected Linux" input_file = Popen(["./probabilities-by-read-linux", str(kmer), input_file_location, kmer_file_name], stdout=PIPE) elif uname == "Darwin": - print "Detected Mac OS X" input_file = Popen(["./probabilities-by-read-osx", str(kmer), input_file_location, kmer_file_name]) # load and normalize the matrix by dividing each element by the sum of it's column. -- cgit v1.2.3