File size: 976 Bytes
c003cb2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
license: mit
---
List of sample identifiers from [ATB](https://allthebacteria.org), [GTDB](https://gtdb.ecogenomic.org), [MGnify](https://www.ebi.ac.uk/metagenomics), [SPIRE](https://spire.embl.de), [mOTUs](https://motus-db.org) and [HRGM](https://www.decodebiome.org/HRGM2/) datasets, deduplicated at varying levels of identity based on nucleotide sequence using [sketchlib](https://docs.rs/sketchlib/latest/sketchlib/) v0.2.4.

Sketching and distance calculation conducted with below commands
```
sketchlib inverted build -o ${outpref} -k 21 -s 10 -f ${infile} --threads 47 --write-skq
sketchlib sketch -f ${infile} -o ${outpref} --k-vals 21 -s 1000 --threads 47

sketchlib inverted precluster --knn 50 --skd ${outpref} --ani --threads 47 -o ${outpref}_dists.tsv ${outpref}.ski
```

Where `infile` is a set of genome inputs in the format:
```
GENOME000001	/path/to/GENOME000001.fasta
GENOME000002	/path/to/GENOME000002.fasta
GENOME000003	/path/to/GENOME000003.fasta
```