You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have used the pipeline and get the multiallelic sequences using the script get_multiseq.py.
However, I find some of the nodes of negative strands are not reverse complemented. This may be due to the codes in line 94-103 in script get_multiseq.py: if ind == (len(paths) - 1): try: totseq += grseq[path][:100] if chainstrand[2] == "+" else revcomp(grseq[path])[ :100] except: totseq += grseq[path] if chainstrand[2] == "+" else revcomp( grseq[path]) else: totseq += grseq[path] if chainstrand[2] == "+" else revcomp( grseq[path])
All of the chainstrand list are indexed as '2'. I think the index should be corrected as 'ind'.
Please check about it.
Thanks for these useful tools!
Mian
The text was updated successfully, but these errors were encountered:
Hi,
I have used the pipeline and get the multiallelic sequences using the script get_multiseq.py.
However, I find some of the nodes of negative strands are not reverse complemented. This may be due to the codes in line 94-103 in script get_multiseq.py:
if ind == (len(paths) - 1): try: totseq += grseq[path][:100] if chainstrand[2] == "+" else revcomp(grseq[path])[ :100] except: totseq += grseq[path] if chainstrand[2] == "+" else revcomp( grseq[path]) else: totseq += grseq[path] if chainstrand[2] == "+" else revcomp( grseq[path])
All of the chainstrand list are indexed as '2'. I think the index should be corrected as 'ind'.
Please check about it.
Thanks for these useful tools!
Mian
The text was updated successfully, but these errors were encountered: