You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Verb("ts_aretomo3",HelpText="Create tilt series stacks and run AreTomo3 to obtain tilt series alignments")]
15
+
[CommandRunner(typeof(AreTomo3Tiltseries))]
16
+
classAreTomo3TiltseriesOptions:DistributedOptions
17
+
{
18
+
[Option("angpix",HelpText="Rescale tilt images to this pixel size; normally 10–15 for cryo data; leave out to keep the original pixel size")]
19
+
publicdouble?AngPix{get;set;}
20
+
21
+
[Option("mask",HelpText="Apply mask to each image if available; masked areas will be filled with Gaussian noise")]
22
+
publicboolApplyMask{get;set;}
23
+
24
+
[Option("alignz",Default=0,HelpText="Sample thickness in Angstrom for AreTomo3's AlignZ parameter (auto-converted to binned pixels). When 0 or not given, AreTomo3 will estimate sample thickness automatically")]
25
+
publicintAlignZ{get;set;}
26
+
27
+
[Option("patches",Default="4,4",HelpText="Number of patches for local alignments in X, Y, separated by comma: e.g. 4,4")]
28
+
publicstringAtPatch{get;set;}
29
+
30
+
[Option("axis_iter",Default=0,HelpText="Number of tilt axis angle refinement iterations; each iteration will be started with median value from previous iteration, final iteration will use fixed angle")]
31
+
publicintAxisIterations{get;set;}
32
+
33
+
[Option("axis_batch",Default=0,HelpText="Use only this many tilt series for the tilt axis angle search; only relevant if --axis_iter isn't 0")]
34
+
publicintAxisBatch{get;set;}
35
+
36
+
[Option("min_fov",Default=0.0,HelpText="Disable tilts that contain less than this fraction of the tomogram's field of view due to excessive shifts")]
37
+
publicdoubleMinFOV{get;set;}
38
+
39
+
[Option("axis",HelpText="Override tilt axis angle with this value")]
40
+
publicdouble?AxisAngle{get;set;}
41
+
42
+
[Option("delete_intermediate",HelpText="Delete tilt series stacks generated for AreTomo3")]
43
+
publicboolDeleteIntermediate{get;set;}
44
+
45
+
[Option("thumbnails",HelpText="Create thumbnails for each tilt image using the same pixel size as the stack")]
46
+
publicboolCreateThumbnails{get;set;}
47
+
48
+
[Option("exe",Default="AreTomo3",HelpText="Name of the AreTomo3 executable; must be in $PATH")]
0 commit comments