author | Don Pellegrino <don@drexel.edu> | 2010-01-25 23:32:14 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2010-01-25 23:32:14 (GMT) |
commit | 899b82178d3bcc365b07447a5686635c5856c39e (patch) (side-by-side diff) | |
tree | f9dbf6f94af4a8a4b19a8baf3bfb2412e0dd4614 | |
parent | e784472107b1d5964cf7a16bdd9fd78e1667e367 (diff) | |
download | exp007-899b82178d3bcc365b07447a5686635c5856c39e.zip exp007-899b82178d3bcc365b07447a5686635c5856c39e.tar.gz exp007-899b82178d3bcc365b07447a5686635c5856c39e.tar.bz2 |
Added MatAssembly commands to write the cached data to the matrix structure.
-rw-r--r-- | src/assign/assign_blast_scores.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/assign/assign_blast_scores.c b/src/assign/assign_blast_scores.c index b81caf8..7c0493b 100644 --- a/src/assign/assign_blast_scores.c +++ b/src/assign/assign_blast_scores.c @@ -23,6 +23,9 @@ assign_blast_scores (hid_t file_id) MatSetValue (M, 12, 8, 12.8, INSERT_VALUES); + MatAssemblyBegin (M, MAT_FINAL_ASSEMBLY); + MatAssemblyEnd (M, MAT_FINAL_ASSEMBLY); + /* * Write the contents of the matrix to a HDF5 file. */ |