diff options
author | Calvin <calvin@EESI> | 2013-03-06 16:58:47 -0500 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-03-06 16:58:47 -0500 |
commit | f1f0df1e32e1892fa07ae616bc76ac215d3c5dec (patch) | |
tree | 1be5bfb3e41a049ed9e131449a03f1181765abc9 /quikr_train.py | |
parent | 0fc232a2f5347b9b2577c2597c9344ae7f4be540 (diff) |
removed debugging statements
Diffstat (limited to 'quikr_train.py')
-rwxr-xr-x | quikr_train.py | 2 |
1 files changed, 0 insertions, 2 deletions
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. |