Hi
Your SAM file is incorrect. According to the specs, a SAM file has the following fields:
I try to align your fields to the field names:
QNAME: 2_512_865_F3
FLAG: 16
RNAME: Esi0595_0002 conserved unknown protein [1335] f:2354-3688 (assuming these are all spaces and no tags in here)
POS: 613
MAPQ: 255
CIGAR: 3H47M
MRNM: *
MPOS: 0
ISIZE: 0
SEQ: *
QUAL: AS:i:347
TAG:VTYPE:VALUE:
Obviously, "AS:i:347" is a tag and should hence be in the 12th column. It is, however, in the 11th column, and hence read as quality string.
Where did you get this SAM file from?
Simon
Originally posted by agali
View Post
Code:
<QNAME> <FLAG> <RNAME> <POS> <MAPQ> <CIGAR> <MRNM> <MPOS> <ISIZE> <SEQ> <QUAL> [<TAG>:<VTYPE>:<VALUE> [...]]
QNAME: 2_512_865_F3
FLAG: 16
RNAME: Esi0595_0002 conserved unknown protein [1335] f:2354-3688 (assuming these are all spaces and no tags in here)
POS: 613
MAPQ: 255
CIGAR: 3H47M
MRNM: *
MPOS: 0
ISIZE: 0
SEQ: *
QUAL: AS:i:347
TAG:VTYPE:VALUE:
Obviously, "AS:i:347" is a tag and should hence be in the 12th column. It is, however, in the 11th column, and hence read as quality string.
Where did you get this SAM file from?
Simon
Comment