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

fixed bug that produced wrong overhang in linear, non-directional, single cut reactions. #408

Merged
merged 3 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion clone/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,15 @@ func CutWithEnzyme(part Part, directional bool, enzyme Enzyme) []Fragment {
// In the case of a single cut in a linear sequence, we get two fragments with only 1 stick end
fragmentSequence1 := sequence[overhangs[0].Position+overhangs[0].Length:]
fragmentSequence2 := sequence[:overhangs[0].Position]
overhangSequence := sequence[overhangs[0].Position : overhangs[0].Position+overhangs[0].Length]

var overhangSequence string

if len(forwardOverhangs) > 0 {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Koeng101 should similar logic be implemented elsewhere in this function?

overhangSequence = sequence[overhangs[0].Position : overhangs[0].Position+overhangs[0].Length]
} else {
overhangSequence = sequence[overhangs[0].Position-overhangs[0].Length : overhangs[0].Position]
}

fragments = append(fragments, Fragment{fragmentSequence1, overhangSequence, ""})
fragments = append(fragments, Fragment{fragmentSequence2, "", overhangSequence})
return fragments
Expand Down
38 changes: 38 additions & 0 deletions clone/clone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,44 @@
}
}

func TestCutWithEnzymeRegression(t *testing.T) {
sequence := "AGCTGCTGTTTAAAGCTATTACTTTGAGACC" // this is a real sequence I came across that was causing problems

part := Part{sequence, false}

// get enzymes with enzyme manager
enzymeManager := NewEnzymeManager(GetBaseRestrictionEnzymes())
bsa1, err := enzymeManager.GetEnzymeByName("BsaI")
if err != nil {
t.Errorf("Error when getting Enzyme. Got error: %s", err)
}

// cut with BsaI
fragments := CutWithEnzyme(part, false, bsa1)

// check that the fragments are correct
if len(fragments) != 2 {
t.Errorf("Expected 2 fragments, got: %d", len(fragments))
}

if fragments[0].ForwardOverhang != "ACTT" {
t.Errorf("Expected forward overhang to be ACTT, got: %s", fragments[0].ForwardOverhang)
}

if fragments[0].ReverseOverhang != "" {
t.Errorf("Expected reverse overhang to be GAGT, got: %s", fragments[0].ReverseOverhang)
}

if fragments[1].ForwardOverhang != "" {
t.Errorf("Expected forward overhang to be empty, got: %s", fragments[1].ForwardOverhang)
}

if fragments[1].ReverseOverhang != "ACTT" {
t.Errorf("Expected reverse overhang to be GAGT, got: %s", fragments[1].ReverseOverhang)
}

Check failure on line 134 in clone/clone_test.go

View workflow job for this annotation

GitHub Actions / lint

unnecessary trailing newline (whitespace)
}

func TestCircularLigate(t *testing.T) {
// The following tests for complementing overhangs. Specific, this line:
// newSeed := Fragment{seedFragment.Sequence + seedFragment.ReverseOverhang + ReverseComplement(newFragment.Sequence), seedFragment.ForwardOverhang, ReverseComplement(newFragment.ForwardOverhang)}
Expand Down
Loading