From 899b82178d3bcc365b07447a5686635c5856c39e Mon Sep 17 00:00:00 2001 From: Don Pellegrino Date: Mon, 25 Jan 2010 23:32:14 +0000 Subject: Added MatAssembly commands to write the cached data to the matrix structure. --- 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. */ -- cgit v0.8.3.1-22-g547a