summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormutantturkey <mutantturke@gmail.com>2013-03-18 10:11:25 -0400
committermutantturkey <mutantturke@gmail.com>2013-03-18 10:11:25 -0400
commite0abcffc2fba1e69dfc2bc51020dd6c013e38697 (patch)
treec4806bd2b467928f88b876b90a7ded9100a58862
parenta5918b4422a4f21505f25517a0e505e1bff0e81b (diff)
remove checking, seems like the sml code isn't returning sane values
-rwxr-xr-xsrc/python/quikr.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/python/quikr.py b/src/python/quikr.py
index 857cd25..1fa27c7 100755
--- a/src/python/quikr.py
+++ b/src/python/quikr.py
@@ -57,9 +57,6 @@ def train_matrix(input_file_location, kmer):
"""
input_file = Popen(["bash", "-c", "probabilities-by-read " + str(kmer) + " " + input_file_location + " <(generate_kmers 6)"], stdout=PIPE)
- input_file.poll()
- if input_file.returncode != 0:
- raise ValueError, "probbilties-by-read did not execute properly"
# load and normalize the matrix by dividing each element by the sum of it's column.
# also do some fancy rotations so that it works properly with quikr
@@ -102,9 +99,6 @@ def calculate_estimated_frequencies(input_fasta_location, trained_matrix, kmer,
# We use the count program to count
count_input = Popen(["count-kmers", "-r", str(kmer), "-1", "-u", input_fasta_location], stdout=PIPE)
- count_input.poll()
- if count_input.returncode != 0:
- raise ValueError, "count-kmers did not execute properly"
# load the output of our count program and form a probability vector from the counts
counts = np.loadtxt(count_input.stdout)