Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pmelsted committed Feb 16, 2020
1 parent 72f406c commit ae81a86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/ProcessReads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1422,10 +1422,10 @@ void BUSProcessor::processBuffer() {
// find where the sequence is
const char *seq = nullptr;

int seqlen = 0;
size_t seqlen = 0;
if (singleSeq) {
const char *seq = s[seqopt.fileno] + seqopt.start;
int seqlen = l[seqopt.fileno];
seq = s[seqopt.fileno] + seqopt.start;
seqlen = l[seqopt.fileno];
} else {
seqbuffer.clear();
for (int j = 0; j < busopt.seq.size(); j++) {
Expand All @@ -1436,6 +1436,7 @@ void BUSProcessor::processBuffer() {
}
seqbuffer.push_back(0);
seq = seqbuffer.c_str();
seqlen = seqbuffer.size();
}

// copy the umi
Expand Down
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef KALLISTO_COMMON_H
#define KALLISTO_COMMON_H

#define KALLISTO_VERSION "0.46.1"
#define KALLISTO_VERSION "0.46.2"

#include <string>
#include <vector>
Expand Down

0 comments on commit ae81a86

Please sign in to comment.