1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

mashtree: add page (#8938)

This commit is contained in:
Lee Katz 2022-10-15 00:59:14 -04:00 committed by GitHub
parent e0b3555e83
commit 87547da697
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
pages/linux/mashtree.md Normal file
View file

@ -0,0 +1,17 @@
# mashtree
> Makes a fast tree from genomes.
> Does not make a phylogeny.
> More information: <https://github.com/lskatz/mashtree>.
- Fastest method in mashtree to create a tree from fastq and/or fasta files using multiple threads, piping into a newick file:
`mashtree --numcpus {{12}} {{*.fastq.gz}} {{*.fasta}} > {{mashtree.dnd}}`
- Most accurate method in mashtree to create a tree from fastq and/or fasta files using multiple threads, piping into a newick file:
`mashtree --mindepth {{0}} --numcpus {{12}} {{*.fastq.gz}} {{*.fasta}} > {{mashtree.dnd}}`
- Most accurate method to create a tree with confidence values (note that any options for `mashtree` itself has to be on the right side of the `--`):
`mashtree_bootstrap.pl --reps {{100}} --numcpus {{12}} {{*.fastq.gz}} -- --min-depth {{0}} > {{mashtree.bootstrap.dnd}}`