blob: c217e1cf0e572506586e91dbbe310da1bbb7f5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# dna-utils
This repository contains general utilities for processing sequences in fasta files.
### Tools included ###
kmer_total_count - this program will count each kmer in a fasta file, and print to standard out.
#### Usage
kmer_total_count filename kmer_size
# Example
calvin@barnabas:~/dna-utils$ ./kmer_total_count SuperManSequences.fasta 8
the order of the array corresponds to AAAA, AAAC, AAAG, AAAT and so on
|