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/synMap/createBinMap.c src/hg/synMap/createBinMap.c index d88ff60..592f6ac 100644 --- src/hg/synMap/createBinMap.c +++ src/hg/synMap/createBinMap.c @@ -1,23 +1,26 @@ +/* Copyright (C) 2011 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #include "common.h" #include "synMap.h" #include "binMap.h" void usage() { errAbort("createBinMap - using an all against all synMap from Lior at\n" "Berkeley or Sanja and Robert from UCSC create a mapping from\n" "genomeA bits of size N to all the bits of genomeB that map to it.\n" "The idea is to have a particular piece of a genome and then find\n" "all the pieces of the other genome that align to it.\n" "usage:\n\t" "createBinMap <fileNameIn> <fileNameOut> <genome {A,B}> <reference size>\n"); } int main(int argc, char *argv[]) { errAbort("Not Done yet!\n"); if(argc != 5) usage(); return 0; }