e70152e44cc66cc599ff6b699eb8adc07f3e656a kent Sat May 24 21:09:34 2014 -0700 Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment. diff --git src/hg/lib/pslReader.c src/hg/lib/pslReader.c index de50475..125db87 100644 --- src/hg/lib/pslReader.c +++ src/hg/lib/pslReader.c @@ -1,17 +1,20 @@ /* pslReader - object to read psl objects from database tables or files. */ +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #include "common.h" #include "pslReader.h" #include "jksql.h" #include "hdb.h" #include "linefile.h" #include "psl.h" static char *createString = "CREATE TABLE %s (\n" "%-s" /* Optional bin */ "matches int unsigned not null, # Number of bases that match that aren't repeats\n" "misMatches int unsigned not null, # Number of bases that don't match\n" "repMatches int unsigned not null, # Number of bases that match but are part of repeats\n" "nCount int unsigned not null, # Number of 'N' bases\n"