Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
schwede
openstructure
Commits
a5acf2d3
Commit
a5acf2d3
authored
5 years ago
by
Gerardo Tauriello
Browse files
Options
Downloads
Patches
Plain Diff
Fix exception message.
parent
4eabbfff
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/seq/alg/src/merge_pairwise_alignments.cc
+5
-5
5 additions, 5 deletions
modules/seq/alg/src/merge_pairwise_alignments.cc
with
5 additions
and
5 deletions
modules/seq/alg/src/merge_pairwise_alignments.cc
+
5
−
5
View file @
a5acf2d3
...
...
@@ -143,11 +143,11 @@ AlignmentHandle MergePairwiseAlignments(const AlignmentList& pairwise_alns,
AlignmentHandle
ali_handle
=*
i
;
ConstSequenceHandle
seq_handle
=
ali_handle
.
GetSequence
(
0
);
if
(
seq_handle
.
GetOffset
()
!=
ref_offset
)
{
String
error_s
tring
;
std
::
ostringstream
error_ss
(
error_string
);
error_ss
<<
"The offset of the first sequence in alignment "
<<
alignment_counter
<<
"
is not identical to the offset of the reference sequence."
<<
std
::
endl
;
throw
IntegrityError
(
error_s
tring
);
std
::
ostringstream
error_s
s
;
error_ss
<<
"The offset of the first sequence in alignment "
<<
alignment_counter
<<
"
is not identical to the offset of the reference sequence."
;
throw
IntegrityError
(
error_s
s
.
str
()
);
}
alignment_counter
+=
1
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment