/usr/include/seqan/align/gaps_base.h is in seqan-dev 1.3-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2010, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: Andreas Gogol-Doering <andreas.doering@mdc-berlin.de>
// ==========================================================================
#ifndef SEQAN_HEADER_GAPS_BASE_H
#define SEQAN_HEADER_GAPS_BASE_H
namespace SEQAN_NAMESPACE_MAIN
{
//////////////////////////////////////////////////////////////////////////////
/**.Metafunction.GappedValueType:
..summary:Returns a value type that contains a blank value '-'.
..signature:GappedValueType<T>::Type
..param.T:The value type that should be expanded (if needed) by '-'.
..returns.param.Type:A value type that can be used to store store values in $T$ and the value '-'.
*/
template <typename T>
struct GappedValueType
{
typedef T Type;
};
template <typename TValue, typename TSpec>
struct GappedValueType< SimpleType<TValue, TSpec> >
{
typedef SimpleType<TValue, TSpec> THost_;
typedef ModifiedAlphabet<THost_, ModExpand<'-'> > Type;
};
//////////////////////////////////////////////////////////////////////////////
template <typename THost, typename TSpec>
inline ModifiedAlphabet<THost, ModExpand<'-', TSpec> >
gapValueImpl(ModifiedAlphabet<THost, ModExpand<'-', TSpec> > *)
{
SEQAN_CHECKPOINT
static ModifiedAlphabet<THost, ModExpand<'-', TSpec> > const _gap = '-';
return _gap;
}
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// Tags
struct ArrayGaps;
template <typename TSpec>
struct GapsIterator;
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// Gaps
//////////////////////////////////////////////////////////////////////////////
// an instance of the Gaps class is a strictly increasing function
// between N_0 and N_0
/**
.Class.Gaps:
..cat:Alignments
..cat:Sequences
..summary:Stores the gaps in a gapped sequences.
..signature:Gaps<TSource, TSpec>
..param.TSource:Type of the ungapped sequence.
...metafunction:Metafunction.Source
..param.TSpec:The specializing type.
...metafunction:Metafunction.Spec
..remarks:The gaps are stored separately from the sequence.
The ungapped sequence is called the @Function.source@ of the gaps object.
$Gaps$ either stores the source (then it is the owner of the source), or refers to an external source (then it is @Function.dependent@).
..include:seqan/align.h
*/
template <typename TSource, typename TSpec/* = ArrayGaps*/>
class Gaps;
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// Size
//////////////////////////////////////////////////////////////////////////////
template <typename TSource, typename TSpec>
struct Size<Gaps<TSource, TSpec> >
{
typedef typename Size<TSource>::Type Type;
};
template <typename TSource, typename TSpec>
struct Size<Gaps<TSource, TSpec> const>
{
typedef typename Size<TSource const>::Type Type;
};
//////////////////////////////////////////////////////////////////////////////
// Position
//////////////////////////////////////////////////////////////////////////////
///.Metafunction.Position.param.T.type:Class.Gaps
template <typename TSource, typename TSpec>
struct Position<Gaps<TSource, TSpec> >:
Position<TSource>
{
};
template <typename TSource, typename TSpec>
struct Position<Gaps<TSource, TSpec> const>:
Position<TSource>
{
};
//////////////////////////////////////////////////////////////////////////////
// Source
//////////////////////////////////////////////////////////////////////////////
/**
.Metafunction.Source:
..summary:The underlying sequence for alignments or gaps data structures.
..signature:Source<T>::Type
..param.T:Type for which the source type is determined.
...type:Class.Gaps
..returns.param.Type:Source type of $T$.
..include:seqan/align.h
*/
template <typename TSource, typename TSpec>
struct Source<Gaps<TSource, TSpec> >
{
typedef TSource Type;
};
//////////////////////////////////////////////////////////////////////////////
/**
.Metafunction.GetSource:
..summary:The type returned by the @Function.source@ function.
..signature:GetSource<T>::Type
..param.T:Type for which the source is retrieved by @Function.source@.
...type:Class.Gaps
..returns.param.Type:The type returned by the @Function.source@ function.
...remarks:This type is a reference to @Metafunction.Source@.
..include:seqan/align.h
*/
template <typename T>
struct GetSource
{
typedef typename Source<T>::Type & Type;
};
//////////////////////////////////////////////////////////////////////////////
// Iterator
//////////////////////////////////////////////////////////////////////////////
///.Metafunction.Iterator.param.T.type:Class.Gaps
template <typename TSource, typename TSpec, typename TIteratorSpec>
struct Iterator<Gaps<TSource, TSpec>, TIteratorSpec>
{
typedef Iter<Gaps<TSource, TSpec>, GapsIterator<TSpec> > Type;
};
template <typename TSource, typename TSpec, typename TIteratorSpec>
struct Iterator<Gaps<TSource, TSpec> const, TIteratorSpec>
{
typedef Iter<Gaps<TSource, TSpec> const, GapsIterator<TSpec> > Type;
};
//////////////////////////////////////////////////////////////////////////////
///.Metafunction.Spec.param.T.type:Class.Gaps
template <typename TSource, typename TSpec>
struct Spec<Gaps<TSource, TSpec> >
{
typedef TSpec Type;
};
template <typename TSource, typename TSpec>
struct Spec<Gaps<TSource, TSpec> const>
{
typedef TSpec Type;
};
//////////////////////////////////////////////////////////////////////////////
// Value
//////////////////////////////////////////////////////////////////////////////
///.Metafunction.Value.param.T.type:Class.Gaps
template <typename TSource, typename TSpec>
struct Value<Gaps<TSource, TSpec> >:
Value<TSource>
{
};
template <typename TSource, typename TSpec>
struct Value<Gaps<TSource, TSpec> const>:
Value<TSource const>
{
};
//////////////////////////////////////////////////////////////////////////////
// GetValue
//////////////////////////////////////////////////////////////////////////////
///.Metafunction.GetValue.param.T.type:Class.Gaps
template <typename TSource, typename TSpec>
struct GetValue<Gaps<TSource, TSpec> >:
Value<TSource> //no reference
{
};
template <typename TSource, typename TSpec>
struct GetValue<Gaps<TSource, TSpec> const>:
Value<TSource const> //no reference
{
};
//////////////////////////////////////////////////////////////////////////////
// Reference
//////////////////////////////////////////////////////////////////////////////
///.Metafunction.Reference.param.T.type:Class.Gaps
template <typename TSource, typename TSpec>
struct Reference<Gaps<TSource, TSpec> >
{
typedef typename Iterator<Gaps<TSource, TSpec>, Standard>::Type TIterator_;
typedef Proxy<IteratorProxy<TIterator_> > Type;
};
template <typename TSource, typename TSpec>
struct Reference<Gaps<TSource, TSpec> const>
{
typedef typename Iterator<Gaps<TSource, TSpec> const, Standard>::Type TIterator_;
typedef Proxy<IteratorProxy<TIterator_> > Type;
};
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// Functions
//////////////////////////////////////////////////////////////////////////////
///.Function.id.param.object.type:Class.Gaps
template <typename TSource, typename TSpec>
inline void const *
id(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
return id(source(me));
}
template <typename TSource, typename TSpec>
inline void const *
id(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
return id(source(me));
}
//////////////////////////////////////////////////////////////////////////////
///.Function.begin.param.object.type:Class.Gaps
// returns iterator to left border
template <typename TSource, typename TSpec, typename TTag>
inline typename Iterator<Gaps<TSource, TSpec>, Tag<TTag> const>::Type
begin(Gaps<TSource, TSpec> & me,
Tag<TTag> const tag_)
{
SEQAN_CHECKPOINT
return iter(me, beginPosition(me), tag_);
}
template <typename TSource, typename TSpec, typename TTag>
inline typename Iterator<Gaps<TSource, TSpec> const, Tag<TTag> const>::Type
begin(Gaps<TSource, TSpec> const & me,
Tag<TTag> const tag_)
{
SEQAN_CHECKPOINT
return iter(me, beginPosition(me), tag_);
}
//////////////////////////////////////////////////////////////////////////////
///.Function.end.param.object.type:Class.Gaps
// returns iterator to right border
template <typename TSource, typename TSpec, typename TTag>
inline typename Iterator<Gaps<TSource, TSpec>, Tag<TTag> const>::Type
end(Gaps<TSource, TSpec> & me,
Tag<TTag> const tag_)
{
SEQAN_CHECKPOINT
return iter(me, endPosition(me), tag_);
}
template <typename TSource, typename TSpec, typename TTag>
inline typename Iterator<Gaps<TSource, TSpec> const, Tag<TTag> const>::Type
end(Gaps<TSource, TSpec> const & me,
Tag<TTag> const tag_)
{
SEQAN_CHECKPOINT
return iter(me, endPosition(me), tag_);
}
//////////////////////////////////////////////////////////////////////////////
///.Function.length.param.object.type:Class.Gaps
template <typename TSource, typename TSpec>
inline typename Size<Gaps<TSource, TSpec> >::Type
length(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
return endPosition(me) - beginPosition(me);
}
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
/**
.Function.sourceBegin:
..summary:Begin of the source segment.
..cat:Alignments
..signature:sourceBegin(object)
..param.object:An object that has a source
...type:Class.Gaps
..returns:An iterator that points to the first item in @Function.source.source(object)@ that is used in object.
..see:Function.begin
..see:Function.source
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TTag>
inline typename Iterator<TSource, Tag<TTag> const>::Type
sourceBegin(Gaps<TSource, TSpec> const & me,
Tag<TTag> const tag_)
{
SEQAN_CHECKPOINT
return iter(source(me), clippedBeginPosition(me), tag_);
}
template <typename TSource, typename TSpec>
inline typename Iterator<TSource, typename DefaultGetIteratorSpec<TSource>::Type>::Type
sourceBegin(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
typedef typename DefaultGetIteratorSpec<TSource>::Type TDefaultGetIteratorSpec;
return iter(source(me), clippedBeginPosition(me), TDefaultGetIteratorSpec());
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.sourceEnd:
..summary:End of the source segment.
..cat:Alignments
..signature:sourceEnd(object)
..param.object:An object that has a source
...type:Class.Gaps
..returns:An iterator that points behind the last item in @Function.source.source(object)@ that is used in object.
..see:Function.end
..see:Function.source
..see:Function.sourceBegin
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TTag>
inline typename Iterator<TSource, Tag<TTag> const>::Type
sourceEnd(Gaps<TSource, TSpec> const & me,
Tag<TTag> const tag_)
{
SEQAN_CHECKPOINT
return iter(source(me), clippedEndPosition(me), tag_);
}
template <typename TSource, typename TSpec>
inline typename Iterator<TSource, typename DefaultGetIteratorSpec<TSource>::Type>::Type
sourceEnd(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
typedef typename DefaultGetIteratorSpec<TSource>::Type TDefaultGetIteratorSpec;
return iter(source(me), clippedEndPosition(me), TDefaultGetIteratorSpec());
}
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
/**
.Function.insertGap:
..cat:Alignments
..summary:Insert one blank into a gapped sequence.
..signature:insertGap(gapped_sequence, view_position)
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_position:The view position at which the blank is inserted.
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TPosition>
inline void
insertGap(Gaps<TSource, TSpec> & me,
TPosition _view_pos)
{
SEQAN_CHECKPOINT
insertGap(iter(me, _view_pos));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.insertGaps:
..cat:Alignments
..summary:Insert blanks into a gapped sequence.
..signature:insertGaps(gapped_sequence, view_position, count)
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_position:The view position at which $count$ blanks are inserted.
..param.count:Number of blanks to insert.
..see:Function.insertGap
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TPosition, typename TSize>
inline void
insertGaps(Gaps<TSource, TSpec> & me,
TPosition _view_pos,
TSize _size)
{
SEQAN_CHECKPOINT
insertGaps(iter(me, _view_pos), _size);
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.removeGap:
..cat:Alignments
..summary:Removes one blank from a gapped sequence.
..signature:removeGap(gapped_sequence, view_position)
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_position:The view position at which the blank is removed.
..remarks:If there is no gap at position $view_position$ in $gapped_sequence$, then nothing happens.
..see:Function.insertGap
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TPosition>
inline void
removeGap(Gaps<TSource, TSpec> & me,
TPosition _view_pos)
{
SEQAN_CHECKPOINT
removeGap(iter(me, _view_pos));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.removeGaps:
..cat:Alignments
..summary:Removes blanks from a gapped sequence.
..signature:removeGaps(gapped_sequence, view_position, count)
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_position:The view position at which up to $count$ blanks are removed.
..param.count:Number of blanks
..remarks:This funcion removes up to $count$ blanks.
If there is no gap at position $view_position$ in $gapped_sequence$, nothing happens.
If there are only $x < count$ consecutive blanks starting at position $view_position$ in $gappend_sequence$, then only $x$ blanks are removed.
..see:Function.insertGaps
..see:Function.removeGap
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TPosition, typename TSize>
inline void
removeGaps(Gaps<TSource, TSpec> & me,
TPosition _view_pos,
TSize _size)
{
SEQAN_CHECKPOINT
removeGaps(iter(me, _view_pos), _size);
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.isGap:
..cat:Alignments
..summary:Test a gapped sequence for gaps at a specific position.
..signature:bool isGap(gapped_sequence, view_position)
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_position:The view position at which $gapped_sequence$ is tested.
..returns:$true$, if there is a gap at position $view_position$ in $gapped_sequence$, $false$ otherwise.
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TPosition>
inline bool
isGap(Gaps<TSource, TSpec> & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
return isGap(iter(me, view_pos));
}
template <typename TSource, typename TSpec, typename TPosition>
inline bool
isGap(Gaps<TSource, TSpec> const & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
return isGap(iter(me, view_pos));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.countGaps:
..cat:Alignments
..summary:Count blanks at a specific position in a gapped sequence.
..signature:Size countGaps(gapped_sequence, view_position)
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_position:The view position at which $gapped_sequence$ is tested.
..returns:Number of consecutive gaps in $gapped_sequence$ starting at position $view_position$.
...metafunction:Metafunction.Size
..remarks:If there is no gap at position $view_position$, the function returns $0$.
...text:If $view_position \geq $@Function.endPosition@$(gapped_sequence)$, the function returns $0$.
..include:seqan/align.h
*/
// count gaps beginning at given view position
// counting trailing gaps returns either the intended trailing gaps or 0
template <typename TSource, typename TSpec, typename TPosition>
inline typename Size<Gaps<TSource, TSpec> >::Type
countGaps(Gaps<TSource, TSpec> & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
return countGaps(iter(me, view_pos));
}
template <typename TSource, typename TSpec, typename TPosition>
inline typename Size<Gaps<TSource, TSpec> >::Type
countGaps(Gaps<TSource, TSpec> const & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
return countGaps(iter(me, view_pos));
}
/**
.Function.countCharacters:
..cat:Alignments
..summary:Count characters at a specific position in a gapped sequence.
..signature:Size countCharacters(gapped_sequence, view_position)
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_position:The view position at which $gapped_sequence$ is tested.
..returns:Number of consecutive characters in $gapped_sequence$ starting at position $view_position$.
...metafunction:Metafunction.Size
..remarks:If there is no character at position $view_position$, the function returns $0$.
...text:If $view_position \geq $@Function.endPosition@$(gapped_sequence)$, the function returns $0$.
..include:seqan/align.h
*/
// count characters beginning at given view position
template <typename TSource, typename TSpec, typename TPosition>
inline typename Size<Gaps<TSource, TSpec> >::Type
countCharacters(Gaps<TSource, TSpec> const & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
return countCharacters(iter(me, view_pos));
}
template <typename TSource, typename TSpec, typename TPoistion>
inline typename Size<Gaps<TSource, TSpec> >::Type
countCharacters(Gaps<TSource, TSpec> & me,
TPoistion view_pos)
{
SEQAN_CHECKPOINT
return countCharacters(iter(me, view_pos));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.clearGaps:
..cat:Alignments
..summary:Remove blanks from a gapped sequence.
..signature:clearGaps(gapped_sequence [, view_begin_pos, view_end_pos])
..param.gapped_sequence:A gapped sequence.
...type:Class.Gaps
..param.view_begin_pos:First view position that is scanned for blanks. (optional)
..param.view_end_pos:View Position behind the last item that is scanned for blanks. (optional)
..remarks:All blanks after $view_begin_pos$ and before $view_end_pos$ are removed.
...text:If no $view_begin_pos$ and $view_end_pos$ are specified, all gaps are removed from $gapped_sequence$.
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TPosition1, typename TPosition2>
inline void
clearGaps(Gaps<TSource, TSpec> & me,
TPosition1 view_pos_begin,
TPosition2 view_pos_end)
{
SEQAN_CHECKPOINT
TPosition1 pos_left = view_pos_end - view_pos_begin;
while (pos_left > 0)
{
if (isGap(me, view_pos_begin))
{
TPosition1 gap_count = countGaps(me, view_pos_begin);
if (!gap_count)
{//trailing gaps reached: stop function
break;
}
if (gap_count > pos_left)
{
gap_count = pos_left;
}
removeGaps(me, view_pos_begin, gap_count);
pos_left -= gap_count;
}
else
{
++view_pos_begin;
--pos_left;
}
}
}
//____________________________________________________________________________
template <typename TSource, typename TSpec>
inline void
clearGaps(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
clearGaps(me, 0, endPosition(me));
}
//////////////////////////////////////////////////////////////////////////////
// copy gaps-information from one Gaps-object range into another object
//??? TODO: not tested, not documented
template <typename TSource, typename TSpec, typename TPosition1, typename TSourceGaps, typename TPosition2, typename TPosition3>
inline void
copyGaps(Gaps<TSource, TSpec> & target_gaps,
TPosition1 target_view_pos_begin,
TSourceGaps const & source_gaps,
TPosition2 source_view_pos_begin,
TPosition3 source_view_pos_end)
{
SEQAN_CHECKPOINT
TPosition1 target_view_pos_end = target_view_pos_begin + source_view_pos_end - source_view_pos_begin;
clearGaps(target_gaps, target_view_pos_begin, target_view_pos_end);
for (TPosition3 i = source_view_pos_end - source_view_pos_begin; i > 0; --i)
{
if (isGap(source_gaps, source_view_pos_begin))
{
insertGap(target_gaps, target_view_pos_begin);
}
++target_view_pos_begin;
++source_view_pos_begin;
}
}
//////////////////////////////////////////////////////////////////////////////
///.Function.getValue.param.container.type:Class.Gaps
template <typename TSource, typename TSpec, typename TPosition>
inline typename GetValue<Gaps<TSource, TSpec> >::Type
getValue(Gaps<TSource, TSpec> & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
typedef typename Value<TSource>::Type TValue;
if (isGap(me, view_pos)) return gapValue<TValue>();
else return value(source(me), toSourcePosition(me, view_pos));
}
template <typename TSource, typename TSpec, typename TPosition>
inline typename GetValue<Gaps<TSource, TSpec> >::Type
getValue(Gaps<TSource, TSpec> const & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
typedef typename Value<TSource>::Type TValue;
if (isGap(me, view_pos)) return gapValue<TValue>();
else return value(source(me), toSourcePosition(me, view_pos));
}
//////////////////////////////////////////////////////////////////////////////
///.Function.value.param.container.type:Class.Gaps
template <typename TSource, typename TSpec, typename TPosition>
inline typename Reference<Gaps<TSource, TSpec> >::Type
value(Gaps<TSource, TSpec> & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
typedef typename Reference<Gaps<TSource, TSpec> >::Type TReference;
return TReference(iter(me, view_pos));
}
template <typename TSource, typename TSpec, typename TPosition>
inline typename Reference<Gaps<TSource, TSpec> const>::Type
value(Gaps<TSource, TSpec> const & me,
TPosition view_pos)
{
SEQAN_CHECKPOINT
typedef typename Reference<Gaps<TSource, TSpec> const>::Type TReference;
return TReference(iter(me, view_pos));
}
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
/**
.Function.emptySource:
..summary:Test if there is a source.
..cat:Alignments
..signature:bool emptySource(object)
..param.object:An object that could habe a source.
...type:Class.Gaps
..returns:$true$ if $object$ has a @Function.source@, $false$ otherwise.
..see:Function.source
..see:Metafunction.Source
..include:seqan/align.h
*/
template <typename TSource, typename TSpec>
inline bool
emptySource(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
bool ret = empty(_dataSource(me));
return ret;
}
template <typename TSource, typename TSpec>
inline bool
emptySource(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
bool ret = empty(_dataSource(me));
return ret;
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.dependentSource:
..summary:Test if object depends from it's source.
..cat:Alignments
..signature:bool dependentSource(object)
..param.object:An object that has a source.
...type:Class.Gaps
..returns:$true$ if the source of $object$ is a stand alone object that is
not managed by $object$. $false$ otherwise.
..remarks:This function returns $false$, if the @Function.source@ is @Function.emptySource.empty@.
..remarks.text:If both @Function.emptySource@ and @Function.dependentSource@ are false, $object$ is the owner of the source.
..see:Function.source
..see:Metafunction.Source
..see:Function.emptySource
..include:seqan/align.h
*/
template <typename TSource, typename TSpec>
inline bool
dependentSource(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
return dependent(_dataSource(me));
}
template <typename TSource, typename TSpec>
inline bool
dependentSource(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
return dependent(_dataSource(me));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.setSource:
..summary:Let an external object be the source.
..cat:Alignments
..signature:setSource(object, source)
..signature:setSource(object, source [, begin_pos, end_pos])
..param.object:An object that will get a new source.
...type:Class.Gaps
..param.source:The new source.
...remarks:The source type can be determined by @Metafunction.Source@.
..param.begin_pos:Position of the first item in $source$ that is used in $object$. (optional)
..param.end_pos:Position behind the last item in $source$ that is used in $object$. (optional)
..remarks:After this function, $object$ @Function.dependentSource.depends@ from $source$,
and $source$ is the new source of $object$.
...text:If no $begin_pos$ and $end_pos$ are specified, the whole $source$ will be used.
..see:Function.source
..see:Function.dependentSource
..see:Metafunction.Source
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TPosition1, typename TPosition2>
inline void
setSource(Gaps<TSource, TSpec> & me,
TSource & source_,
TPosition1 clipped_begin_pos,
TPosition2 clipped_end_pos)
{
SEQAN_CHECKPOINT
setValue(_dataSource(me), source_);
_setClippedBeginPosition(me, clipped_begin_pos);
_setClippedEndPosition(me, clipped_end_pos);
clearGaps(me);
}
//____________________________________________________________________________
template <typename TSource, typename TSpec>
inline void
setSource(Gaps<TSource, TSpec> & me,
TSource & source_)
{
SEQAN_CHECKPOINT
setSource(me, source_, 0, length(source_));
}
//??? Variante mit zusaetzlich source_begin und source_end
//////////////////////////////////////////////////////////////////////////////
/**
.Function.createSource:
..summary:Creates a new source.
..cat:Alignments
..signature:createSource(object)
..param.object:An object that will get a new source.
...type:Class.Gaps
..remarks:
If $object$ has no @Function.source@, a new one is created.
If $object$ is already the owner of the source, nothing happens.
If $object$ has an external source, this source is copied.
$object$ is thereupon the owner of the source.
..see:Function.source
..see:Function.dependentSource
..see:Metafunction.Source
..include:seqan/align.h
*/
template <typename TSource, typename TSpec>
inline void
createSource(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
create(_dataSource(me));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.detach:
..cat:Alignments
..param.object.type:Class.Gaps
..include:seqan/align.h
*/
template <typename TSource, typename TSpec>
inline void
detach(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
createSource(me);
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.source:
..summary:The source of an object.
..cat:Alignments
..signature:source(object)
..param.object:An object.
...type:Class.Gaps
..returns:The source of $object$.
...type:Metafunction.Source
..remarks:The source of a @Class.Gaps@ instance is the underlying sequence without gaps.
..see:Metafunction.Source
..include:seqan/align.h
*/
template <typename TSource, typename TSpec>
inline TSource &
source(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
return value(_dataSource(me));
}
template <typename TSource, typename TSpec>
inline TSource &
source(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
return value(_dataSource(me));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.sourceSegment:
..summary:The used part of the source.
..cat:Alignments
..signature:sourceSegment(object)
..param.object:An object.
...type:Class.Gaps
..returns:The part of the @Function.source@ that is actually used by $object$.
...type:Class.Segment
..remarks:The source of a @Class.Gaps@ instance is the underlying sequence without gaps.
$sourceSegment$ is useful since @Class.Gaps@ can be limited to work on a subsequence of the source.
..see:Metafunction.Source
..see:Function.source
..include:seqan/align.h
*/
template <typename TSource, typename TSpec>
inline typename Infix<TSource>::Type
sourceSegment(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
return infix(source(me), clippedBeginPosition(me), clippedEndPosition(me));
}
template <typename TSource, typename TSpec>
inline typename Infix<TSource>::Type
sourceSegment(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
return infix(source(me), clippedBeginPosition(me), clippedEndPosition(me));
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.sourceLength:
..summary:Length of the source.
..cat:Alignments
..signature:Size sourceLength(gaps)
..param.gaps:A gaps object.
...type:Class.Gaps
..returns:Length of the used part of the source.
...metafunction:Metafunction.Size
..remarks:This function is equivalent to $clippedEndPosition(gaps) - clippedBeginPosition(gaps)$.
..include:seqan/align.h
*/
//..see:Function.clippedEndPosition
//..see:Function.clippedBeginPosition
template <typename TSource, typename TSpec>
inline typename Size<TSource>::Type
sourceLength(Gaps<TSource, TSpec> & me)
{
SEQAN_CHECKPOINT
return clippedEndPosition(me) - clippedBeginPosition(me);
}
template <typename TSource, typename TSpec>
inline typename Size<TSource>::Type
sourceLength(Gaps<TSource, TSpec> const & me)
{
SEQAN_CHECKPOINT
return clippedEndPosition(me) - clippedBeginPosition(me);
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.assignSource:
..summary:Assigns the source to a new value.
..cat:Alignments
..signature:assignSource(object, source_in)
..param.object:An object.
...type:Class.Gaps
..param.source_in:An object that is assigned to the source of $object$.
..remarks:
...note:$source_in$ is not the new @Function.source@ of $object$, but $source_in$ is assigned (copied) to @Function.source.source(object)@.
That means that the current source of $object$ is modified by this function.
If you want $object$ to drop its current source and take another object as source, use @Function.setSource@ instead.
...text:If no $begin_pos$ and $end_pos$ are specified, the whole source will be used.
...text:This function does not change whether $object$ is @Function.dependentSource.dependent@ or not.
...text:The source of $object$ must not be @Function.emptySource.empty@ for executing this function.
..see:Metafunction.Source
..see:Function.source
..see:Function.setSource
..see:Function.emptySource
..see:Function.dependentSource
..see:Function.assign
..include:seqan/align.h
*/
//____________________________________________________________________________
template <typename TSource, typename TSpec, typename TSource2>
inline void
assignSource(Gaps<TSource, TSpec> & me,
TSource2 const & source_)
{
SEQAN_CHECKPOINT
assignValue(me.data_source, source_);
_setClippedBeginPosition(me, 0);
_setClippedEndPosition(me, length(source_));
clearGaps(me);
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.moveSource:
..summary:Moves the source to a new value.
..cat:Alignments
..signature:moveSource(object, source_in [, begin_pos, end_pos])
..param.object:An object.
...type:Class.Gaps
..param.source_in:An object that is moved to the source of $object$.
..param.begin_pos:Position of the first item in the source that is used in $object$. (optional)
..param.end_pos:Position behind the last item in the source that is used in $object$. (optional)
..remarks:
...note:$source_in$ is not the new @Function.source@ of $object$, but $source_in$ is moved into @Function.source.source(object)@.
"Moved" means that $source_in$ is assigned to $source(object)$ with the possibility that $source_in$ looses its content.
That means that the current source of $object$ is modified by this function.
If you want $object$ to drop its current source and take another object as source, use @Function.setSource@ instead.
If you want $source_in$ not to become empty, use @Function.assignSource@ instead.
...text:If no $begin_pos$ and $end_pos$ are specified, the whole source will be used.
...text:This function does not change whether $object$ is @Function.dependentSource.dependent@ or not.
...text:The source of $object$ must not be @Function.emptySource.empty@ for executing this function.
..see:Metafunction.Source
..see:Function.source
..see:Function.setSource
..see:Function.emptySource
..see:Function.dependentSource
..see:Function.move
..see:Function.assignSource
..include:seqan/align.h
*/
template <typename TSource, typename TSpec, typename TSource2, typename TPosition1, typename TPosition2>
inline void
moveSource(Gaps<TSource, TSpec> & me,
TSource2 const & source_,
TPosition1 clipped_begin_pos,
TPosition2 clipped_end_pos)
{
SEQAN_CHECKPOINT
moveValue(_dataSource(me), source_);
_setClippedBeginPosition(me, clipped_begin_pos);
_setClippedEndPosition(me, clipped_end_pos);
clearGaps(me);
}
//____________________________________________________________________________
template <typename TSource, typename TSpec, typename TSource2>
inline void
moveSource(Gaps<TSource, TSpec> & me,
TSource2 const & source_)
{
SEQAN_CHECKPOINT
moveSource(me, source_, 0, length(source_));
}
//////////////////////////////////////////////////////////////////////////////
template <typename TFile, typename TSource, typename TIDString, typename TSpec>
inline void
write(TFile & target,
Gaps<TSource, TSpec> const & source,
TIDString const &,
Raw)
{
SEQAN_CHECKPOINT
// _streamWriteRange(target, begin(source), end(source));
// Print gaps row
typedef typename Iterator<Gaps<TSource, TSpec> const>::Type TIter;
TIter begin_ = begin(source);
TIter end_ = end(source);
for (; begin_ != end_; ++begin_) {
if (isGap(begin_))
_streamPut(target, gapValue<char>());
else
_streamPut(target, *begin_);
}
}
//////////////////////////////////////////////////////////////////////////////
// stream operators
//////////////////////////////////////////////////////////////////////////////
template <typename TStream, typename TSource, typename TSpec>
inline TStream &
operator << (TStream & target,
Gaps<TSource, TSpec> const & source)
{
SEQAN_CHECKPOINT
write(target, source);
return target;
}
//////////////////////////////////////////////////////////////////////////////
/*
template <typename TStream, typename TSource, typename TSpec>
inline TStream &
operator >> (TStream & source,
Gaps<TSource, TSpec> & target)
{
SEQAN_CHECKPOINT
read(source, target);
return source;
}
*/
//////////////////////////////////////////////////////////////////////////////
// Comparison Operators
//////////////////////////////////////////////////////////////////////////////
template <typename TLeftSource, typename TLeftSpec, typename TRightSource, typename TRightSpec >
inline bool
operator == (Gaps<TLeftSource, TLeftSpec> const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isEqual(_lex);
}
template <typename TLeftSource, typename TLeftSpec, typename TRight >
inline bool
operator == (Gaps<TLeftSource, TLeftSpec> const & left,
TRight const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isEqual(_lex);
}
template <typename TLeft, typename TRightSource, typename TRightSpec >
inline bool
operator == (TLeft const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TRightSource, TRightSpec> >::Type _lex(left, right);
return isEqual(_lex);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TLeftSource, typename TLeftSpec, typename TRightSource, typename TRightSpec >
inline bool
operator != (Gaps<TLeftSource, TLeftSpec> const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isNotEqual(_lex);
}
template <typename TLeftSource, typename TLeftSpec, typename TRight >
inline bool
operator !=(Gaps<TLeftSource, TLeftSpec> const & left,
TRight const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isNotEqual(_lex);
}
template <typename TLeft, typename TRightSource, typename TRightSpec >
inline bool
operator != (TLeft const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TRightSource, TRightSpec> >::Type _lex(left, right);
return isNotEqual(_lex);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TLeftSource, typename TLeftSpec, typename TRightSource, typename TRightSpec >
inline bool
operator < (Gaps<TLeftSource, TLeftSpec> const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isLess(_lex);
}
template <typename TLeftSource, typename TLeftSpec, typename TRight>
inline bool
operator < (Gaps<TLeftSource, TLeftSpec> const & left,
TRight const & right)
{
SEQAN_CHECKPOINT
return isLess(left, right, typename DefaultPrefixOrder<Gaps<TLeftSource, TLeftSpec> >::Type());
}
template <typename TLeft, typename TRightSource, typename TRightSpec >
inline bool
operator < (TLeft const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TRightSource, TRightSpec> >::Type _lex(left, right);
return isLess(_lex);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TLeftSource, typename TLeftSpec, typename TRightSource, typename TRightSpec >
inline bool
operator <= (Gaps<TLeftSource, TLeftSpec> const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isLessOrEqual(_lex);
}
template <typename TLeftSource, typename TLeftSpec, typename TRight>
inline bool
operator <= (Gaps<TLeftSource, TLeftSpec> const & left,
TRight const & right)
{
SEQAN_CHECKPOINT
return isLessOrEqual(left, right, typename DefaultPrefixOrder<Gaps<TLeftSource, TLeftSpec> >::Type());
}
template <typename TLeft, typename TRightSource, typename TRightSpec >
inline bool
operator <= (TLeft const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TRightSource, TRightSpec> >::Type _lex(left, right);
return isLessOrEqual(_lex);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TLeftSource, typename TLeftSpec, typename TRightSource, typename TRightSpec >
inline bool
operator > (Gaps<TLeftSource, TLeftSpec> const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isGreater(_lex);
}
template <typename TLeftSource, typename TLeftSpec, typename TRight>
inline bool
operator > (Gaps<TLeftSource, TLeftSpec> const & left,
TRight const & right)
{
SEQAN_CHECKPOINT
return isGreater(left, right, typename DefaultPrefixOrder<Gaps<TLeftSource, TLeftSpec> >::Type());
}
template <typename TLeft, typename TRightSource, typename TRightSpec >
inline bool
operator > (TLeft const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TRightSource, TRightSpec> >::Type _lex(left, right);
return isGreater(_lex);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TLeftSource, typename TLeftSpec, typename TRightSource, typename TRightSpec >
inline bool
operator >= (Gaps<TLeftSource, TLeftSpec> const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TLeftSource, TLeftSpec> >::Type _lex(left, right);
return isGreaterOrEqual(_lex);
}
template <typename TLeftSource, typename TLeftSpec, typename TRight>
inline bool
operator >= (Gaps<TLeftSource, TLeftSpec> const & left,
TRight const & right)
{
SEQAN_CHECKPOINT
return isGreaterOrEqual(left, right, typename DefaultPrefixOrder<Gaps<TLeftSource, TLeftSpec> >::Type());
}
template <typename TLeft, typename TRightSource, typename TRightSpec >
inline bool
operator >= (TLeft const & left,
Gaps<TRightSource, TRightSpec> const & right)
{
SEQAN_CHECKPOINT
typename Comparator<Gaps<TRightSource, TRightSpec> >::Type _lex(left, right);
return isGreaterOrEqual(_lex);
}
//////////////////////////////////////////////////////////////////////////////
}// namespace SEQAN_NAMESPACE_MAIN
#endif //#ifndef SEQAN_HEADER_...
|