Back to Mover page.
Report structural data to a relational database using a modular schema. Each FeaturesReporter is responsible for a set of tables that conceptually represents a type of geometric, chemical, or meta property of a structure. All features reportered though a single instance of the ReportToDB Mover will be grouped into a batch of structures.
<ReportToDB name="&string" {database_connection_options} cache_size="(&integer)" batch_description="&string" protocol_id="(&integer)" task_operations="(&task_operations)" relevant_residues_mode="[explicit,implicit]">
<&string {feature_specific_options}/>
<&string {feature_specific_options}/>
.
.
.
</ReportToDB>
ReportToDB Tag :
description
column of the batches table.default
, implicit ]: Determines which features should be reported given the set of relevant residues. With explicit all residues in a feature must be relevant to be reported. With implicit at least one residues in a feature must be relevant to be reported.Feature Subtags : Each features subtag applies a features reporter to the structure.
CREATE TABLE IF NOT EXISTS features_reporters (
report_name TEXT,
PRIMARY KEY (reporter_name));
CREATE TABLE IF NOT EXISTS batch_reports (
report_name TEXT,
batch_id INTEGER,
FOREIGN KEY (report_name) REFERENCES features_reporters (report_name) DEFERRABLE INITIALLY DEFERRED,
PRIMARY KEY (report_name, batch_id));
Additional Information: