Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions core/include/seqan/align/gap_anchor.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ typedef Tag<SortGapPos_> const SortGapPos;
* @headerfile <seqan/align.h>
* @brief Stores the position of an alignment character in sequence-space and in gap-space.
*
* @signature template <typename TPosition>
* struct GapAnchor;
* @signature template <typename TPos>
* struct GapAnchor<TPos>;
*
* @tparam TPos Type to store gapped/ungapped positions.
*
Expand Down Expand Up @@ -106,14 +106,14 @@ template <typename TPos>
struct GapAnchor
{
/*!
* @var VariableType GapAnchor::seqPos
* @brief Sequence character position in the ungapped sequence.
* @var TPos GapAnchor::seqPos
* @brief Sequence character position in the ungapped sequence (e.g. @link IntegerConcept @endlink).
*/
TPos seqPos; // sequence character position in the ungapped sequence

/*!
* @var VariableType GapAnchor::gapPos
* @brief Sequence character position in the gapped sequence.
* @var TPos GapAnchor::gapPos
* @brief Sequence character position in the gapped sequence (e.g. @link IntegerConcept @endlink).
*/
TPos gapPos; // sequence character position in the gapped sequence

Expand Down
2 changes: 1 addition & 1 deletion core/include/seqan/align/gaps_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ typedef Tag<ArrayGaps_> ArrayGaps;
* @brief Store the gapped version of a sequence.
*
* @signature template <typename TSequence, typename TSpec>
* class Gaps;
* class Gaps<TSequence, TSpec>;
*
* @tparam TSequence The type of the underlying sequence.
* @tparam TSpec Tag for specialization.
Expand Down
2 changes: 2 additions & 0 deletions core/include/seqan/stream/stream_gz_file.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ inline void close(Stream<GZFile> & stream);

/*!
* @class GzFileStream
* @extends Stream
* @extends StreamConcept
* @headerfile <seqan/stream.h>
* @brief Allows to open gzip-compressed files.
* @signature template <>
Expand Down