@@ -87,7 +87,7 @@ The filtering process follows this exact sequence:
87874 . ** Scaffold Filter** (default: 1:1)
8888 - Apply plane sweep filtering to the SCAFFOLD chains
8989 - Respects PanSN prefix grouping when ` -Y ` is set
90- - Controlled by ` --scaffold-filter ` (default: "1:1")
90+ - Controlled by ` -m/- -scaffold-filter ` (default: "1:1")
9191 - Options: "1:1", "1" (same as "1:∞"), "N" (no filtering)
9292 - Keeps best scaffolds per query/target pair within each prefix group
9393
@@ -101,7 +101,7 @@ The filtering process follows this exact sequence:
101101## Key Parameters
102102
103103- ` -n/--num-mappings ` : Primary mapping filter before scaffolds (default: "many" = no filtering)
104- - ` --scaffold-filter ` : Filter for scaffold chains (default: "1:1")
104+ - ` -m/- -scaffold-filter ` : Filter for scaffold chains (default: "1:1")
105105- ` -s/--scaffold-mass ` : Minimum scaffold length (default: 10kb)
106106- ` -j/--scaffold-jump ` : Maximum gap to merge mappings into scaffolds (default: 10kb)
107107- ` -d/--scaffold-dist ` : Maximum distance for rescue (default: 20kb)
@@ -148,12 +148,12 @@ This would make the pipeline stages explicit and composable, reducing confusion
148148
1491491 . ** Default (wfmash-like)** : No pre-filtering, 1:1 scaffold filtering
150150 ```
151- sweepga -S 10000 # Creates scaffolds, keeps best per genome pair
151+ sweepga # Creates scaffolds, keeps best per chromosome pair
152152 ```
153153
1541542 . ** Aggressive filtering** : 1:1 pre-filtering, 1:1 scaffold filtering
155155 ```
156- sweepga -S 10000 - n 1:1 --scaffold-filter 1:1
156+ sweepga -n 1:1 -m 1:1
157157 ```
158158
1591593 . ** Pre-filter only** : No scaffolding
@@ -163,7 +163,7 @@ This would make the pipeline stages explicit and composable, reducing confusion
163163
1641644 . ** Keep more mappings** : 1:∞ for both filters
165165 ```
166- sweepga -S 10000 - n 1 --scaffold-filter 1 # "1" is shorthand for "1:∞"
166+ sweepga -n 1 -m 1 # "1" is shorthand for "1:∞"
167167 ```
168168
169169## Key Differences from Original Description
0 commit comments