-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwl_rna.c
104 lines (92 loc) · 2.44 KB
/
wl_rna.c
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
wl_rna.c RNA-related routines for Wang-Landau sampling
Last changed Time-stamp: <2014-07-22 15:42:10 mtw>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <assert.h>
#include <string.h>
#include <unistd.h>
#include "config.h"
#include "wl_options.h"
#include "globals.h"
#include "wl_rna.h"
static void subopt_of_lowest_bins_RNA(float);
/* ==== */
void
initialize_RNA (const char *seq)
{
vrna_md_t md;
vrna_md_set_default(&md);
md.temperature = wanglandau_opt.T;
vrna_fold_compound_t *vc = vrna_fold_compound(seq, &md,VRNA_OPTION_MFE);
/* compute mfe */
mfe = vrna_mfe(vc,NULL);
vrna_fold_compound_free(vc);
if(wanglandau_opt.verbose){
printf ("[[initialize_RNA()]]\nmfe = %6.2f\n",mfe);
}
}
/* ==== */
void
pre_process_RNA(void)
{
subopt_of_lowest_bins_RNA(wanglandau_opt.erange);
}
/* ==== */
void
post_process_RNA(void)
{
return;
}
/* ==== */
static void
subopt_of_lowest_bins_RNA(float e)
{
int strucs, have_lowest_bin,status;
size_t i;
SOLUTION *sol=NULL;
have_lowest_bin = 0;
if(wanglandau_opt.verbose){
fprintf(stderr,"[[subopt_of_lowest_bins_RNA()]]\nq");
fprintf(stderr,"computing subopt -e %g\n",e);
}
/* compute suboptimal structures within energy range mfe+e */
sol = subopt(wanglandau_opt.sequence, NULL, e*100, NULL);
for (strucs = 0; sol[strucs].structure != NULL; strucs++){
status = gsl_histogram_find(s,sol[strucs].energy, &i);
if (status) {
if (status == GSL_EDOM){
printf ("error: %s\n", gsl_strerror (status));
}
else {fprintf(stderr, "GSL error: gsl_errno=%d\n",status);}
exit(EXIT_FAILURE);
}
if (i == 0){have_lowest_bin=1;}
if (wanglandau_opt.verbose){
printf("%s %6.2f %d\n",sol[strucs].structure,sol[strucs].energy,i);
}
gsl_histogram_increment(s,sol[strucs].energy);
free(sol[strucs].structure);
}
free(sol);
if (have_lowest_bin != 1){
fprintf(stderr,
"Lowest bin has not been populated in subopt_first_bin()\n");
fprintf(stderr,
"Please decrease the number of bins for this simulation\n");
fprintf(stderr,"exiting ...\n");
exit(EXIT_FAILURE);
}
/* be verbose about the lower energy bins */
if(wanglandau_opt.verbose){
fprintf(stderr,
"histogram s (first bin required for normalization)\n");
for(i=0;i<wanglandau_opt.truedosbins;i++){
double value = gsl_histogram_get(s,i);
fprintf(stderr,"s[%d]: %7g\n",i,value);
}
}
}