vdj_pipe
pipeline for processing DNA sequence data
print_gdst.hpp
Go to the documentation of this file.
1 
7 #ifndef PRINT_GDST_HPP_
8 #define PRINT_GDST_HPP_
9 #include <iosfwd>
10 #include "vdj_pipe/config.hpp"
12 
13 namespace vdj_pipe{ namespace gdst{
14 class Gdst;
15 
18 VDJ_PIPE_DECL std::ostream& operator<<(std::ostream& os, Gdst const& st);
19 
22 VDJ_PIPE_DECL std::ostream& print(std::ostream& os, const Branch_id bid, Gdst const& st);
23 
26 VDJ_PIPE_DECL std::ostream& dot(
27  std::ostream& os,
28  Gdst const& st,
29  const bool sl = true
30 );
31 
32 }//namespace gdst
33 }//namespace vdj_pipe
34 #endif /* PRINT_GDST_HPP_ */
std::ostream & dot(std::ostream &os, Gdst const &st, const bool sl)
Definition: print_gdst.cpp:70
std::ostream & operator<<(std::ostream &os, Gdst const &st)
Definition: print_gdst.cpp:40
Main namespace of vdj_pipe library.
Definition: keywords_variable.hpp:11
#define VDJ_PIPE_DECL
Definition: config.hpp:23
std::ostream & print(std::ostream &os, const Branch_id bid, Gdst const &st)
Definition: print_gdst.cpp:18