samhorsfield96 commited on
Commit
c003cb2
·
verified ·
1 Parent(s): 160aacd

Update README.md

Browse files

Adds details on datasets

Files changed (1) hide show
  1. README.md +19 -3
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
+ ```