-
Notifications
You must be signed in to change notification settings - Fork 59
Task: all
This task runs the complete Circlator pipeline. To get going quickly, read the brief instructions.
The general usage is
circlator all [options] <assembly.fasta> <reads.fasta> <output directory>
This runs the tasks: progcheck, mapreads, bam2reads, assemble, merge, clean, fixstart. Options to the individual tasks can be changed. Run
circlator all --help
to see all the options. Please see each individual task page for a description of each the options.
First, a copy of the input assembly is taken, with names edited so that everything after the first whitespace is removed. If this leads to non-unique names then Circlator will stop with an error, and list the offending contig names. If successful, the new file is called 00.input_assembly.fasta
and is indexed with samtools faidx
to make the file 00.input_assembly.fasta.fai
.
These files are the output of running circlator mapreads
.
See the mapreads page for more information.
These files are the output of running circlator bam2reads
.
See the bam2reads page for more information.
The directory 03.assembly
is the output of running circlator assemble
.
See the assemble page for more information.
These files are the output of running circlator merge
.
See the merge page for more information.
These files are the output of running circlator clean
.
See the clean page for more information.
These files are the output of running circlator fixstart
.
See the fixstart page for more information.