aboutsummaryrefslogtreecommitdiff
path: root/kmer_frequency_per_sequence.c
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2013-10-02 21:38:43 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2013-10-02 21:38:43 -0400
commitf47ce6202d2bb6425638a9142bbbebd7d44fb64f (patch)
tree612415c474b838247fe187eb1a68a9f9805d19e0 /kmer_frequency_per_sequence.c
parent45628e09b8f2e496a8766c442626dd6a13465286 (diff)
use an external iterator so that we can skip over anything in range of an errorw
Diffstat (limited to 'kmer_frequency_per_sequence.c')
-rw-r--r--kmer_frequency_per_sequence.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/kmer_frequency_per_sequence.c b/kmer_frequency_per_sequence.c
index ae15bd2..9cda533 100644
--- a/kmer_frequency_per_sequence.c
+++ b/kmer_frequency_per_sequence.c
@@ -1,13 +1,12 @@
// Copyright 2013 Calvin Morrison
#include <math.h>
-#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
#include "kmer_utils.h"
+long position = 0;
+
int main(int argc, char **argv) {
char *line = NULL;