diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-04-29 19:30:17 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-04-29 19:30:17 -0400 |
commit | 958b167c741c2928021216fddadf24ecdabfbf61 (patch) | |
tree | e8a240a30bf635db5209e630b173e53a95d1cc96 /src/c/kmer_utils.c | |
parent | 65709a225fe0816be6d345e1401a8d67f3a0c9d1 (diff) |
fix make clean; push changes to fix > bug
Diffstat (limited to 'src/c/kmer_utils.c')
-rw-r--r-- | src/c/kmer_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/kmer_utils.c b/src/c/kmer_utils.c index aa341f3..20a79f4 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'); |