1#ifndef VIENNA_RNA_PACKAGE_PK_PLEX_H
2#define VIENNA_RNA_PACKAGE_PK_PLEX_H
118 const int **accessibility,
161 unsigned int max_interaction_length,
178 unsigned int max_interaction_length,
The Basic Fold Compound API.
The most basic data structure required by many functions throughout the RNAlib.
Definition: fold_compound.h:148
double energy
Net free energy in kcal/mol.
Definition: pk_plex.h:76
char * structure
Secondary Structure in dot-bracket notation.
Definition: pk_plex.h:75
unsigned int start_3
Start coordinate of the 3' interaction site.
Definition: pk_plex.h:83
double dG2
Opening energy for the 3' interaction site used in the heuristic.
Definition: pk_plex.h:80
unsigned int end_3
End coordinate of the 3' interaction site.
Definition: pk_plex.h:84
double dGint
Free energy of PK forming duplex interaction.
Definition: pk_plex.h:78
double dGpk
Free energy of PK loop in kcal/mol.
Definition: pk_plex.h:77
double dG1
Opening energy for the 5' interaction site used in the heuristic.
Definition: pk_plex.h:79
unsigned int end_5
End coordinate of the 5' interaction site.
Definition: pk_plex.h:82
unsigned int start_5
Start coordinate of the 5' interaction site.
Definition: pk_plex.h:81
vrna_pk_plex_t * vrna_pk_plex(vrna_fold_compound_t *fc, const int **accessibility, vrna_pk_plex_opt_t options)
Predict Pseudoknot interactions in terms of a two-step folding process.
vrna_pk_plex_opt_t vrna_pk_plex_opt_fun(unsigned int delta, unsigned int max_interaction_length, vrna_callback_pk_plex_score *scoring_function, void *scoring_data)
Simple options for PKplex algorithm.
int() vrna_callback_pk_plex_score(const short *pt, int start_5, int end_5, int start_3, int end_3, void *data)
Pseudoknot loop scoring function prototype.
Definition: pk_plex.h:45
vrna_pk_plex_opt_t vrna_pk_plex_opt(unsigned int delta, unsigned int max_interaction_length, int pk_penalty)
Simple options for PKplex algorithm.
int ** vrna_pk_plex_accessibility(const char *sequence, unsigned int unpaired, double cutoff)
Obtain a list of opening energies suitable for PKplex computations.
vrna_pk_plex_opt_t vrna_pk_plex_opt_defaults(void)
Default options for PKplex algorithm.
struct vrna_pk_plex_option_s * vrna_pk_plex_opt_t
RNA PKplex options object.
Definition: pk_plex.h:58
A result of the RNA PKplex interaction prediction.
Definition: pk_plex.h:74
int unpaired
contains the number of unpaired bases.