diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-05-06 12:58:09 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-05-06 12:58:09 -0400 |
commit | f251dc46c40501704bfebf2d778577b1f1dc3484 (patch) | |
tree | f09e5c15a0b2ce33f7020310161d3f44cfe1c62f /src/c/kmer_utils.c | |
parent | 151602f582746f8374a3f8bc4ea1ffdbcc4a513a (diff) | |
parent | 958b167c741c2928021216fddadf24ecdabfbf61 (diff) |
werks
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 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'); |