We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running the script, If I set the "-r" flag equal to an enzyme name (e.g. hindiii), the program will halt with this message:
Find unexpected character in restriction motif.
I think the problem is here:
HiC-Pro/bin/utils/digest_genome.py
Lines 144 to 149 in 351471b
Where for nuc in list(set(cs)): should be instead for nuc in list(set(cseq)):
for nuc in list(set(cs)):
for nuc in list(set(cseq)):
Let me know what you think please! and thank you for the amazing pipeline. Davide
The text was updated successfully, but these errors were encountered:
Hi ! yes, indeed, I think you're right !
Sorry, something went wrong.
I'll fix that in the devel ! many thanks
[BUG] fix digest_genome bug #429
c0aa473
done !
No branches or pull requests
Running the script, If I set the "-r" flag equal to an enzyme name (e.g. hindiii), the program will halt with this message:
I think the problem is here:
HiC-Pro/bin/utils/digest_genome.py
Lines 144 to 149 in 351471b
Where
for nuc in list(set(cs)):
should be insteadfor nuc in list(set(cseq)):
Let me know what you think please! and thank you for the amazing pipeline.
Davide
The text was updated successfully, but these errors were encountered: