Difference between revisions of "Subboxing"
(Created page with "Subboxing is the technique of locating the position of subunits inside ''data'' particles. When an average is available, is possible to express the positions of the subunits...") |
|||
Line 10: | Line 10: | ||
The fundamental command is <tt>dsubboxing_table</tt> | The fundamental command is <tt>dsubboxing_table</tt> | ||
− | <tt> | + | <tt>subboxedTable = dynamo_subboxing_table(table,centeredPoint); </tt> |
Here, the <tt>centeredPoint</tt> point is expressed in relation to the [[Volume center | center point]] of the average. | Here, the <tt>centeredPoint</tt> point is expressed in relation to the [[Volume center | center point]] of the average. | ||
+ | |||
+ | == Symmetry subboxing == | ||
+ | |||
+ | Subboxing is frequently used to extract several symmetrically related subunits out of each particle. The general syntax for this case is: | ||
+ | |||
+ | <tt>subboxedTable = dynamo_subboxing_table(table,centeredPoint,'sym',symmetryOperator); </tt> | ||
+ | |||
+ | There are different values that can be used as symmetry operator: <tt>'Cn'</tt>, <tt>'Dn'</tt>,<tt>'ico'</tt>,<tt>'ico_vertex'</tt>. |
Revision as of 11:01, 26 October 2017
Subboxing is the technique of locating the position of subunits inside data particles. When an average is available, is possible to express the positions of the subunits of interest with relation to the center of the average. Then, the alignment table that produced the average can be used to produce a subboxed table that locates the subunits in the data. This subboxed table can be used to recrop a new data folder, in which each particle file will contain a subunit.
Orientation of subboxed particles
Each subboxed particle file will contain a subunit. The density map particle itself is stored (as always in Dynamo) without any rotation: the fact the different subunits will (possibly) have different orientations will always be expressed through the metadata, that is, it will be reflected in the subboxed table.
Creation of subboxed tables
The fundamental command is dsubboxing_table
subboxedTable = dynamo_subboxing_table(table,centeredPoint);
Here, the centeredPoint point is expressed in relation to the center point of the average.
Symmetry subboxing
Subboxing is frequently used to extract several symmetrically related subunits out of each particle. The general syntax for this case is:
subboxedTable = dynamo_subboxing_table(table,centeredPoint,'sym',symmetryOperator);
There are different values that can be used as symmetry operator: 'Cn', 'Dn','ico','ico_vertex'.