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
# - M_LR_000145_L: rough alignment is ok, detailed alignment also ok.
255
261
# - M_LR_000151_R: rough alignment is ok, detailed alignment also ok.
256
262
defmain():
257
-
parser=argparse.ArgumentParser()
258
-
parser.add_argument("prefix")
259
-
parser.add_argument("-b", "--background_norm")
263
+
parser=argparse.ArgumentParser(description="Start a GUI for determining an intensity threshold for positive / negative transduction in segmented cells.")
264
+
parser.add_argument("prefix", help="The prefix of the files to open with the annotation tool.")
265
+
parser.add_argument(
266
+
"-b", "--background_norm", help="How to normalize the intensity values for background intensity."
267
+
"Valid options are 'division' and 'subtraction'. If nothing is passed then the intensity values are not normalized."
268
+
)
269
+
parser.add_argument("--otof", action="store_true", help="Whether to run the annotation tool for otof samples with VGlut3, Alphatag and IHC segmentation.") # noqa
0 commit comments