vdj_pipe
pipeline for processing DNA sequence data
pipeline_input.hpp
Go to the documentation of this file.
1 
7 #ifndef PIPELINE_INPUT_HPP_
8 #define PIPELINE_INPUT_HPP_
9 
10 namespace vdj_pipe{
11 
14 template<class Config> class Pipeline_input {
15  typedef typename Config::step_type step_type;
16  typedef typename Config::value_map_access vm_access;
17  typedef std::vector<step_type> step_vector;
18 public:
19 
20 
21 };
22 
23 }//namespace vdj_pipe
24 #endif /* PIPELINE_INPUT_HPP_ */
Config::value_map_access vm_access
Definition: pipeline_input.hpp:16
Config::step_type step_type
Definition: pipeline_input.hpp:15
Main namespace of vdj_pipe library.
Definition: keywords_variable.hpp:11
Definition: pipeline_input.hpp:14
std::vector< step_type > step_vector
Definition: pipeline_input.hpp:17