Check mutation in bidirectional alignments
In the ped directory,
$ perl search.pl target=target,chr=chromosome,pos=position
For example,
$ perl search.pl target=SRR11542244,chr=NC_045512.2,pos=5872
or
$ sudo docker run -w /ped -v `pwd`:/work akiomiyao/ped perl search.pl target=SRR11542244,chr=NC_045512.2,pos=5872,wd=/work
A part of output is
# NC_045512.2 5872 NC_045512.2 5870 f deletion -1
CTTACAAAGTCCTCAGAATA GTTACTTATAAATTGGATGG 0
ChrNC_045512.2 5872
|
CTTACAAAGTCCTCAGAATACAAAGGTCCTATTACGGATGTTTTCTACAAAGAAAACAGTTACACAACAACCATAAAACCAGTTACTTATAAATTGGATG
|||||||||||||||||||||||||||||||||||||||||||||||||| ||| | | | | ||| | | | || | | |
CTTACAAAGTCCTCAGAATACAAAGGTCCTATTACGGATGTTTTCTACAAGAAAACAGTTACACAACAACCATAAAACCAGTTACTTATAAATTGGATGG
| || | | || | | | | ||| ||||||||||||||||||||||||||||||||||||||||||||||||||||
TTACAAAGTCCTCAGAATACAAAGGTCCTATTACGGATGTTTTCTACAAAGAAAACAGTTACACAACAACCATAAAACCAGTTACTTATAAATTGGATGG
|
ChrNC_045512.2 5870
The position for indel in vcf file is one base before the junction position. On the other hand, alignment of ped shows the position of junction.
In the case of no alignment, search with vcf position plus one.