ray
ray copied to clipboard
Independent Kmer total in Taxons.xml
In addition to kmerOccurences, add kmerUnits or something like that in Taxons.xml.
Also add the mean kmer depth of kmers or mode kmer depth.
If it is possible, the total number of possible kmer within a taxon would be useful.
The current entry format:
** numberOfKmers ** modeKmerObservations ** meanKmerObservations ** maximumNumberOfKmers
- for recursive:
** numberOfKmers ** modeKmerObservations ** meanKmerObservations
I need to read the code to check what is sent and synchronize -- it may be necessary to change the code to synchronize distributions instead of raw counts. If it is the case, this will move out of the v2.2.0 milestone and into the next.
TaxonomyViewer/TaxonomyViewer.cpp
line 834
m_taxonObservations[taxon]+=kmerCoverage; // case 2.
this will be replaced by
m_taxonObservations[taxon][kmerCoverage] ++; // case 2.
Moving this to Ray-Future.
Evaluation: 30 human-hours