File: seqmatchsub.h

package info (click to toggle)
cbflib 0.9.7%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 65,272 kB
  • sloc: ansic: 131,361; python: 22,780; sh: 3,108; makefile: 2,088; yacc: 659; java: 223; f90: 214; xml: 210; cpp: 58
file content (16 lines) | stat: -rw-r--r-- 344 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *  seqmatchsub.h
 *  
 *
 *  Created by Herbert J. Bernstein on 2/24/10.
 *  Copyright 2010 __MyCompanyName__. All rights reserved.
 *
 */

int seqsubmatch(const char * seq1, const int * resn1, int * resflg1, int seqlen1,
                const char * seq2, const int * resn2, int * resflg2, int seqlen2) {
    
    int stutter = 0;
    
}