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

Indel alignment fix #182

Merged
merged 14 commits into from
Jan 11, 2022
Merged

Indel alignment fix #182

merged 14 commits into from
Jan 11, 2022

Commits on Jan 11, 2022

  1. Fix bug in CRISPRessoCompare where sample names were not properly set

    This was a place where it was (partially) missed during the crispresso2_info
    object refactoring.
    Colelyman committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    659ae34 View commit details
    Browse the repository at this point in the history
  2. Add test case for find_indels_substitutions

    This test case is extracted from the CRISPRessoBatch integration test and
    provides an example where there is an insertion at the edge of the include
    index.
    Colelyman committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    13f00bb View commit details
    Browse the repository at this point in the history
  3. Fix a bug in find_indels_substitutions

    The bug that this commit fixes is when an insertion occurs at the edge of the
    include indexes. The trouble with this earlier was that it was using the `idx`
    to calculate the size of the insertion, but the `idx` wasn't being incremented
    anymore because it was outside of the include window.
    Colelyman committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    d4d45a9 View commit details
    Browse the repository at this point in the history
  4. Add a unit test for find_indels_substitutions

    This unit test checks for deletions at the end of a sequence, which are
    inherently outside of the include_indx_set window.
    Colelyman committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    e9f5eff View commit details
    Browse the repository at this point in the history
  5. Fix bug in CRISPRessoCompare where sample names were not properly set

    This was a place where it was (partially) missed during the crispresso2_info
    object refactoring.
    Colelyman authored and kclem committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    3b3a741 View commit details
    Browse the repository at this point in the history
  6. Add test case for find_indels_substitutions

    This test case is extracted from the CRISPRessoBatch integration test and
    provides an example where there is an insertion at the edge of the include
    index.
    Colelyman authored and kclem committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    4db066f View commit details
    Browse the repository at this point in the history
  7. Fix a bug in find_indels_substitutions

    The bug that this commit fixes is when an insertion occurs at the edge of the
    include indexes. The trouble with this earlier was that it was using the `idx`
    to calculate the size of the insertion, but the `idx` wasn't being incremented
    anymore because it was outside of the include window.
    Colelyman authored and kclem committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    d50b4e9 View commit details
    Browse the repository at this point in the history
  8. Add a unit test for find_indels_substitutions

    This unit test checks for deletions at the end of a sequence, which are
    inherently outside of the include_indx_set window.
    Colelyman authored and kclem committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    7212f87 View commit details
    Browse the repository at this point in the history
  9. Fix bug in find_indels_substitutions

    This bug occurred when there was a deletion at the end of a sequence, and was
    thus not properly accounted for.
    Colelyman authored and kclem committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    f6ef62c View commit details
    Browse the repository at this point in the history
  10. Fix bug in find_indels_substitutions

    This bug occurred when there was a deletion at the end of a sequence, and was
    thus not properly accounted for.
    Colelyman committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    07cc7d8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    8564eb0 View commit details
    Browse the repository at this point in the history
  12. Squashed commit of the following:

    commit 8564eb0
    Merge: f6ef62c 07cc7d8
    Author: Kendell Clement <k.clement.dev@gmail.com>
    Date:   Tue Jan 11 16:20:15 2022 -0500
    
        Merge branch 'indel-alignment-fix' of https://github.com/edilytics/CRISPResso2 into indel-alignment-fix
    
    commit 07cc7d8
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:29:59 2021 -0700
    
        Fix bug in `find_indels_substitutions`
    
        This bug occurred when there was a deletion at the end of a sequence, and was
        thus not properly accounted for.
    
    commit f6ef62c
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:29:59 2021 -0700
    
        Fix bug in `find_indels_substitutions`
    
        This bug occurred when there was a deletion at the end of a sequence, and was
        thus not properly accounted for.
    
    commit 7212f87
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:26:17 2021 -0700
    
        Add a unit test for `find_indels_substitutions`
    
        This unit test checks for deletions at the end of a sequence, which are
        inherently outside of the include_indx_set window.
    
    commit d50b4e9
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:03:22 2021 -0700
    
        Fix a bug in `find_indels_substitutions`
    
        The bug that this commit fixes is when an insertion occurs at the edge of the
        include indexes. The trouble with this earlier was that it was using the `idx`
        to calculate the size of the insertion, but the `idx` wasn't being incremented
        anymore because it was outside of the include window.
    
    commit 4db066f
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:01:39 2021 -0700
    
        Add test case for `find_indels_substitutions`
    
        This test case is extracted from the CRISPRessoBatch integration test and
        provides an example where there is an insertion at the edge of the include
        index.
    
    commit 3b3a741
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 11:37:07 2021 -0700
    
        Fix bug in CRISPRessoCompare where sample names were not properly set
    
        This was a place where it was (partially) missed during the crispresso2_info
        object refactoring.
    
    commit e9f5eff
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:26:17 2021 -0700
    
        Add a unit test for `find_indels_substitutions`
    
        This unit test checks for deletions at the end of a sequence, which are
        inherently outside of the include_indx_set window.
    
    commit d4d45a9
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:03:22 2021 -0700
    
        Fix a bug in `find_indels_substitutions`
    
        The bug that this commit fixes is when an insertion occurs at the edge of the
        include indexes. The trouble with this earlier was that it was using the `idx`
        to calculate the size of the insertion, but the `idx` wasn't being incremented
        anymore because it was outside of the include window.
    
    commit 13f00bb
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 15:01:39 2021 -0700
    
        Add test case for `find_indels_substitutions`
    
        This test case is extracted from the CRISPRessoBatch integration test and
        provides an example where there is an insertion at the edge of the include
        index.
    
    commit 659ae34
    Author: Cole Lyman <cole@colelyman.com>
    Date:   Fri Dec 10 11:37:07 2021 -0700
    
        Fix bug in CRISPRessoCompare where sample names were not properly set
    
        This was a place where it was (partially) missed during the crispresso2_info
        object refactoring.
    kclem committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    a7ffd46 View commit details
    Browse the repository at this point in the history
  13. Fix bug in find_indels_substitutions

    This bug occurred when there was a deletion at the end of a sequence, and was
    thus not properly accounted for.
    Colelyman authored and kclem committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    55aa4d2 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    26cf005 View commit details
    Browse the repository at this point in the history