#!/bin/bash

#-----------------------------------------------------
# Test whether a fasta file is nucleic acid or protein
#-----------------------------------------------------

# Read arguments from the command line, and set variables to
# represent the arguments
infile=$1

# process the input file
cat $infile

# output the result


