aboutsummaryrefslogtreecommitdiff
path: root/src/c/kmer_utils.c
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-05-06 12:58:09 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2014-05-06 12:58:09 -0400
commitf251dc46c40501704bfebf2d778577b1f1dc3484 (patch)
treef09e5c15a0b2ce33f7020310161d3f44cfe1c62f /src/c/kmer_utils.c
parent151602f582746f8374a3f8bc4ea1ffdbcc4a513a (diff)
parent958b167c741c2928021216fddadf24ecdabfbf61 (diff)
werks
Diffstat (limited to 'src/c/kmer_utils.c')
-rw-r--r--src/c/kmer_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/kmer_utils.c b/src/c/kmer_utils.c
index 1ca522a..b85dbda 100644
--- a/src/c/kmer_utils.c
+++ b/src/c/kmer_utils.c
@@ -95,7 +95,7 @@ unsigned long long * get_kmer_counts_from_file(const char *fn, const unsigned in
unsigned long long str_size = 4096;
- while ((read = getdelim(&line, &len, '>', fh)) != -1) {
+ while ((read = getseq(&line, &len, fh)) != -1) {
// find our first \n, this should be the end of the header
char *start = strchr(line, '\n');