Skip to content
Snippets Groups Projects
Commit 9a993899 authored by Vermaat's avatar Vermaat
Browse files

Temporarily disable frameshift detection (#124)

git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@666 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent ea2fb9db
No related branches found
No related tags found
No related merge requests found
......@@ -256,6 +256,10 @@ def fitFS(peptide, altPeptide, FS):
@arg FS: Frame shift table.
@type FS: dict
"""
# Todo: This is a temporary fix to prevent crashing on frameshift
# detection (I think bug #124).
return False
if len(peptide) < len(altPeptide):
return False
......@@ -766,7 +770,7 @@ def protein_description(M, s1, s2, s1_start, s1_end, s2_start, s2_end):
if (fitFS(s1[s1_start + 1:], s2[s2_start + 1:], FS1) or
fitFS(s1[s1_start + 1:], s2[s2_start + 1:], FS2) or
fitFS(s2[s2_start + 1:], s1[s1_start + 2:], FS1) or
fitFS(s2[s2_start + 1:], s1[s1_start + 2:], FS2)):
fitFS(s2[s2_start + 1:], s1[s1_start + 2:], FS2)):
return [RawVar(DNA=False, start=s1_start + 1, deleted=s1[s1_start],
inserted=s2[s2_start], term=len(s2) - s2_start, type="fs")]
#if
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment