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/genePredToMafFrames/splitMultiMappings.c src/hg/genePredToMafFrames/splitMultiMappings.c index 964eec3..6c546a0 100644 --- src/hg/genePredToMafFrames/splitMultiMappings.c +++ src/hg/genePredToMafFrames/splitMultiMappings.c @@ -1,17 +1,20 @@ /* splitMultiMappings - split genes that mapped to multiple locations or have rearranged * exons into separate gene objects. */ + +/* Copyright (C) 2006 The Regents of the University of California + * See README in this or parent directory for licensing information. */ #include "common.h" #include "splitMultiMappings.h" #include "orgGenes.h" /* maximum size allowed for an intron, large ones are assumed to be multiple * alignments and split */ #define MAX_INTRON_SIZE 2000000 static struct cdsExon *getGeneRestExon(struct cdsExon *exon, struct gene **geneRestRet) /* get the corresponding exon in the geneRest; cloning gene if * it hasn't already been done. */ { if (*geneRestRet == NULL) *geneRestRet = geneClone(exon->gene);