RNAlib-2.1.9h
findpath.h
Go to the documentation of this file.
1 #ifndef __VIENNA_RNA_PACKAGE_FIND_PATH_H__
2 #define __VIENNA_RNA_PACKAGE_FIND_PATH_H__
3 
4 #include "data_structures.h"
5 
23 int find_saddle(const char *seq,
24  const char *struc1,
25  const char *struc2,
26  int max);
27 
28 
41 path_t* get_path( const char *seq,
42  const char *s1,
43  const char* s2,
44  int maxkeep);
45 
51 void free_path(path_t *path);
52 
53 #endif
void free_path(path_t *path)
Free memory allocated by get_path() function.
All datastructures and typedefs shared among the Vienna RNA Package can be found here.
path_t * get_path(const char *seq, const char *s1, const char *s2, int maxkeep)
Find refolding path between 2 structures (serch only direct path)
int find_saddle(const char *seq, const char *struc1, const char *struc2, int max)
Find energy of a saddle point between 2 structures (serch only direct path)
Definition: data_structures.h:414