RNAlib-2.4.14
Nucleic Acid Sequences and Structures

Functions to read/write different file formats for nucleic acid sequences and secondary structures. More...

Detailed Description

Functions to read/write different file formats for nucleic acid sequences and secondary structures.

+ Collaboration diagram for Nucleic Acid Sequences and Structures:

Files

file  file_formats.h
 Read and write different file formats for RNA sequences, structures.
 

Macros

#define VRNA_OPTION_MULTILINE   32U
 Tell a function that an input is assumed to span several lines. More...
 
#define VRNA_CONSTRAINT_MULTILINE   32U
 parse multiline constraint More...
 

Functions

void vrna_file_helixlist (const char *seq, const char *db, float energy, FILE *file)
 Print a secondary structure as helix list. More...
 
void vrna_file_connect (const char *seq, const char *db, float energy, const char *identifier, FILE *file)
 Print a secondary structure as connect table. More...
 
void vrna_file_bpseq (const char *seq, const char *db, FILE *file)
 Print a secondary structure in bpseq format. More...
 
void vrna_file_json (const char *seq, const char *db, double energy, const char *identifier, FILE *file)
 Print a secondary structure in jsonformat. More...
 
unsigned int vrna_file_fasta_read_record (char **header, char **sequence, char ***rest, FILE *file, unsigned int options)
 Get a (fasta) data set from a file or stdin. More...
 
char * vrna_extract_record_rest_structure (const char **lines, unsigned int length, unsigned int option)
 Extract a dot-bracket structure string from (multiline)character array. More...
 
int vrna_file_SHAPE_read (const char *file_name, int length, double default_value, char *sequence, double *values)
 Read data from a given SHAPE reactivity input file. More...
 
void vrna_extract_record_rest_constraint (char **cstruc, const char **lines, unsigned int option)
 Extract a hard constraint encoded as pseudo dot-bracket string. More...
 
unsigned int read_record (char **header, char **sequence, char ***rest, unsigned int options)
 Get a data record from stdin. More...
 

Macro Definition Documentation

#define VRNA_OPTION_MULTILINE   32U

#include <ViennaRNA/io/file_formats.h>

Tell a function that an input is assumed to span several lines.

If used as input-option a function might also be returning this state telling that it has read data from multiple lines.

See also
vrna_extract_record_rest_structure(), vrna_file_fasta_read_record()
#define VRNA_CONSTRAINT_MULTILINE   32U

Function Documentation

void vrna_file_helixlist ( const char *  seq,
const char *  db,
float  energy,
FILE *  file 
)

#include <ViennaRNA/io/file_formats.h>

Print a secondary structure as helix list.

Parameters
seqThe RNA sequence
dbThe structure in dot-bracket format
energyFree energy of the structure in kcal/mol
fileThe file handle used to print to (print defaults to 'stdout' if(file == NULL) )
void vrna_file_connect ( const char *  seq,
const char *  db,
float  energy,
const char *  identifier,
FILE *  file 
)

#include <ViennaRNA/io/file_formats.h>

Print a secondary structure as connect table.

Connect table file format looks like this:

* 300  ENERGY = 7.0  example
* 1 G       0    2   22    1
* 2 G       1    3   21    2
* 

where the headerline is followed by 6 columns with:

  1. Base number: index n
  2. Base (A, C, G, T, U, X)
  3. Index n-1 (0 if first nucleotide)
  4. Index n+1 (0 if last nucleotide)
  5. Number of the base to which n is paired. No pairing is indicated by 0 (zero).
  6. Natural numbering.
Parameters
seqThe RNA sequence
dbThe structure in dot-bracket format
energyThe free energy of the structure
identifierAn optional identifier for the sequence
fileThe file handle used to print to (print defaults to 'stdout' if(file == NULL) )
void vrna_file_bpseq ( const char *  seq,
const char *  db,
FILE *  file 
)

#include <ViennaRNA/io/file_formats.h>

Print a secondary structure in bpseq format.

Parameters
seqThe RNA sequence
dbThe structure in dot-bracket format
fileThe file handle used to print to (print defaults to 'stdout' if(file == NULL) )
void vrna_file_json ( const char *  seq,
const char *  db,
double  energy,
const char *  identifier,
FILE *  file 
)

#include <ViennaRNA/io/file_formats.h>

Print a secondary structure in jsonformat.

Parameters
seqThe RNA sequence
dbThe structure in dot-bracket format
energyThe free energy
identifierAn identifier for the sequence
fileThe file handle used to print to (print defaults to 'stdout' if(file == NULL) )
unsigned int vrna_file_fasta_read_record ( char **  header,
char **  sequence,
char ***  rest,
FILE *  file,
unsigned int  options 
)

#include <ViennaRNA/io/file_formats.h>

Get a (fasta) data set from a file or stdin.

This function may be used to obtain complete datasets from a filehandle or stdin. A dataset is always defined to contain at least a sequence. If data starts with a fasta header, i.e. a line like

>some header info 

then vrna_file_fasta_read_record() will assume that the sequence that follows the header may span over several lines. To disable this behavior and to assign a single line to the argument 'sequence' one can pass VRNA_INPUT_NO_SPAN in the 'options' argument. If no fasta header is read in the beginning of a data block, a sequence must not span over multiple lines!
Unless the options VRNA_INPUT_NOSKIP_COMMENTS or VRNA_INPUT_NOSKIP_BLANK_LINES are passed, a sequence may be interrupted by lines starting with a comment character or empty lines.
A sequence is regarded as completely read if it was either assumed to not span over multiple lines, a secondary structure or structure constraint follows the sequence on the next line, or a new header marks the beginning of a new sequence...
All lines following the sequence (this includes comments) that do not initiate a new dataset according to the above definition are available through the line-array 'rest'. Here one can usually find the structure constraint or other information belonging to the current dataset. Filling of 'rest' may be prevented by passing VRNA_INPUT_NO_REST to the options argument.

Note
This function will exit any program with an error message if no sequence could be read!
This function is NOT threadsafe! It uses a global variable to store information about the next data block.

The main purpose of this function is to be able to easily parse blocks of data in the header of a loop where all calculations for the appropriate data is done inside the loop. The loop may be then left on certain return values, e.g.:

1 char *id, *seq, **rest;
2 int i;
3 id = seq = NULL;
4 rest = NULL;
5 while(!(vrna_file_fasta_read_record(&id, &seq, &rest, NULL, 0) & (VRNA_INPUT_ERROR | VRNA_INPUT_QUIT))){
6  if(id)
7  printf("%s\n", id);
8  printf("%s\n", seq);
9  if(rest)
10  for(i=0;rest[i];i++){
11  printf("%s\n", rest[i]);
12  free(rest[i]);
13  }
14  free(rest);
15  free(seq);
16  free(id);
17 }

In the example above, the while loop will be terminated when vrna_file_fasta_read_record() returns either an error, EOF, or a user initiated quit request.
As long as data is read from stdin (we are passing NULL as the file pointer), the id is printed if it is available for the current block of data. The sequence will be printed in any case and if some more lines belong to the current block of data each line will be printed as well.

Note
Do not forget to free the memory occupied by header, sequence and rest!
Parameters
headerA pointer which will be set such that it points to the header of the record
sequenceA pointer which will be set such that it points to the sequence of the record
restA pointer which will be set such that it points to an array of lines which also belong to the record
fileA file handle to read from (if NULL, this function reads from stdin)
optionsSome options which may be passed to alter the behavior of the function, use 0 for no options
Returns
A flag with information about what the function actually did read
char* vrna_extract_record_rest_structure ( const char **  lines,
unsigned int  length,
unsigned int  option 
)

#include <ViennaRNA/io/file_formats.h>

Extract a dot-bracket structure string from (multiline)character array.

This function extracts a dot-bracket structure string from the 'rest' array as returned by vrna_file_fasta_read_record() and returns it. All occurences of comments within the 'lines' array will be skipped as long as they do not break the structure string. If no structure could be read, this function returns NULL.

Precondition
The argument 'lines' has to be a 2-dimensional character array as obtained by vrna_file_fasta_read_record()
See also
vrna_file_fasta_read_record()
Parameters
linesThe (multiline) character array to be parsed
lengthThe assumed length of the dot-bracket string (passing a value < 1 results in no length limit)
optionSome options which may be passed to alter the behavior of the function, use 0 for no options
Returns
The dot-bracket string read from lines or NULL
int vrna_file_SHAPE_read ( const char *  file_name,
int  length,
double  default_value,
char *  sequence,
double *  values 
)

#include <ViennaRNA/io/file_formats.h>

Read data from a given SHAPE reactivity input file.

This function parses the informations from a given file and stores the result in the preallocated string sequence and the double array values.

Parameters
file_namePath to the constraints file
lengthLength of the sequence (file entries exceeding this limit will cause an error)
default_valueValue for missing indices
sequencePointer to an array used for storing the sequence obtained from the SHAPE reactivity file
valuesPointer to an array used for storing the values obtained from the SHAPE reactivity file
void vrna_extract_record_rest_constraint ( char **  cstruc,
const char **  lines,
unsigned int  option 
)

#include <ViennaRNA/io/file_formats.h>

Extract a hard constraint encoded as pseudo dot-bracket string.

Deprecated:
Use vrna_extract_record_rest_structure() instead!
Precondition
The argument 'lines' has to be a 2-dimensional character array as obtained by vrna_file_fasta_read_record()
See also
vrna_file_fasta_read_record(), VRNA_CONSTRAINT_DB_PIPE, VRNA_CONSTRAINT_DB_DOT, VRNA_CONSTRAINT_DB_X VRNA_CONSTRAINT_DB_ANG_BRACK, VRNA_CONSTRAINT_DB_RND_BRACK
Parameters
cstrucA pointer to a character array that is used as pseudo dot-bracket output
linesA 2-dimensional character array with the extension lines from the FASTA input
optionThe option flags that define the behavior and recognition pattern of this function
unsigned int read_record ( char **  header,
char **  sequence,
char ***  rest,
unsigned int  options 
)

#include <ViennaRNA/io/file_formats.h>

Get a data record from stdin.

Deprecated:
This function is deprecated! Use vrna_file_fasta_read_record() as a replacment.