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
parser.add_argument("--outName", help="Output name (without extension)", required=True)
55
-
parser.add_argument("--reference", required=True, nargs='+', type=str, help="Reference event name(s). The first will be the \"true\" reference and will be left unclipped and uncollapsed. It also should have been used with --reference in all upstream commands. Other names will be promoted to reference paths in vg")
55
+
parser.add_argument("--reference", required=True, nargs='+', type=str, help="Reference event name(s). The first will be the \"true\" reference and will be left unclipped and uncollapsed. It also should have been used with --reference in all upstream commands. Other names will be promoted to reference paths in vg")
56
+
parser.add_argument("--outgroup", type=str, nargs='+', help="Use given genome as outgroup. Multiple allowed")
56
57
57
58
# cactus-minigraph options
58
59
parser.add_argument("--mgCores", type=int, help="Number of cores for minigraph construction (defaults to the same as --maxCores).")
Copy file name to clipboardExpand all lines: src/cactus/setup/cactus_align.py
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,7 @@ def main():
69
69
parser.add_argument("--outGFA", action="store_true", help="export pangenome grpah in GFA (.gfa.gz) in addition to HAL")
70
70
parser.add_argument("--batch", action="store_true", help="Launch batch of alignments. Input seqfile is expected to be chromfile as generated by cactus-graphmap-slit. IMPORTANT: paffile argument should bot be specified when using this option")
71
71
parser.add_argument("--reference", type=str, help="Ensure that given genome is acyclic by deleting all paralogy edges in postprocessing, also do not mask its PAF mappings")
72
+
parser.add_argument("--outgroup", type=str, nargs='+', help="Use given genome as outgroup. Only works with --pangenome. Multiple allowed")
0 commit comments