Structural Bioinformatics Library
Template C++ / Python API for developping structural bioinformatics applications.
|
Module which computes a pairwise alignment of two structures Module which computes a pairwise alignment of two structures. More...
#include "Alignment_structures_module.hpp"
Public Types | |
typedef AlignmentEngineStructures | Alignment_engine |
Base engine for making alignments between structures. Base engine for making alignments between structures. More... | |
typedef Alignment_engine::Aligner_algorithm | Aligner_algorithm |
Core algorithm performing the alignment. More... | |
typedef Alignment_engine::Alignment_unit | Structure_unit |
Type for a unit (e.g residue or nucleotid) More... | |
typedef Alignment_engine::Alignment_type | Alignment_type |
Representation of an alignment as a sequence of aligned units. More... | |
typedef Alignment_engine::Sequence_length_type | Sequence_length_type |
Enum for selecting the length of the sequence to consider when computing the similarity / identity percentages. More... | |
Public Member Functions | |
virtual std::string | get_output_prefix (void) const |
Returns a prefix that concatains the input line options used when running the module. More... | |
Static Public Member Functions | |
static boost::program_options::options_description *& | get_options (void) |
Access to the options' description of the module. More... | |
Input Accessors and modifiers | |
Structure *& | get_first_structure (void) |
Structure *& | get_second_structure (void) |
const Alignment_type & | get_alignment (void) const |
Aligner_algorithm & | get_aligner_algorithm (void) |
const Aligner_algorithm & | get_aligner_algorithm (void) const |
Alignment_engine *& | get_alignment_engine (void) |
const Alignment_engine * | get_alignment_engine (void) const |
void | initialize_engine (void) |
static SBL::CSB::Alignment_substitution_matrix_type & | get_substition_matrix_type (void) |
static string & | get_alignment_viewer_name (void) |
static Sequence_length_type & | get_percentage_length_type (void) |
Mandatory Requirements | |
void | run (unsigned verbose, std::ostream &out) override |
Runs the module following the input options. More... | |
bool | is_runnable (void) const override |
Checks that all the input options were set. More... | |
void | statistics (std::ostream &out) override |
Reports high-level statistics on the module. More... | |
boost::program_options::options_description | add_options () override |
Virtual method for adding options to the module. More... | |
std::string | get_name (void) const override |
Returns the name of the package. More... | |
Optional Requirements | |
bool | check_options (std::string &message) const override |
Checks that the input options' values are coherent. More... | |
void | report (const std::string &prefix) override |
Reports the output and statistics in output files. More... | |
Modules Management | |
void | set_module_instance_name (const std::string &module_instance_name) |
Sets a name for this instance of this module. In particular, it will be used in the prefix of output files generated by a collection of modules. More... | |
const std::string & | get_module_instance_name (void) const |
Get the name of this instance of this module. More... | |
void | set_report_mode (std::ios_base::openmode report_mode) |
Set a report mode, that is open or append modes. More... | |
void | set_report_mode (std::ios_base::openmode &report_mode) |
Set a report mode, that is open or append modes. More... | |
const std::ios_base::openmode | get_report_mode (void) const |
Get the report mode to be used when reporting. More... | |
Optional Requirements | |
void | check_filesystem_directory_exists (const std::string &output_prefix) |
To avoid later crash: check filesystem / existence of directory / directory exists. More... | |
Others | |
template<class Self_ > | |
Self_ * | clone (const Self_ *s) const |
Clones the object using the copy constructor. More... | |
virtual bool | is_logical_module (void) const |
Checks that this module defines a logical operator. More... | |
virtual bool | is_condition_module (void) const |
Checks that this module defines a condition operator. More... | |
virtual bool | operator() (void) |
Only for condition modules, for returning the predicate value. More... | |
virtual bool | is_modules_collection (void) const |
Checks that this module defines a collection of modules. More... | |
Module which computes a pairwise alignment of two structures Module which computes a pairwise alignment of two structures.
typedef Alignment_engine::Aligner_algorithm Aligner_algorithm |
Core algorithm performing the alignment.
typedef AlignmentEngineStructures Alignment_engine |
Base engine for making alignments between structures. Base engine for making alignments between structures.
It inherits from the generic interface for all alignments and provide its base functionality. It also implements functionality specific to structural alignments, in particular for anaylzing and comparing alignments. The specific functionality concerns:
Due to geometric nature of the structural alignment, the structure type requires that its units define 3D coordinates, i.e the Alignment_unit defines methods x(), y() and z().
StructureType | Representation of a structure : it requires in particular to define the type Alignment_unit for the geometric representation of a unit to align (e.g a residue or a nucleotid with associated 3D coordinates), the type Alignment_unit indexing the units in the structure, the method size() to return the length of the sequence, and the operator [Alignment_unit_rep] for accessing to the corresponding unit of the structure. |
AlignerAlgorithm | Base functor for the algorithm that makes the alignment between the two input structures : it requires to define a type Score_type for the score (e.g a double, or a pair of doubles if two scores are required), to take two input structures and an output iterator over pairs of Alignment_unit_rep for the output alignment, and to return the score of the algorithm |
FT | Number type representation used for all statistics except the algorithm score. |
MolecularDistance | Distance functor between two molecular structures (default is lRMSD). |
typedef Alignment_engine::Alignment_type Alignment_type |
Representation of an alignment as a sequence of aligned units.
typedef Alignment_engine::Sequence_length_type Sequence_length_type |
Enum for selecting the length of the sequence to consider when computing the similarity / identity percentages.
typedef Alignment_engine::Alignment_unit Structure_unit |
Type for a unit (e.g residue or nucleotid)
|
inlineoverridevirtual |
Virtual method for adding options to the module.
Reimplemented from T_Module_option_description< Dummy >.
|
inlineinherited |
To avoid later crash: check filesystem / existence of directory / directory exists.
|
inlineoverridevirtual |
Checks that the input options' values are coherent.
Reimplemented from T_Module_option_description< Dummy >.
|
inlineinherited |
Clones the object using the copy constructor.
|
inlineinherited |
Get the name of this instance of this module.
|
inlineoverridevirtual |
Returns the name of the package.
Reimplemented from Module_base.
|
inlinestaticinherited |
Access to the options' description of the module.
|
inlinevirtualinherited |
Returns a prefix that concatains the input line options used when running the module.
Reimplemented in T_Union_of_balls_surface_volume_3_module< ModuleTraits, OutputArchive >, T_Union_of_balls_mesh_3_module< ModuleTraits >, T_Union_of_balls_boundary_patch_shelling_3_module< ModuleTraits, OutputArchive >, T_Union_of_balls_boundary_3_module< ModuleTraits, ExactNT >, T_Tertiary_quaternary_structure_annotator_module< ModuleTraits >, T_Spatial_search_module< ModuleTraits, ApproximatedSpatialSearchEngine >, T_Nearest_neighbors_graph_builder_module< ModuleTraits >, T_Morse_theory_based_analyzer_module< ModuleTraits, MorseSmaleWittenChainComplex >, T_Morse_theory_based_analyzer_module< ModuleTraits, SBL::GT::T_Morse_Smale_Witten_chain_complex_from_vertex_weighted_graph_builder< typename ModuleTraits::Graph, typename ModuleTraits::Get_weight >::Morse_Smale_Witten_chain_complex >, T_Morse_theory_based_analyzer_module< ModuleTraits, SBL::GT::T_Morse_Smale_Witten_chain_complex_from_weighted_graph_builder< typename ModuleTraits::Graph, typename ModuleTraits::Get_weight >::Morse_Smale_Witten_chain_complex >, T_Morse_theory_based_analyzer_module< ModuleTraits, SBL::GT::T_Morse_Smale_Witten_chain_complex_from_NNG_builder< ModuleTraits::Nearest_neighbors_graph, ModuleTraits::Morse_function, ModuleTraits::Distance_graph_function >::Morse_Smale_Witten_chain_complex >, T_Molecular_structure_classifier_module< ModuleTraits >, T_Molecular_interfaces_module< ModuleTraits >, T_Module_conjunction< ModuleOrLoader1, ModuleOrLoader2 >, T_Module_condition< Module, Predicate >, T_Module_based_workflow< Dummy >, T_Earth_mover_distance_module< ModuleTraits >, T_Cluster_engine_module< ModuleTraits >, T_Buried_surface_area_without_label_module< ModuleTraits >, T_Buried_surface_area_with_labels_module< ModuleTraits >, T_Alpha_complex_of_molecular_model_module< ModuleTraits >, T_XTC_file_loader< ConformationType, ConformationBuilder, ESBTLMolecularSystem, PDBLineFormat >, T_Spheres_3_file_loader< Sphere3, Point3 >, T_Radius_annotator_for_particles_with_annotated_name< NT, SetRadius >, T_Points_d_file_loader< PointD >, T_Particle_annotator_collector< ParticleAnnotator1, ParticleAnnotator2 >, T_Name_annotator_for_atoms< SetAnnotatedName >, T_Dynamic_annotator_for_residues< SetDynamicAnnotation >, T_Dynamic_annotator_for_atoms< SetDynamicAnnotation >, T_Transition_graph_loader< InputArchive, TransitionGraphTraits >, T_Protein_representation_loader< Protein_representation_ >, T_Primitive_labels_loader< PartnerLabelsTraits, MediatorLabelsTraits, ExtraLabelsTraits >, T_Numbers_file_loader< FT, Tag >, T_Multiple_archives_xml_archive_file_loader< SecondaryArchive, SecondaryData, SerializedData >, T_Molecular_system_loader< Molecular_system_ >, T_Molecular_system_loader< Molecular_system >, T_Molecular_system_loader< Molecular_covalent_structure_builder_::Molecular_covalent_structure::Particle_info::Particle_traits::Molecular_system >, T_Molecular_covalent_structure_loader_from_MOL< MolecularCovalentStructure >, T_Molecular_covalent_structure_loader< Molecular_covalent_structure_builder_ >, T_Molecular_covalent_structure_loader< SBL::CSB::T_Molecular_covalent_structure_builder_for_proteins< typename Protein_representation_::Polypeptide_chain::Molecular_covalent_structure > >, T_Conformation_loader< Conformation_builder_ >, T_Archive_file_loader< InputArchive, SerializedData >, T_PDB_file_loader< ESBTLMolecularSystem, PDBLineFormat >, No_particle_annotator, T_Name_annotator_for_pseudo_atoms< SetAnnotatedName >, T_Generic_annotator_without_file< AnnotationType, SetAnnotation, GetInstanceName >, T_Generic_annotator< KeyType, AnnotationType, MakeKey, SetAnnotation, GetOptionName, GetOptionHelp, GetOptionDisplayName >, T_Domain_annotator_for_particles< Annotations >, T_Conformations_file_loader< ConformationType, ConformationBuilder, ESBTLMolecularSystem, PDBLineFormat >, and T_Molecular_covalent_structure_loader_from_PDB< ParticleTraits, MolecularCovalentStructure, MolecularCovalentStructureBuilder, PDBLineFormat >.
|
inlineinherited |
Get the report mode to be used when reporting.
|
inlineprotectedvirtualinherited |
Checks that this module defines a condition operator.
|
inlineprotectedvirtualinherited |
Checks that this module defines a logical operator.
|
inlineprotectedvirtualinherited |
Checks that this module defines a collection of modules.
|
inlineoverridevirtual |
Checks that all the input options were set.
Reimplemented from Module_base.
|
inlineprotectedvirtualinherited |
Only for condition modules, for returning the predicate value.
|
inlineoverridevirtual |
Reports the output and statistics in output files.
Reimplemented from Module_base.
|
inlineoverridevirtual |
Runs the module following the input options.
Implements Module_base.
|
inlineinherited |
Sets a name for this instance of this module. In particular, it will be used in the prefix of output files generated by a collection of modules.
|
inlineinherited |
Set a report mode, that is open or append modes.
|
inlineinherited |
Set a report mode, that is open or append modes.
|
inlineoverridevirtual |
Reports high-level statistics on the module.
Reimplemented from Module_base.