diff options
author | Calvin <calvin@EESI> | 2013-05-15 11:38:31 -0400 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-05-15 11:38:31 -0400 |
commit | f5e6c210a95a98a4381e6142ad599e1ec3f8eff6 (patch) | |
tree | a5ceb05281dee78d4221eb9285ce1b52b36c1991 /src/c/quikr_train.c | |
parent | 8f32a80e865bd1bbde4c15be3f1d7ce9c3f9a430 (diff) |
add some error checking
Diffstat (limited to 'src/c/quikr_train.c')
-rw-r--r-- | src/c/quikr_train.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/c/quikr_train.c b/src/c/quikr_train.c index f19a554..1585629 100644 --- a/src/c/quikr_train.c +++ b/src/c/quikr_train.c @@ -22,7 +22,7 @@ int main(int argc, char **argv) { int c; - int kmer = 0; + int kmer = 6; char *fasta_file = NULL; char *output_file = NULL; @@ -88,15 +88,17 @@ int main(int argc, char **argv) { exit(EXIT_FAILURE); } - if(kmer == 0) - kmer = 6; - if(verbose) { printf("kmer size: %d\n", kmer); printf("fasta file: %s\n", fasta_file); printf("output file: %s\n", output_file); } + if(access (fasta_file, F_OK) == -1) { + fprintf(stderr, "Error: could not find %s\n", fasta_file); + exit(EXIT_FAILURE); + } + if(strcmp(&output_file[strlen(output_file) - 3], ".gz") != 0) { char *temp = malloc(sizeof(strlen(output_file) + 4)); sprintf(temp, "%s.gz", output_file); @@ -107,6 +109,9 @@ int main(int argc, char **argv) { // 4 ^ Kmer gives us the width, or the number of permutations of ACTG with kmer length int width = pow(4, kmer); int sequences = count_sequences(fasta_file); + if(sequences == 0) { + fprintf(stderr, "Error: %s contains 0 fasta sequences\n", fasta_file); + } if(verbose) printf("sequences: %d\nwidth: %d\n", sequences, width); |