MCPcopy Create free account
hub / github.com/BirolLab/abyss / writeHeader

Function writeHeader

Bloom/Bloom.h:136–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134 }
135
136 inline static void writeHeader(std::ostream& out, const FileHeader& header)
137 {
138 (void)writeHeader;
139
140 out << BLOOM_VERSION << '\n';
141 out << Kmer::length() << '\n';
142 out << header.fullBloomSize
143 << '\t' << header.startBitPos
144 << '\t' << header.endBitPos
145 << '\n';
146 out << header.hashSeed << '\n';
147 assert(out);
148 }
149
150 FileHeader readHeader(std::istream& in)
151 {

Callers 2

writeMethod · 0.85
writeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected