vdj_pipe
pipeline for processing DNA sequence data
sequence_map_types.hpp
Go to the documentation of this file.
1 
7 #ifndef SEQUENCE_MAP_TYPES_HPP_
8 #define SEQUENCE_MAP_TYPES_HPP_
9 
10 namespace vdj_pipe{ namespace detail{
11 
14 typedef std::pair<std::string,std::string> match_seq;
15 typedef std::vector<match_seq> name_seq_vector;
16 typedef std::vector<std::string> string_vector;
17 typedef std::vector<string_vector> string_table;
18 
19 }//namespace detail
20 }//namespace vdj_pipe
21 #endif /* SEQUENCE_MAP_TYPES_HPP_ */
std::vector< std::string > string_vector
Definition: sequence_map_types.hpp:16
Main namespace of vdj_pipe library.
Definition: keywords_variable.hpp:11
std::vector< string_vector > string_table
Definition: sequence_map_types.hpp:17
std::pair< std::string, std::string > match_seq
Definition: sequence_map_types.hpp:14
std::vector< match_seq > name_seq_vector
Definition: sequence_map_types.hpp:15