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/utils/fastqMottTrim/fastqMottTrim.c src/utils/fastqMottTrim/fastqMottTrim.c index 1cb6c33..61b8c3d 100644 --- src/utils/fastqMottTrim/fastqMottTrim.c +++ src/utils/fastqMottTrim/fastqMottTrim.c @@ -1,23 +1,26 @@ /* fastqMottTrim - mott. */ /* Applies Richard Mott's trimming algorithm to the */ /* three prime end of each sequence. */ /* Cuttoff is the lowest desired quality score in phred scores, */ /* Set by default to a 50% chance of mismatch. */ /* Base corresponds to any additions to the ASCII quality scheme. */ /* Minlength specifies the minimum sequence length for the output. */ /* For paired and unpaired data. */ + +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "options.h" #include "dystring.h" int clMinLength = 30; boolean clIsIllumina = FALSE; int clCutoff = 3; void usage() /* Explain usage and exit. */ { errAbort( "fastqMottTrim - applies Mott's trimming algorithm to a fastq file\n"