File: BootstrapWriter.hpp

package info (click to toggle)
salmon 1.10.3%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 35,148 kB
  • sloc: cpp: 200,707; ansic: 171,082; sh: 859; python: 792; makefile: 238
file content (15 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __BOOTSTRAP_WRITER_HPP__
#define __BOOTSTRAP_WRITER_HPP__

#include <mutex>
#include <vector>

class BootstrapWriter {
public:
  virtual ~BootstrapWriter() {}
  virtual bool writeHeader(std::string& comments,
                           std::vector<Transcript>& transcripts) = 0;
  virtual bool writeBootstrap(std::vector<double>& abund) = 0;
};

#endif // __BOOTSTRAP_WRITER_HPP__