a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/chainToPsl.c src/lib/chainToPsl.c index 959c3ac..d6c92d3 100644 --- src/lib/chainToPsl.c +++ src/lib/chainToPsl.c @@ -1,26 +1,25 @@ /* chainToPsl - convert between chains and psl. Both of these * are alignment formats that can handle gaps in both strands * and do not include the sequence itself. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "psl.h" #include "chain.h" -static char const rcsid[] = "$Id: chainToPsl.c,v 1.5 2005/04/10 14:41:21 markd Exp $"; struct psl *chainToPsl(struct chain *chain) /* chainToPsl - convert chain to psl. This does not fill in * the match, repMatch, mismatch, and N fields since it needs * the sequence for that. It does fill in the rest though. */ { struct psl *psl; int blockCount, i; struct cBlock *b, *nextB; blockCount = slCount(chain->blockList); AllocVar(psl); AllocArray(psl->blockSizes, blockCount); AllocArray(psl->qStarts, blockCount);