Skip to content
New issue

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

Add alignment constraints to handle long sequences #4

Open
bredelings opened this issue Mar 3, 2018 · 0 comments
Open

Add alignment constraints to handle long sequences #4

bredelings opened this issue Mar 3, 2018 · 0 comments

Comments

@bredelings
Copy link
Owner

When aligning long sequences we need to constrain the alignment in order to avoid taking too much CPU time (and RAM).

  • allow constraints that residue x[i] is within some distance of residue y[j] instead of requiring that they align exactly.
  • allow alignments within some "envelope" around an initial alignment

The problem here is that dynamic programming for 3 or more sequences allows constraints like x[i] <= y[i]. However, we must then decompose the alignment of three sequences into three pairwise alignments. This relaxes the ordering imposed encoding the alignments into paths through the dynamic programming matrix.

Ideas

  • Can we impose "not-less-than" constraints instead of "<=" constraints?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant