987241ea99c99b93aea51bb63bdf579f927e9d2b kent Wed Oct 7 13:46:09 2015 -0700 Fixing copyright on some old essentially public domain files. diff --git src/inc/unfin.h src/inc/unfin.h index dd2d11e..797ae5b 100644 --- src/inc/unfin.h +++ src/inc/unfin.h @@ -1,31 +1,30 @@ -/***************************************************************************** - * 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) * - *****************************************************************************/ -/* unfin - things to help handle unfinished (fragmented) DNA sequences). */ +/* unfin - things to help handle unfinished (fragmented) DNA sequences). + * + * This file is copyright 2000 Jim Kent, but license is hereby + * granted for all use - public, private or commercial. */ + #ifndef UNFIN_H #define UNFIN_H enum {contigPad = 800,}; /* How may N's between contigs. */ struct contigTree /* A hierarchical structure of contigs. A forest of these is * maintained by the system. (No need to free these.) */ { struct contigTree *next; /* Sibling. */ struct contigTree *children; /* Sub-contigs. */ struct contigTree *parent; /* Parent of contig. */ char *id; /* Ensemble ID. (Not allocated here.) */ int submitLength; /* Number of bases in submission. */ int submitOffset; /* Offset relative to parent in genBank submission. */ int orientation; /* +1 or -1. Strand relative to parent.*/ int corder; /* Order of contig in genBank submission. */ int browserOffset; /* Offset relative to parent for browser, ordered by ensemble, with * ensContigPad N's between each contig. */ int browserLength; /* Size including padding. */ }; #endif /* UNFIN_H */