Update README.md
Browse filesAdds details on datasets
README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
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.
|
| 5 |
+
|
| 6 |
+
Sketching and distance calculation conducted with below commands
|
| 7 |
+
```
|
| 8 |
+
sketchlib inverted build -o ${outpref} -k 21 -s 10 -f ${infile} --threads 47 --write-skq
|
| 9 |
+
sketchlib sketch -f ${infile} -o ${outpref} --k-vals 21 -s 1000 --threads 47
|
| 10 |
+
|
| 11 |
+
sketchlib inverted precluster --knn 50 --skd ${outpref} --ani --threads 47 -o ${outpref}_dists.tsv ${outpref}.ski
|
| 12 |
+
```
|
| 13 |
+
|
| 14 |
+
Where `infile` is a set of genome inputs in the format:
|
| 15 |
+
```
|
| 16 |
+
GENOME000001 /path/to/GENOME000001.fasta
|
| 17 |
+
GENOME000002 /path/to/GENOME000002.fasta
|
| 18 |
+
GENOME000003 /path/to/GENOME000003.fasta
|
| 19 |
+
```
|