dab89c1682e091dfa3780ce95359ebea9f6b7d52
braney
  Thu May 18 09:49:17 2017 -0700
add licensing info to optimalLeaf library

diff --git src/optimalLeaf/Tree.cc src/optimalLeaf/Tree.cc
index 0bd725e..5cb00ec 100644
--- src/optimalLeaf/Tree.cc
+++ src/optimalLeaf/Tree.cc
@@ -1,15 +1,21 @@
+/* This code provided by Ziv Bar-Joseph with the explicit understanding that 
+ * no licensing is required for it to be used in the UCSC Genome Browser
+ * as long as reference is made to this paper:
+ * https://www.ncbi.nlm.nih.gov/pubmed/12801867
+ */
+
 // --------------------------------------------------------------------
 //             Tree.cc
 // data structure for the hierarchical clustering tree.
 // Used to compute initial and optimal similarities, and to manipulate
 // (based on the optimal ordering) the ordering the tree nodes descendants.
 // -------------------------------------------------------------------------
 
 #include <iostream>
 #include "Tree.hh"
 #include "general.hh"
 
 // generate a leaf (tree with only one node)
 Tree::Tree(int index,float **m) {
 
   mat = m;