mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
55988a5e80
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
24 lines
985 B
Diff
24 lines
985 B
Diff
Description: Resolves build failure with seqan 1.4
|
|
Bug-Closed: http://bugs.debian.org/733352
|
|
Author: Manuel Holtgrewe <manuel.holtgrewe@fu-berlin.de>
|
|
--- a/src/segment_juncs.cpp
|
|
+++ b/src/segment_juncs.cpp
|
|
@@ -2050,10 +2050,13 @@ void juncs_from_ref_segs(RefSequenceTabl
|
|
typedef map<uint32_t, IntronMotifs> MotifMap;
|
|
|
|
MotifMap ims;
|
|
-
|
|
- seqan::DnaStringReverseComplement rev_donor_dinuc(donor_dinuc);
|
|
- seqan::DnaStringReverseComplement rev_acceptor_dinuc(acceptor_dinuc);
|
|
-
|
|
+
|
|
+ typedef seqan::ModifiedString<
|
|
+ seqan::ModifiedString<seqan::DnaString const, seqan::ModView<seqan::FunctorComplement<seqan::Dna> > >,
|
|
+ seqan::ModReverse> ConstDnaStringReverseComplement;
|
|
+ ConstDnaStringReverseComplement rev_donor_dinuc(donor_dinuc);
|
|
+ ConstDnaStringReverseComplement rev_acceptor_dinuc(acceptor_dinuc);
|
|
+
|
|
if (talkative)
|
|
fprintf(stderr, "Collecting potential splice sites in islands\n");
|
|
|
|
|