1#ifndef VIENNA_RNA_PACKAGE_MELTING_H
2#define VIENNA_RNA_PACKAGE_MELTING_H
8#ifdef VRNA_WARN_DEPRECATED
9# if defined(DEPRECATED)
12# if defined(__clang__)
13# define DEPRECATED(func, msg) func __attribute__ ((deprecated("", msg)))
14# elif defined(__GNUC__)
15# define DEPRECATED(func, msg) func __attribute__ ((deprecated(msg)))
17# define DEPRECATED(func, msg) func
20# define DEPRECATED(func, msg) func
58DEPRECATED(
typedef void (vrna_heat_capacity_callback)(
float temp,
61 "Use vrna_heat_capacity_f instead!");
117 unsigned int mpoints);
154 unsigned int mpoints,
198 unsigned int mpoints);
Various data structures and pre-processor macros.
The most basic data structure required by many functions throughout the RNAlib.
Definition fold_compound.h:168
float heat_capacity
The specific heat at this temperature in Kcal/(Mol * K)
Definition heat_capacity.h:79
float temperature
The temperature in °C.
Definition heat_capacity.h:78
vrna_heat_capacity_t * vrna_heat_capacity_simple(const char *sequence, float T_min, float T_max, float T_increment, unsigned int mpoints)
Compute the specific heat for an RNA (simplified variant)
int vrna_heat_capacity_cb(vrna_fold_compound_t *fc, float T_min, float T_max, float T_increment, unsigned int mpoints, vrna_heat_capacity_f cb, void *data)
Compute the specific heat for an RNA (callback variant)
void(* vrna_heat_capacity_f)(float temp, float heat_capacity, void *data)
The callback for heat capacity predictions.
Definition heat_capacity.h:54
vrna_heat_capacity_t * vrna_heat_capacity(vrna_fold_compound_t *fc, float T_min, float T_max, float T_increment, unsigned int mpoints)
Compute the specific heat for an RNA.
A single result from heat capacity computations.
Definition heat_capacity.h:77