987241ea99c99b93aea51bb63bdf579f927e9d2b kent Wed Oct 7 13:46:09 2015 -0700 Fixing copyright on some old essentially public domain files. diff --git src/inc/fuzzyFind.h src/inc/fuzzyFind.h index c54ee8a..64a732f 100644 --- src/inc/fuzzyFind.h +++ src/inc/fuzzyFind.h @@ -1,20 +1,18 @@ -/***************************************************************************** - * Copyright (C) 2000 Jim Kent. This source code may be freely used * - * for personal, academic, and non-profit purposes. Commercial use * - * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) * - *****************************************************************************/ +/* This file is copyright 2000 Jim Kent, but license is hereby + * granted for all use - public, private or commercial. */ + /* fuzzyFind.h - This is the interface to the fuzzyFind * DNA sequence aligner. This just returns a single * alignment - the one the algorithm thinks is best. * The algorithm is heuristic, but pretty good. (See * comments in the fuzzyFind.c file for more details.) It * is not good for finding distant homologies, but it * will fairly reliably align a somewhat noisy cDNA * sequence with genomic sequence. * * The main data structure is the ffAli - which is * a node in a doubly linked list. The finder algorithm * returns a pointer to the leftmost node in the list. * When you're done with the alignment you can dispose * of it via ffFreeAli. *