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/inc/tilingPath.h src/hg/inc/tilingPath.h index 87c40a7..ad5b7d3 100644 --- src/hg/inc/tilingPath.h +++ src/hg/inc/tilingPath.h @@ -1,19 +1,22 @@ /* tilingPath.h was originally generated by the autoSql program, which also * generated tilingPath.c and tilingPath.sql. This header links the database and * the RAM representation of objects. */ +/* Copyright (C) 2002 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #ifndef TILINGPATH_H #define TILINGPATH_H struct tilingPath /* A tiling path of clones through a chromosome */ { struct tilingPath *next; /* Next in singly linked list. */ char *chrom; /* Chromosome name: chr1, chr2, etc. */ char *accession; /* Clone accession or ? or GAP */ char *clone; /* Clone name in BAC library */ char *contig; /* Contig (or gap size) */ int chromIx; /* Number of clone in tiling path starting chrom start */ }; void tilingPathStaticLoad(char **row, struct tilingPath *ret);