a8c1fc078328e6589cce6dda9090b85e66e77332
kent
  Sun Dec 19 08:47:46 2021 -0800
Making tsvMatrix a private structure.

diff --git src/inc/vMatrix.h src/inc/vMatrix.h
index cea0189..dc35cac 100644
--- src/inc/vMatrix.h
+++ src/inc/vMatrix.h
@@ -51,16 +51,19 @@
     {
     struct memMatrix *next;
     int xSize, ySize;	/* Dimensions */
     double **rows;	/* There are xSize items in each of ySize rows */
     char **xLabels, **yLabels;  /* Arrays of labels */
     char *centerLabel;	/* Label to put in corner between row and column labels */
     struct lm *lm;
     };
 
 void memMatrixFree(struct memMatrix **pMatrix);
 /* Free up memory matrix */
 
 struct memMatrix *memMatrixFromTsv(char *fileName);
 /* Return a memMatrix based on file */
 
+void memMatrixToTsv(struct memMatrix *m, char *fileName);
+/* Write out memMatrix to file. */
+
 #endif /* VMATRIX_H */