RNAlib-2.4.3
walk.h
Go to the documentation of this file.
1 #ifndef VIENNA_RNA_PACKAGE_WALK_H
2 #define VIENNA_RNA_PACKAGE_WALK_H
3 
12 #include <ViennaRNA/neighbor.h>
13 
23 #define VRNA_PATH_STEEPEST_DESCENT 128
24 
29 #define VRNA_PATH_RANDOM 256
30 
35 #define VRNA_PATH_NO_TRANSITION_OUTPUT 512
36 
42 #define VRNA_PATH_DEFAULT (VRNA_PATH_STEEPEST_DESCENT | VRNA_MOVESET_DEFAULT)
43 
74  short *pt,
75  unsigned int steps,
76  unsigned int options);
77 
78 
100 vrna_move_t *
102  short *pt,
103  unsigned int options);
104 
105 
128 vrna_move_t *
130  short *pt,
131  unsigned int steps,
132  unsigned int options);
133 
134 
139 #endif /* VIENNA_RNA_PACKAGE_WALK_H */
The most basic data structure required by many functions throughout the RNAlib.
Definition: fold_compound.h:130
Methods to compute the neighbors of an RNA secondary structure.
vrna_move_t * vrna_path_gradient(vrna_fold_compound_t *vc, short *pt, unsigned int options)
Compute a steepest descent / gradient path, store the final structure, and return a list of transitio...
Various data structures and pre-processor macros.
vrna_move_t * vrna_path_random(vrna_fold_compound_t *vc, short *pt, unsigned int steps, unsigned int options)
Generate a random walk / path of a given length, store the final structure, and return a list of tran...
vrna_move_t * vrna_path(vrna_fold_compound_t *vc, short *pt, unsigned int steps, unsigned int options)
Compute a path, store the final structure, and return a list of transition moves from the start to th...
An atomic representation of the transition / move from one structure to its neighbor.
Definition: neighbor.h:156