source: branches/stable/GDE/MAFFT/mafft-7.055-with-extensions/core/defs.c

Last change on this file was 10371, checked in by aboeckma, 11 years ago

updated mafft version. Added extensions (no svn ignore, yet)

File size: 1.9 KB
Line 
1#include <stdio.h>
2#include "dp.h"
3#include "mltaln.h"
4
5int TLS commonAlloc1 = 0;
6int TLS commonAlloc2 = 0;
7int TLS **commonIP = NULL;
8int TLS **commonJP = NULL;
9int nthread = 1;
10int randomseed = 0;
11int parallelizationstrategy = BAATARI1;
12
13
14char modelname[100];
15int njob, nlenmax;
16int amino_n[0x80];
17char amino_grp[0x80];
18int amino_dis[0x80][0x80];
19int amino_disLN[0x80][0x80];
20double amino_dis_consweight_multi[0x80][0x80];
21int n_dis[26][26];
22int n_disFFT[26][26];
23float n_dis_consweight_multi[26][26];
24char amino[26];
25double polarity[20];
26double volume[20];
27int ribosumdis[37][37];
28
29int ppid;
30double thrinter;
31double fastathreshold;
32int pslocal, ppslocal;
33int constraint;
34int divpairscore;
35int fmodel; // 1-> fmodel 0->default -1->raw
36int nblosum; // 45, 50, 62, 80
37int kobetsubunkatsu;
38int bunkatsu;
39int dorp;
40int niter;
41int contin;
42int calledByXced;
43int devide;
44int scmtd;
45int weight;
46int utree;
47int tbutree;
48int refine;
49int check;
50double cut;
51int cooling;
52int penalty, ppenalty, penaltyLN;
53int RNApenalty, RNAppenalty;
54int RNApenalty_ex, RNAppenalty_ex;
55int penalty_ex, ppenalty_ex, penalty_exLN;
56int penalty_EX, ppenalty_EX;
57int penalty_OP, ppenalty_OP;
58int RNAthr, RNApthr;
59int offset, poffset, offsetLN, offsetFFT;
60int scoremtx;
61int TMorJTT;
62char use_fft;
63char force_fft;
64int nevermemsave;
65int fftscore;
66int fftWinSize;
67int fftThreshold;
68int fftRepeatStop;
69int fftNoAnchStop;
70int divWinSize;
71int divThreshold;
72int disp;
73int outgap = 1;
74char alg;
75int cnst;
76int mix;
77int tbitr;
78int tbweight;
79int tbrweight;
80int disopt;
81int pamN;
82int checkC;
83float geta2;
84int treemethod;
85int kimuraR;
86char *swopt;
87int fftkeika;
88int score_check;
89int makedistmtx;
90char *inputfile;
91char *addfile;
92int addprofile = 1;
93int rnakozo;
94char rnaprediction;
95int scoreout = 0;
96int outnumber = 0;
97
98char *signalSM;
99FILE *prep_g;
100FILE *trap_g;
101char **seq_g;
102char **res_g;
103
104float consweight_multi = 1.0;
105float consweight_rna = 0.0;
106char RNAscoremtx = 'n';
107
108char TLS *newgapstr = "-";
Note: See TracBrowser for help on using the repository browser.