Fasta file
A format for sequences.
[edit] 1 Tricks
[edit] 1.1 BASH: Counting the number of sequences in a file
grep ">" FILE | wc -l grep ">" < INPUT | wc -l
The grep will find all of the name lines by searching for ">" and the wc will count the lines and print out the number.