987241ea99c99b93aea51bb63bdf579f927e9d2b kent Wed Oct 7 13:46:09 2015 -0700 Fixing copyright on some old essentially public domain files. diff --git src/inc/flydna.h src/inc/flydna.h index bdbd2a0..8f1d86b 100644 --- src/inc/flydna.h +++ src/inc/flydna.h @@ -1,32 +1,31 @@ -/***************************************************************************** - * 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) * - *****************************************************************************/ -/* flydna.h - routines for accessing fly genome and cDNA sequences. */ +/* flydna.h - routines for accessing fly genome and cDNA sequences. + * + * This file is copyright 2000 Jim Kent, but license is hereby + * granted for all use - public, private or commercial. */ + #ifndef FLYDNA_H #define FLYDNA_H void flyLoadNt4Genome(struct nt4Seq ***retNt4Seq, int *retNt4Count); /* Load up entire packed fly genome into memory. */ void flyFreeNt4Genome(struct nt4Seq ***pNt4Seq); /* Free up packed fly genome. */ void flyChromNames(char ***retNames, int *retNameCount); /* Get list of fly chromosome names. */ boolean flyCdnaSeq(char *name, struct dnaSeq **retDna, struct wormCdnaInfo *retInfo); /* Get a single fly cDNA sequence. Optionally (if retInfo is non-null) get additional * info about the sequence. */ char *flyFeaturesDir(); /* Return the features directory. (Includes trailing slash.) */ FILE *flyOpenGoodAli(); /* Opens good alignment file and reads signature. * (You can then cdaLoadOne() it.) */ #endif /* FLYDNA_H */