a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/jointalign.c src/lib/jointalign.c index 9ae167c..c95b83e 100644 --- src/lib/jointalign.c +++ src/lib/jointalign.c @@ -1,25 +1,24 @@ /* jointalign.c - routines for printing a joint alignment in html. * * This file is copyright 2002 Ryan Weber, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "errabort.h" #include "jointalign.h" -static char const rcsid[] = "$Id: jointalign.c,v 1.11 2003/05/06 07:33:43 kate Exp $"; void htmlPrintJointAlignment( char *seq1, char *seq2, int columnNum, int start, int end, char *strand ) /* Print sequences 1 and 2 (assumed to be a joint alignment), * formatted for html output. Coordinates are printed based on * the start and end positions and oriented according to the * strand the sequences are on (+ or -). (NO COORDINATES YET)*/ { int i; validateSeqs( seq1, seq2 ); /*print the sequences with lines connecting identical residues *in columns of size columnNum*/ for( i=0; i<strlen(seq1); i += columnNum )