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/soTerm.c src/hg/lib/soTerm.c index 9dc9f8e..b3a6ab2 100644 --- src/hg/lib/soTerm.c +++ src/hg/lib/soTerm.c @@ -1,17 +1,20 @@ /* soTerm - Sequence Ontology terms that we use for compatibility with Ensembl & others. */ +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #include "common.h" #include "soTerm.h" char *soTermToString(enum soTerm termNumber) /* Translate termNumber to its string equivalent. Do not modify or free result. */ { switch (termNumber) { case regulatory_region_variant : return "regulatory_region_variant"; break; case stop_retained_variant : return "stop_retained_variant"; break; case exon_loss : return "exon_loss"; break; case splice_acceptor_variant : return "splice_acceptor_variant"; break; case splice_donor_variant : return "splice_donor_variant"; break; case complex_transcript_variant : return "complex_transcript_variant"; break; case stop_lost : return "stop_lost"; break;