-
Notifications
You must be signed in to change notification settings - Fork 5
Autocycler combine
Ryan Wick edited this page Dec 18, 2024
·
13 revisions
This is the final step in an Autocycler assembly, where the resolved sequences for each cluster are combined into a single assembly.
autocycler combine -a autocycler_out -i autocycler_out/clustering/qc_pass/cluster_*/5_final.gfa
This command takes an Autocycler directory and one or more cluster graphs (typically 5_final.gfa
). It will create consensus_assembly.fasta
and consensus_assembly.gfa
files in the Autocycler directory.
Usage: autocycler combine --autocycler_dir <AUTOCYCLER_DIR> --in_gfas <IN_GFAS>...
Options:
-a, --autocycler_dir <AUTOCYCLER_DIR> Autocycler directory (required)
-i, --in_gfas <IN_GFAS>... Autocycler cluster GFA files (one or more required)
-h, --help Print help
-V, --version Print version
- While Autocycler combine is typically run using each cluster's final graph (
5_final.gfa
), it can also be run on earlier graphs (e.g.4_merged.gfa
) if desired.
(The toy example is introduced on the Autocycler compress page.)
Since both of the clusters in the toy example were successfully resolved into a single circular consentig, Autocycler combine simply creates a single assembly with both of these consentigs.
- Step 1: Autocycler subsample
- Step 2: Generating input assemblies
- Step 3: Autocycler compress
- Step 4: Autocycler cluster
- Step 5: Autocycler trim
- Step 6: Autocycler resolve
- Step 7: Autocycler combine