987241ea99c99b93aea51bb63bdf579f927e9d2b kent Wed Oct 7 13:46:09 2015 -0700 Fixing copyright on some old essentially public domain files. diff --git src/inc/xenalign.h src/inc/xenalign.h index 21455b7..e2834b3 100644 --- src/inc/xenalign.h +++ src/inc/xenalign.h @@ -1,41 +1,40 @@ -/***************************************************************************** - * 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) * - *****************************************************************************/ -/* xenalign.h - Do cross-species DNA alignments from scratch. */ +/* xenalign.h - Do cross-species DNA alignments from scratch. + * + * This file is copyright 2000 Jim Kent, but license is hereby + * granted for all use - public, private or commercial. */ + #ifndef XENALIGN_H #define XENALIGN_H #ifndef NT4_H #include "nt4.h" #endif int xenAlignSmall(DNA *query, int querySize, DNA *target, int targetSize, FILE *f, boolean printExtraAtEnds); /* Use dynamic programming to do small scale * (querySize * targetSize < 10,000,000) * alignment of DNA. Write results into f.*/ void xenStitch(char *inName, FILE *out, int stitchMinScore, boolean compactOutput); /* Do the big old stitching run putting together contents of inName * into contigs in out. Create output in newer format. */ void xenStitcher(char *inName, FILE *out, int stitchMinScore, boolean compactOutput); /* Do the big old stitching run putting together contents of inName * into contigs in out. Create output in older format. */ void xenAlignBig(DNA *query, int qSize, DNA *target, int tSize, FILE *f, boolean forHtml); /* Do a big alignment - one that has to be stitched together. * Write results into f. */ void xenShowAli(char *qSym, char *tSym, char *hSym, int symCount, FILE *f, int qOffset, int tOffset, char qStrand, char tStrand, int maxLineSize); /* Print alignment and HMM symbols maxLineSize bases at a time to file. */ void xenAlignWorm(DNA *query, int qSize, FILE *f, boolean forHtml); /* Do alignment against worm genome. */ #endif /* XENALIGN_H */