This is a test version of Biostars. For the public version, visit https://www.biostars.org.
What Are The > Signs In Samtools Pileup Strings?

e.g.:

1       554617  N       18      >>TTttTTTTTTTTTTTT      FJFFIJJHI2JI?JJFCC

what is ">>" in the base reads part ">>TTttTTTTTTTTTTTT"?

Thanks!

samtools pileup

2 answers

I think it is the symbol for "reference skip" (indel)

But, Do you know what does make it to skip ? I see that read quality is good there and only few reads skipped .

it's a deletion in the read.

REF     ===================================
READ  =============.......===================

Here is a description of the pileup format: http://samtools.sourceforge.net/pileup.shtml

The symbols are base quality.

As I understand, base qualities is "FJFFIJJHI2JI?JJFCC" string. I'm asking about > sign in read bases string ">>TTttTTTTTTTTTTTT".

I see. My mistake.

Log in to answer this question.