aboutsummaryrefslogtreecommitdiff
path: root/quikr.py
diff options
context:
space:
mode:
authorCalvin <calvin@EESI>2013-02-27 13:23:41 -0500
committerCalvin <calvin@EESI>2013-02-27 13:23:41 -0500
commit0732d29b06f67ec8fb54958ff453699b4f0bdb4d (patch)
treeae72c5916af6bf047e51d8fa9e4cf9a005d0b76c /quikr.py
parente7473956c15a9881174d63a99cac735e9482038e (diff)
Update multifasta_to_otu.py for new quikr function
* Removed an old comment from the quikr function * Load the trained matrix from multifasta main. * This will reduce load times as we only need to call it once
Diffstat (limited to 'quikr.py')
-rwxr-xr-xquikr.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/quikr.py b/quikr.py
index 065590d..a6b8bd0 100755
--- a/quikr.py
+++ b/quikr.py
@@ -85,9 +85,6 @@ def quikr(input_fasta_location, trained_matrix, kmer, default_lambda):
counts = default_lambda * counts
counts = np.concatenate([np.zeros(1), counts])
- # load our trained matrix
-
-
#form the k-mer sensing matrix
trained_matrix = trained_matrix * default_lambda;
trained_matrix = np.flipud(trained_matrix);