vdj_pipe
pipeline for processing DNA sequence data
step_factory.hpp
Go to the documentation of this file.
1 
7 #ifndef STEP_FACTORY_HPP_
8 #define STEP_FACTORY_HPP_
9 #include "boost/property_tree/ptree_fwd.hpp"
10 
11 namespace vdj_pipe{
12 class Pipe_environment;
13 
16 template<class Config> typename Config::processing_step create_step(
17  typename Config::value_map_access const& vma,
18  boost::property_tree::ptree const& pt,
19  Pipe_environment& pe
20 );
21 
22 }//namespace vdj_pipe
23 #endif /* STEP_FACTORY_HPP_ */
Main namespace of vdj_pipe library.
Definition: sequence_file.hpp:14