From 70086caad5601b1edf37067e9f0ffdd7aa6db909 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Fri, 18 Apr 2014 16:28:55 -0400 Subject: add not about osx --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 5786016..88c5e61 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,19 @@ # dna-utils +## building + +Building is easy using make. + +Linux: + + make + make install + +OS/X or if you don't have getline: + + make -f Makefile.osx + make install This repository contains general utilities for processing sequences in fasta files. -- cgit v1.2.1 From f50523dd7f0d26a482c55fa6c78035b70011172e Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Fri, 18 Apr 2014 17:22:08 -0400 Subject: add more tests --- tests/test_fasta/kmer_locations2.fa | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/test_fasta/kmer_locations2.fa diff --git a/tests/test_fasta/kmer_locations2.fa b/tests/test_fasta/kmer_locations2.fa new file mode 100644 index 0000000..6d8115d --- /dev/null +++ b/tests/test_fasta/kmer_locations2.fa @@ -0,0 +1,8 @@ +> header 1 +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGGGGG +> header 2 +GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG +GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG +GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGTTTTT -- cgit v1.2.1