Skip to content

Commit

Permalink
fixing alevin issue
Browse files Browse the repository at this point in the history
  • Loading branch information
k3yavi committed Jun 13, 2021
1 parent 9580fd5 commit a7a6f13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/SingleCellProtocols.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ namespace alevin{
}
// NOTE: these do nothing but satisfy
// template requirements right now
void set_umi_geo(TagGeometry& g) { (void)g; };
void set_bc_geo(TagGeometry& g) { (void)g; };
void set_umi_geo(TagGeometry& g) { umiLength = g.length1 + g.length2; };

This comment has been minimized.

Copy link
@k3yavi

k3yavi Jun 13, 2021

Author Member

@rob-p Does this makes sense for #670 ?

void set_bc_geo(TagGeometry& g) { barcodeLength = g.length1 + g.length2; };
void set_read_geo(TagGeometry& g) { (void)g; };
uint32_t barcode_length() const { return barcodeLength; }
uint32_t umi_length() const { return umiLength; }
Expand Down

0 comments on commit a7a6f13

Please sign in to comment.