Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create README.md #6

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions pipelines/Auto-Autocycler_by_Tom_Stanton/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# autoautocycler

`autoautocycler` is a simple shell wrapper around [Autocycler](https://github.com/rrwick/Autocycler.git) for running all steps on multiple assemblies with a single command.

## Installation
No installation required! Just make sure [Autocycler](https://github.com/rrwick/Autocycler.git) is installed and make the script excecutable with
`chmod +x autoautocycler.sh`.

## Usage
Running `./autoautocycler.sh` with `-h`/`--help` will print all options:

```sh
Usage: autoautocycler <reads> [<reads> ...] [options]
<reads> Long reads to assemble in fastq(.gz) format
-o, --out Output directory (default: .)
-t, --threads #threads to use (default: all available)
-c, --count #subsampled read sets to output (default: 4)
-k, --kmer K-mer size for De Bruijn graph (default: 51)
-s, --size Genome size (default: AUTO)
-a, --assemblers Assemblers to use (default: all available)
Possible assemblers: canu flye lja metamdbg miniasm necat nextdenovo raven redbean
Note: this argument MUST BE WRAPPED in quotes
```

E.g. for making assemblies with flye, miniasm and raven, just run:
```sh
./autoautocycler.sh -o autocycler -c 2 -s 5500000 -a "flye miniasm raven" reads/*.fastq.gz
```
Here I've set the subsampling count to 2 and set the genome size to 5500000 to skip the automatic genome size calculation with raven.

## Bug reporting
Bugs can be reported using the [Autocycler issues page](https://github.com/rrwick/Autocycler/issues) on GitHub,
just make sure you tag me with @tomdstanton.
Loading