bioinformatics-centre / kaiju

Fast taxonomic classification of metagenomic sequencing reads using a protein reference database
http://kaiju.binf.ku.dk
GNU General Public License v3.0
260 stars 68 forks source link

Doc on best match #38

Closed davidvilanova closed 7 years ago

davidvilanova commented 7 years ago

Hi, In the kaiju help explaining kaiju output it says:

4- the length or score of the best match used for classification.

Does this correspond to the total length of the best target of only the length of the aligned part of the target ? It´s not clear for me if you are representing the length. If it is score which score ?

Thanks for clarification,

pmenzel commented 7 years ago

In MEM mode, column 4 contains the length of the longest alignment between read and the database sequence (with lower bound controlled by option -m)

In Greedy mode, column 4 contains the Blosum62 score of the alignment with highest score (with lower bound controlled by option -s)

davidvilanova commented 7 years ago

Thanks for the update.