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
| -x | coordinates | Output new coordinates (toggle to turn on) |`Flase`|
70
70
| -w | weights | Weights files of spots in each slice (.csv) | None |
71
+
| -s | start | Initial alignments for OT. If not given uses uniform (.csv structure similar to alignment output) | None |
71
72
72
73
`pairwise_align` outputs a (.csv) file containing mapping of spots between each consecutive pair of slices. The rows correspond to spots of the first slice, and cols the second.
parser.add_argument("-i", "--initial_slice", help="specify which slice is the intial slice for center_align (int from 1-n)",type=int, default=1)
108
110
parser.add_argument("-t","--threshold", help="convergence threshold for center_align",type=float, default=0.001)
109
111
parser.add_argument("-x","--coordinates", help="output new coordinates", action='store_true', default=False)
110
-
parser.add_argument("-w","--weights", help="path to files containing weights of spots in each slice",type=str, default=[], nargs='+')
112
+
parser.add_argument("-w","--weights", help="path to files containing weights of spots in each slice. The format of the files is the same as the coordinate files used as input",type=str, default=[], nargs='+')
113
+
parser.add_argument("-s","--start", help="path to files containing initial starting alignmnets. If not given the OT starts the search with uniform alignments. The format of the files is the same as the alignments files output by PASTE",type=str, default=[], nargs='+')
0 commit comments