RNAlib-2.1.1
LPfold.h
Go to the documentation of this file.
1 #ifndef __VIENNA_RNA_PACKAGE_LPFOLD_H__
2 #define __VIENNA_RNA_PACKAGE_LPFOLD_H__
3 
4 #include "data_structures.h"
5 
6 #ifdef __GNUC__
7 #define DEPRECATED(func) func __attribute__ ((deprecated))
8 #else
9 #define DEPRECATED(func) func
10 #endif
11 
29 void update_pf_paramsLP(int length);
30 
37 void update_pf_paramsLP_par(int length, pf_paramT *parameters);
38 
76 plist *pfl_fold(char *sequence,
77  int winSize,
78  int pairSize,
79  float cutoffb,
80  double **pU,
81  struct plist **dpp2,
82  FILE *pUfp,
83  FILE *spup);
84 
91 plist *pfl_fold_par(char *sequence,
92  int winSize,
93  int pairSize,
94  float cutoffb,
95  double **pU,
96  struct plist **dpp2,
97  FILE *pUfp,
98  FILE *spup,
99  pf_paramT *parameters);
100 
101 
116 void putoutpU_prob(double **pU,
117  int length,
118  int ulength,
119  FILE *fp,
120  int energies);
121 
136 void putoutpU_prob_bin(double **pU,
137  int length,
138  int ulength,
139  FILE *fp,
140  int energies);
141 
147 DEPRECATED(void init_pf_foldLP(int length));
148 
149 #endif