Skip to content

Commit b4447c8

Browse files
committed
syncing bus definitions
1 parent b1e85d5 commit b4447c8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/BUSData.h

+7-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ struct BUSHeader {
1818
std::string text;
1919
std::vector<BUSTranscript> transcripts;
2020
std::vector<std::vector<int32_t>> ecs;
21+
uint32_t version;
22+
uint32_t bclen;
23+
uint32_t umilen;
24+
BUSHeader() : version(0), bclen(0), umilen(0) {}
25+
2126
};
2227

2328
struct BUSData {
@@ -26,8 +31,8 @@ struct BUSData {
2631
int32_t ec;
2732
uint32_t count;
2833
uint32_t flags;
29-
30-
BUSData() : barcode(0), UMI(0), ec(-1), count(0), flags(0) {}
34+
uint32_t pad;
35+
BUSData() : barcode(0), UMI(0), ec(-1), count(0), flags(0), pad(0) {}
3136
};
3237

3338
uint64_t stringToBinary(const std::string &s, uint32_t &flag);

0 commit comments

Comments
 (0)