samhorsfield96 commited on
Commit
a23e857
·
verified ·
1 Parent(s): 2763d65

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -1
README.md CHANGED
@@ -2,4 +2,17 @@
2
  license: mit
3
  ---
4
 
5
- List of sample identifiers from ATB dataset, deduplicated at varying levels of identity based on nucleotide sequence.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: mit
3
  ---
4
 
5
+ List of sample identifiers from [ATB](https://allthebacteria.org) deduplicated at varying levels of identity based on nucleotide sequence using [sketchlib](https://docs.rs/sketchlib/latest/sketchlib/) v0.2.4.
6
+
7
+ Sketching and distance calculation conducted with below commands
8
+ ```
9
+ sketchlib sketch -f ${infile} -o ${outpref} --k-vals 21 -s 10000 --threads 11
10
+ sketchlib dist ${outpref} -k 21 --ani --threads 11 -o ${outpref}_dists.tsv
11
+ ```
12
+
13
+ Where `infile` is a set of genome inputs in the format:
14
+ ```
15
+ GENOME000001 /path/to/GENOME000001.fasta
16
+ GENOME000002 /path/to/GENOME000002.fasta
17
+ GENOME000003 /path/to/GENOME000003.fasta
18
+ ```