Back to Mover page.
The TrajectoryReportToDB mover is a subclass of ReportToDB that can be used in Rosetta scripts to report features multiple times to a database for a single output, creating a "trajectory". Since this mover is a subclass of above, any tag or option described for ReportToDB can also be used here. See ReportToDB for these options.
Structures are mapped to cycle step in the trajectory_structures_steps table. To select all trajectory output for a particular run, group struct_ids by output tag (found in the structures table).
ReportToDB Tag :
Feature Subtags : Same as ReportToDB
CREATE TABLE trajectory_structures_steps(
struct_id INTEGER NOT NULL,
step INTEGER NOT NULL,
FOREIGN KEY (struct_id) REFERENCES structures(struct_id) DEFERRABLE INITIALLY DEFERRED,
PRIMARY KEY (struct_id, step));