vdj_pipe
pipeline for processing DNA sequence data
step_factory_single.hpp
Go to the documentation of this file.
1 
7 #ifndef STEP_FACTORY_SINGLE_HPP_
8 #define STEP_FACTORY_SINGLE_HPP_
11 #include "vdj_pipe/config.hpp"
13 
14 namespace vdj_pipe{
15 
18 VDJ_PIPE_DECL step_variant_single create_step_single(
19  Vm_access_single const& vma,
20  boost::property_tree::ptree const& pt,
21  Pipe_environment& pe
22 );
23 
26 template<> inline Config_single_reads::processing_step
27 create_step<Config_single_reads>(
28  Config_single_reads::value_map_access const& vma,
29  boost::property_tree::ptree const& pt,
30  Pipe_environment& pe
31 ) {
32  return create_step_single(vma, pt, pe);
33 }
34 
35 }//namespace vdj_pipe
36 #endif /* STEP_FACTORY_SINGLE_HPP_ */
Main namespace of vdj_pipe library.
Definition: sequence_file.hpp:14