vdj_pipe
pipeline for processing DNA sequence data
step_variant_universal.hpp
Go to the documentation of this file.
1 
7 #ifndef STEP_VARIANT_UNIVERSAL_HPP_
8 #define STEP_VARIANT_UNIVERSAL_HPP_
9 #include "boost/mpl/vector.hpp"
10 
11 namespace vdj_pipe{
12 class Blank_step;
13 class Histogram_step;
14 class Write_value;
15 
16 namespace step{
17 
20 typedef boost::mpl::vector<
21  Blank_step,
22  Histogram_step,
23  Write_value
25 
26 }//namespace step
27 }//namespace vdj_pipe
28 #endif /* STEP_VARIANT_UNIVERSAL_HPP_ */
boost::mpl::vector< Blank_step, Histogram_step, Write_value > universal_steps
List of steps that can be used in all pipes.
Definition: step_variant_universal.hpp:24
Main namespace of vdj_pipe library.
Definition: keywords_variable.hpp:11