diff options
author | Calvin <calvin@EESI> | 2013-02-27 13:23:41 -0500 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-02-27 13:23:41 -0500 |
commit | 0732d29b06f67ec8fb54958ff453699b4f0bdb4d (patch) | |
tree | ae72c5916af6bf047e51d8fa9e4cf9a005d0b76c /quikr.py | |
parent | e7473956c15a9881174d63a99cac735e9482038e (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-x | quikr.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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); |