File: ZmwChunkedFastxReaderImpl.cpp

package info (click to toggle)
pbbam 2.4.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 14,144 kB
  • sloc: cpp: 60,214; xml: 2,908; ansic: 660; sh: 275; python: 203; makefile: 187
file content (18 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "PbbamInternalConfig.h"

#include "ZmwChunkedFastxReaderImpl.h"

namespace PacBio {
namespace BAM {

ZmwChunkedFastxReaderImpl::ZmwChunkedFastxReaderImpl(std::string filename, const size_t numChunks)
    : fastxFilename_{std::move(filename)}
    , faiFilename_{fastxFilename_ + ".fai"}
    , index_{faiFilename_}
    , chunker_{index_, numChunks}
{}

ZmwChunkedFastxReaderImpl::~ZmwChunkedFastxReaderImpl() = default;

}  // namespace BAM
}  // namespace PacBio