Uploaded image for project: 'IGB'
  1. IGB
  2. IGBF-2647

Soft Clip Depth Graph incorrect for PacBio files

    Details

    • Type: Bug
    • Status: To-Do (View Workflow)
    • Priority: Major
    • Resolution: Unresolved
    • Affects Version/s: None
    • Fix Version/s: None
    • Labels:
      None
    • Story Points:
      2
    • Sprint:
      Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 4 2021 May 3 - May 14

      Description

      Situation: The Depth Graph (Soft-clip All) track operation on PacBio data is providing incorrect results.

      To replicate:
      Load the H_sapiens_Dec_2013 genome.
      Add the attached sonAshMinimap2_1LINE.bam file.
      Navigate to chr1:10,643,151-10,643,319
      Click load data.
      Right-click on the bam file track label and select Track Operations > Depth Graph (Soft-clip All).
      Note that there is one soft clip at the beginning of the read, but the graph states there are approximately 800 soft clips.

      Task: Fix the Depth Graph (Soft-clip All) operator so that it displays the correct soft-clip depth information for PacBio files.

        Attachments

          Issue Links

            Activity

            nfreese Nowlan Freese created issue -
            nfreese Nowlan Freese made changes -
            Field Original Value New Value
            Epic Link IGBF-2593 [ 18777 ]
            nfreese Nowlan Freese made changes -
            Link This issue relates to IGBF-2627 [ IGBF-2627 ]
            nfreese Nowlan Freese made changes -
            Description Situation: The soft-clipping depth graph (All) operator on PacBio data is providing incorrect results.

            To replicate: Load the

            Task: Fix the soft-clip depth graph (All) operator so that it displays the correct soft-clip depth information.
            Situation: The Depth Graph (Soft-clip All) track operation on PacBio data is providing incorrect results.

            To replicate:
            Load the H_sapiens_Dec_2013 genome.
            Load the attached sonAshMinimap2_1LINE.bam file.
            Navigate to chr1:10,643,151-10,643,319
            Right-click on the bam file track label and select Track Operations > Depth Graph (Soft-clip All)

            Task: Fix the soft-clip depth graph (All) operator so that it displays the correct soft-clip depth information.
            nfreese Nowlan Freese made changes -
            Description Situation: The Depth Graph (Soft-clip All) track operation on PacBio data is providing incorrect results.

            To replicate:
            Load the H_sapiens_Dec_2013 genome.
            Load the attached sonAshMinimap2_1LINE.bam file.
            Navigate to chr1:10,643,151-10,643,319
            Right-click on the bam file track label and select Track Operations > Depth Graph (Soft-clip All)

            Task: Fix the soft-clip depth graph (All) operator so that it displays the correct soft-clip depth information.
            Situation: The Depth Graph (Soft-clip All) track operation on PacBio data is providing incorrect results.

            To replicate:
            Load the H_sapiens_Dec_2013 genome.
            Add the attached sonAshMinimap2_1LINE.bam file.
            Navigate to chr1:10,643,151-10,643,319
            Click load data.
            Right-click on the bam file track label and select Track Operations > Depth Graph (Soft-clip All).
            Note that there is one soft clip at the beginning of the read, but the graph states there are approximately 800 soft clips.

            Task: Fix the Depth Graph (Soft-clip All) operator so that it displays the correct soft-clip depth information for PacBio files.
            nfreese Nowlan Freese made changes -
            Link This issue relates to IGBF-1443 [ IGBF-1443 ]
            Show
            ann.loraine Ann Loraine added a comment - See: https://bitbucket.org/lorainelab/softclip_track_operation/src/master/
            nfreese Nowlan Freese made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            nfreese Nowlan Freese made changes -
            Assignee Nowlan Freese [ nfreese ]
            Hide
            nfreese Nowlan Freese added a comment -

            The issue occurs in the SeqUtils.java file in the collectSoftclipSpans method. The general idea for the method is to recursively move through a sym finding its children. If that child is a BAM sym and it has softclipping children then the softclipping children's spans are added to the leafs. However, the issue arises that a bamsym can have many repeating children, each of which has a copy of the softclipping children.

            To fix the issue, after a BAMSym is found and following the loop for(int ii = 0; ii < bamSym.getSoftChildCount(); ii++){ we can add either a break or set the ii variable to bamSym.getSoftChildCount() to prevent the loop from continuing through all of the repeating children.

            The reason this occurs seems to have to do with how BAM syms are now separated. If a matching part of a BAM sym has an insertion located in the middle, the matching part before the insertion is considered one child, the insertion another child, and the final matching part the 3rd child.

            Show
            nfreese Nowlan Freese added a comment - The issue occurs in the SeqUtils.java file in the collectSoftclipSpans method. The general idea for the method is to recursively move through a sym finding its children. If that child is a BAM sym and it has softclipping children then the softclipping children's spans are added to the leafs. However, the issue arises that a bamsym can have many repeating children, each of which has a copy of the softclipping children. To fix the issue, after a BAMSym is found and following the loop for(int ii = 0; ii < bamSym.getSoftChildCount(); ii++){ we can add either a break or set the ii variable to bamSym.getSoftChildCount() to prevent the loop from continuing through all of the repeating children. The reason this occurs seems to have to do with how BAM syms are now separated. If a matching part of a BAM sym has an insertion located in the middle, the matching part before the insertion is considered one child, the insertion another child, and the final matching part the 3rd child.
            nfreese Nowlan Freese made changes -
            Assignee Nowlan Freese [ nfreese ]
            nfreese Nowlan Freese made changes -
            Epic Link IGBF-2593 [ 18777 ] IGBF-1765 [ 17855 ]
            nfreese Nowlan Freese made changes -
            Sprint Fall 5 Nov 9 - Nov 20 [ 108 ] Fall 6 Nov 23 - Dec 4 [ 109 ]
            Hide
            ann.loraine Ann Loraine added a comment -

            Next steps: Revert soft clip graph feature and implement fix in App - https://bitbucket.org/lorainelab/softclip_track_operation/src/master/

            Show
            ann.loraine Ann Loraine added a comment - Next steps: Revert soft clip graph feature and implement fix in App - https://bitbucket.org/lorainelab/softclip_track_operation/src/master/
            Show
            ann.loraine Ann Loraine added a comment - Commits to revert: https://bitbucket.org/lorainelab/integrated-genome-browser/commits/aeb1873cb8c2239c219ab739dbd4e9dcdbbebc6a IGBF-1443 : Adding comments for new methods https://bitbucket.org/lorainelab/integrated-genome-browser/commits/9c50e7d7dcbafdecbed40cfcfc781f1adb67200d IGBF-1443 : Implement Depth Graph(Soft-clip) https://bitbucket.org/lorainelab/integrated-genome-browser/commits/9921fba899dc022b5df80aee051bafe8307fb6c9 IGBF-1443 : Add skeleton for the implementation of depth graph for soft-clip portions of aligned reads
            Hide
            ann.loraine Ann Loraine added a comment - - edited

            Reverted commits. Built on my local. Soft-clip depth graph option now absent.
            Branch: https://bitbucket.org/aloraine/integrated-genome-browser/branch/IGBF-2647?dest=master

            Show
            ann.loraine Ann Loraine added a comment - - edited Reverted commits. Built on my local. Soft-clip depth graph option now absent. Branch: https://bitbucket.org/aloraine/integrated-genome-browser/branch/IGBF-2647?dest=master
            Hide
            ann.loraine Ann Loraine added a comment -

            Nowlan Freese and Sai Supreeth Segu - please review PR: https://bitbucket.org/lorainelab/integrated-genome-browser/pull-requests/851/igbf-2647

            Main thing is to make sure all original changes are removed. (Recall that we are now implementing this as an App instead of a change to the IGB platform code base.)

            Show
            ann.loraine Ann Loraine added a comment - Nowlan Freese and Sai Supreeth Segu - please review PR: https://bitbucket.org/lorainelab/integrated-genome-browser/pull-requests/851/igbf-2647 Main thing is to make sure all original changes are removed. (Recall that we are now implementing this as an App instead of a change to the IGB platform code base.)
            ann.loraine Ann Loraine made changes -
            Status In Progress [ 3 ] Needs 1st Level Review [ 10005 ]
            ann.loraine Ann Loraine made changes -
            Status Needs 1st Level Review [ 10005 ] First Level Review in Progress [ 10301 ]
            ann.loraine Ann Loraine made changes -
            Status First Level Review in Progress [ 10301 ] Ready for Pull Request [ 10304 ]
            ann.loraine Ann Loraine made changes -
            Status Ready for Pull Request [ 10304 ] Pull Request Submitted [ 10101 ]
            Hide
            ssegu Sai Supreeth Segu (Inactive) added a comment -

            [~aloraine] Yes, all the original changes are removed. Please, go ahead and merge the pull request.

            Show
            ssegu Sai Supreeth Segu (Inactive) added a comment - [~aloraine] Yes, all the original changes are removed. Please, go ahead and merge the pull request.
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Assignee Sai Supreeth Segu [ ssegu ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status Pull Request Submitted [ 10101 ] Reviewing Pull Request [ 10303 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Assignee Sai Supreeth Segu [ ssegu ] Ann Loraine [ aloraine ]
            Hide
            ann.loraine Ann Loraine added a comment -

            Changes are merged & new master branch installers are built. See: https://bitbucket.org/lorainelab/integrated-genome-browser/downloads/

            Show
            ann.loraine Ann Loraine added a comment - Changes are merged & new master branch installers are built. See: https://bitbucket.org/lorainelab/integrated-genome-browser/downloads/
            ann.loraine Ann Loraine made changes -
            Status Reviewing Pull Request [ 10303 ] Merged Needs Testing [ 10002 ]
            ann.loraine Ann Loraine made changes -
            Assignee Ann Loraine [ aloraine ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 6 Nov 23 - Dec 4 [ 109 ] Fall 5 Nov 9 - Nov 20 [ 108 ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20 [ 108 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 23 - Dec 4 [ 108, 109 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11 [ 108, 109 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23 [ 108, 109, 110 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23 [ 108, 109, 110 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8 [ 108, 109, 110, 111 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8 [ 108, 109, 110, 111 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22 [ 108, 109, 110, 111, 112 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22 [ 108, 109, 110, 111, 112 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5 [ 108, 109, 110, 111, 112, 113 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            Hide
            ann.loraine Ann Loraine added a comment - - edited

            Nowlan Freese - please confirm that the functionality is correctly implemented. Please check that latest released version of IGB - version 9.1.6 - can install the new soft clip App. To get the soft-clip app, please use this repository: https://bitbucket.org/lorainelab/softclip_track_operation/downloads/

            Show
            ann.loraine Ann Loraine added a comment - - edited Nowlan Freese - please confirm that the functionality is correctly implemented. Please check that latest released version of IGB - version 9.1.6 - can install the new soft clip App. To get the soft-clip app, please use this repository: https://bitbucket.org/lorainelab/softclip_track_operation/downloads/
            ann.loraine Ann Loraine made changes -
            Assignee Nowlan Freese [ nfreese ]
            nfreese Nowlan Freese made changes -
            Status Merged Needs Testing [ 10002 ] Post-merge Testing In Progress [ 10003 ]
            Hide
            nfreese Nowlan Freese added a comment -

            Tested on Mac release 9.1.6

            Can install app "Graph Soft Clips" from https://bitbucket.org/lorainelab/softclip_track_operation/downloads/
            App adds "Added App - Graph Soft-Clips" as a right-click track operation.

            Issues:
            1) Need to rename the right-click track operation to something like "Depth Graph (Soft-clip All)"
            2) Changes to fix the soft-clip depth operator do not appear to have been added to the app.

            Show
            nfreese Nowlan Freese added a comment - Tested on Mac release 9.1.6 Can install app "Graph Soft Clips" from https://bitbucket.org/lorainelab/softclip_track_operation/downloads/ App adds "Added App - Graph Soft-Clips" as a right-click track operation. Issues: 1) Need to rename the right-click track operation to something like "Depth Graph (Soft-clip All)" 2) Changes to fix the soft-clip depth operator do not appear to have been added to the app.
            nfreese Nowlan Freese made changes -
            Assignee Nowlan Freese [ nfreese ]
            nfreese Nowlan Freese made changes -
            Status Post-merge Testing In Progress [ 10003 ] To-Do [ 10305 ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5 [ 108, 109, 110, 111, 112, 113 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19 [ 108, 109, 110, 111, 112, 113, 114 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19 [ 108, 109, 110, 111, 112, 113, 114 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 5 Feb 22 - Mar 5 [ 108, 109, 110, 111, 112, 113, 114, 115 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            nfreese Nowlan Freese made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 5 Feb 22 - Mar 5 [ 108, 109, 110, 111, 112, 113, 114, 115 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19 [ 108, 109, 110, 111, 112, 113, 114, 116 ]
            ann.loraine Ann Loraine made changes -
            Assignee Irvin Naylor [ inaylor ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            inaylor Irvin Naylor (Inactive) made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            inaylor Irvin Naylor (Inactive) made changes -
            Status In Progress [ 3 ] To-Do [ 10305 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            inaylor Irvin Naylor (Inactive) made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19 [ 108, 109, 110, 111, 112, 113, 114, 116 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 1 Mar 22 - Apr 2 [ 108, 109, 110, 111, 112, 113, 114, 116, 117 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            Hide
            inaylor Irvin Naylor (Inactive) added a comment - - edited

            Currently working on the softclip track operatior app in IGB 9.1.8

            I have updated the right-click track operation's name to read Depth Graph (Soft-clip all) as Dr. Freese suggested above.

            My main point of focus in tackling this issue stems mainly within SoftClipDepthOperator.java and SoftClipUtils.java as I work through the logic to tackle the main issue in why the soft clip operator has not changed.

            I have attached screenshots of what happens from before/after the depth graph is selected.

            My main question is what exactly should the soft-clip depth operator show for a correct operation in this case? A graph Y-value of 800 for the whole track or just the first three entries of the sequence?

            Observations 3/25 -

            Using a break to escape the for loop doesn't seem to do anything, in the case of the new files. Instead of giving the correct value of 4, each x value is 12. In addition, I added a potential change to the ii variable, setting it equal to the number of soft clips, I will continue testing

            Observations 3/30 -

            Because the for loop where the problems seems to be is within another for loop, I noticed that putting a break outside of the first one (so that only one instance of the parent for loop would execute) would cause none of the Soft Clip entries to show up on the graph.
            The main method also seems to be somewhat recursive so the reason it is looping in on itself multiple times may have to do with this implementation as well.

            Show
            inaylor Irvin Naylor (Inactive) added a comment - - edited Currently working on the softclip track operatior app in IGB 9.1.8 I have updated the right-click track operation's name to read Depth Graph (Soft-clip all) as Dr. Freese suggested above. My main point of focus in tackling this issue stems mainly within SoftClipDepthOperator.java and SoftClipUtils.java as I work through the logic to tackle the main issue in why the soft clip operator has not changed. I have attached screenshots of what happens from before/after the depth graph is selected. My main question is what exactly should the soft-clip depth operator show for a correct operation in this case? A graph Y-value of 800 for the whole track or just the first three entries of the sequence? Observations 3/25 - Using a break to escape the for loop doesn't seem to do anything, in the case of the new files. Instead of giving the correct value of 4, each x value is 12. In addition, I added a potential change to the ii variable, setting it equal to the number of soft clips, I will continue testing Observations 3/30 - Because the for loop where the problems seems to be is within another for loop, I noticed that putting a break outside of the first one (so that only one instance of the parent for loop would execute) would cause none of the Soft Clip entries to show up on the graph. The main method also seems to be somewhat recursive so the reason it is looping in on itself multiple times may have to do with this implementation as well.
            inaylor Irvin Naylor (Inactive) made changes -
            Attachment 2647_1.PNG [ 15552 ]
            Attachment 2647_2.PNG [ 15553 ]
            Hide
            nfreese Nowlan Freese added a comment -

            For the attached file sonAshMinimap2_1LINE.bam the correct depth operator should show a value of 1.

            Show
            nfreese Nowlan Freese added a comment - For the attached file sonAshMinimap2_1LINE.bam the correct depth operator should show a value of 1.
            nfreese Nowlan Freese made changes -
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            inaylor Irvin Naylor (Inactive) made changes -
            Status In Progress [ 3 ] To-Do [ 10305 ]
            ann.loraine Ann Loraine made changes -
            Assignee Irvin Naylor [ inaylor ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 1 2021 Mar 22 - Apr 2 [ 108, 109, 110, 111, 112, 113, 114, 116, 117 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19 [ 108, 109, 110, 111, 112, 113, 114, 116 ]
            inaylor Irvin Naylor (Inactive) made changes -
            Assignee Irvin Naylor [ inaylor ]
            inaylor Irvin Naylor (Inactive) made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19 [ 108, 109, 110, 111, 112, 113, 114, 116 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 4 2021 May 3 - May 14 [ 108, 109, 110, 111, 112, 113, 114, 116, 120 ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 4 2021 May 3 - May 14 [ 108, 109, 110, 111, 112, 113, 114, 116, 120 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 4 2021 May 3 - May 14, Spring 5 2021 May 17 - May 28 [ 108, 109, 110, 111, 112, 113, 114, 116, 120, 121 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            nfreese Nowlan Freese made changes -
            Sprint Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 4 2021 May 3 - May 14, Spring 5 2021 May 17 - May 28 [ 108, 109, 110, 111, 112, 113, 114, 116, 120, 121 ] Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5, Winter 4 Feb 8 - Feb 19, Winter 6 Mar 8 - Mar 19, Spring 4 2021 May 3 - May 14 [ 108, 109, 110, 111, 112, 113, 114, 116, 120 ]
            inaylor Irvin Naylor (Inactive) made changes -
            Assignee Irvin Naylor [ inaylor ]

              People

              • Assignee:
                Unassigned
                Reporter:
                nfreese Nowlan Freese
              • Votes:
                0 Vote for this issue
                Watchers:
                4 Start watching this issue

                Dates

                • Created:
                  Updated: