File: uncovered.hh

package info (click to toggle)
tigr-glimmer 3.02b-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 13,948 kB
  • sloc: cpp: 24,416; awk: 232; csh: 220; makefile: 148; sh: 51
file content (44 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//  A. L. Delcher
//
//  File:  uncovered.hh
//
//  Last Modified:  10 June 2005
//
//  Declarations for  uncovered.cc



#ifndef  __UNCOVERED_HH_INCLUDED
#define  __UNCOVERED_HH_INCLUDED


#include  "delcher.hh"
#include  "fasta.hh"
#include  "gene.hh"


struct  Region_t
  {
   long int  lo, hi;  // Range of region in "between" coordinates
  };


static bool  Region_Cmp
    (Region_t const & a, Region_t const & b)
  { return  (a . lo < b . lo); }



static void  Coalesce_Regions
    (vector <Region_t> & list);
static void  Output_Subsequence
     (const string & seq, long int i, long int len,
      const char * tag, long int start, long int end);
static void  Output_Uncovered
    (const string & seq, long int seq_len, const vector <Region_t> & list);
static void  Parse_Command_Line
    (int argc, char * argv []);
static void  Usage
    (void);

#endif