#include "identity.h"
#include "sequence.h"
#include "structure.h"
#include "object.h"
#include "xmlcpg.h"
Go to the source code of this file.
Typedefs | |
typedef rnamlMOLECULE | rnamlMolecule |
Rnaml structure containing the molecule informations. | |
Functions | |
rnamlMolecule * | rnamlnewMolecule () |
Creates a new rnamlMolecule structure. | |
rnamlMolecule * | rnamlcloneMolecule (const rnamlMolecule *molecule) |
Clones a rnamlMolecule struture. | |
void | rnamldeleteMolecule (rnamlMolecule *molecule) |
Frees the rnamlMolecule structure. | |
int | rnamlisMolecule (const rnamlObject *obj) |
Tells wheter the object is a rnamlMolecule. | |
int | rnamlequalsMolecule (const rnamlMolecule *left, const rnamlMolecule *right) |
Tells if left and right are equals. | |
const char * | rnamlgetMoleculeId (const rnamlMolecule *molecule) |
Gets the molecule id. | |
void | rnamlsetMoleculeId (rnamlMolecule *molecule, const char *id) |
Sets the molecule id. | |
const char * | rnamlgetMoleculeType (const rnamlMolecule *molecule) |
Gets the molecule type. | |
void | rnamlsetMoleculeType (rnamlMolecule *molecule, const char *type) |
Sets the molecule type. | |
rnamlIdentity * | rnamlgetMoleculeIdentity (rnamlMolecule *molecule) |
Gets the identity from the molecule. | |
void | rnamlsetMoleculeIdentity (rnamlMolecule *molecule, rnamlIdentity *identity) |
Sets the molecule identity. | |
void | rnamladdMoleculeSequence (rnamlMolecule *molecule, rnamlSequence *sequence) |
Adds a sequence into a molecule. | |
xmlcpgList * | rnamlgetMoleculeSequences (rnamlMolecule *molecule) |
Gets the molecule's sequence list. | |
rnamlStructure * | rnamlgetMoleculeStructure (rnamlMolecule *molecule) |
Gets the structure from the molecule. | |
void | rnamlsetMoleculeStructure (rnamlMolecule *molecule, rnamlStructure *structure) |
Sets the molecule structure. | |
xmlcpgObject * | rnamltoXMLMolecule (const rnamlMolecule *molecule) |
Translates the rnamlMolecule structure into a xmlcpgElement conforming to the RNAML standard. |
|
Rnaml structure containing the molecule informations.
|
|
Adds a sequence into a molecule.
|
|
Clones a rnamlMolecule struture.
|
|
Frees the rnamlMolecule structure.
|
|
Tells if left and right are equals.
|
|
Gets the molecule id.
|
|
Gets the identity from the molecule.
|
|
Gets the molecule's sequence list.
|
|
Gets the structure from the molecule.
|
|
Gets the molecule type.
|
|
Tells wheter the object is a rnamlMolecule.
|
|
Creates a new rnamlMolecule structure.
|
|
Sets the molecule id. The previous molecule id is freed and a copy of id is generated.
|
|
Sets the molecule identity. The previous identity info is freed
|
|
Sets the molecule structure. The previous structure info is freed
|
|
Sets the molecule type.
|
|
Translates the rnamlMolecule structure into a xmlcpgElement conforming to the RNAML standard.
|