Currently, the pansyn object treats the reference genome differently then the other genomes. Consequently, different steps are required to access the coordinates for the reference and other genomes.
print(df.iloc[0][0])
Pansyn(Range(chm13, NC_060946.1, NaN, 10588391, 12801843), {'mat': Range(mat, CM039032.1, NaN, 3783261, 5889298), 'pat': Range(pat, CM039055.1, NaN, 1, 1723416)})
Is there any specific region for this? If not, then would not it be better to treat all genomes similarly and allow consistent parsing scheme? I guess, this would also be useful when we start identifying crossyn between query genomes only.
Currently, the
pansynobject treats the reference genome differently then the other genomes. Consequently, different steps are required to access the coordinates for the reference and other genomes.Is there any specific region for this? If not, then would not it be better to treat all genomes similarly and allow consistent parsing scheme? I guess, this would also be useful when we start identifying crossyn between query genomes only.