~ubuntu-branches/ubuntu/raring/ampliconnoise/raring

« back to all changes in this revision

Viewing changes to .pc/fix-path-for-data.patch/Perseus/Perseus.h

  • Committer: Bazaar Package Importer
  • Author(s): Tim Booth, Steffen sponsoring Tim's update
  • Date: 2011-08-21 13:06:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110821130637-a9053ip5b3ryl10r
Tags: 1.25-1
[ Steffen sponsoring Tim's update ]
* Removed Steffen from uploader's list
* Removing emacs-typical backup files from source tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
  int bOutputAlignments;
30
30
 
31
31
  char *szLookUpFile;
 
32
 
 
33
  int nSkew;
32
34
} t_Params;
33
35
 
34
36
typedef struct s_Data
65
67
#define SEQ_INPUT_FILE       "-sin"
66
68
#define USE_IMBALANCE        "-d"
67
69
#define OUTPUT_ALIGNMENTS    "-a"
 
70
#define SKEW                 "-s"
68
71
 
69
72
#define GAP_PENALTY     1.5
70
73
#define GAP             '-'
71
74
#define T_GAP           '.'
72
75
#define COMMA           ","
73
76
 
 
77
#define DEFAULT_SKEW          1
74
78
#define GAP_PENALTY_N         15.0
75
79
#define HOMOPOLYMER_PENALTY   4.0
76
80
 
158
162
 
159
163
void destroyData(t_Data *ptData);
160
164
 
161
 
int alignAll(int nI, int nLenI, int *pnBest, int *pnBestJ, int *anRestrict, int nK, t_Data *ptSeqData, t_Data *ptRefData, t_Align* atAlign);
 
165
int alignAll(int nI, int nLenI, int *pnBest, int *pnBestJ, int *anRestrict, int nK, t_Data *ptSeqData, t_Data *ptRefData, t_Align* atAlign, t_Params *ptParams);
162
166
 
163
167
int getBestChimera(int nK, t_Data *ptRefData, int* pnP1, int* pnP2, int *pnSplit, int* anRestrict, int nLenI, t_Align* atAlign, int* anD, int* anR, int* anBestD, int* anBestR);
164
168