Skip to content

Commit

Permalink
[MISC] add type alias with deprecation for seqan3::sam_dna16
Browse files Browse the repository at this point in the history
Signed-off-by: Lydia Buntrock <[email protected]>
  • Loading branch information
Irallia committed Apr 20, 2021
1 parent b6d9b8a commit 5eb6a00
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion include/seqan3/alphabet/nucleotide/sam_dna16.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@
/*!\file
* \brief [DEPRECATED] Provides seqan3::dna16sam.
* \author Svenja Mehringer <svenja.mehringer AT fu-berlin.de>
* \deprecated This header will be removed in 3.1. Please use seqan3/alphabet/nucleotide/dna16sam.hpp instead.
* \deprecated This header will be removed in 3.1.0; Please \#include seqan3/alphabet/nucleotide/dna16sam.hpp instead.
*/

#pragma once

#include <seqan3/alphabet/nucleotide/dna16sam.hpp>

namespace seqan3
{
//!\deprecated Please use seqan3::dna16sam instead.
using sam_dna16 SEQAN3_DEPRECATED_310 = seqan3::dna16sam;
} // namespace seqan3

SEQAN3_DEPRECATED_HEADER(
"This header is deprecated and will be removed in SeqAn-3.1.0; Please #include <seqan3/alphabet/nucleotide/dna16sam.hpp> instead.")

0 comments on commit 5eb6a00

Please sign in to comment.