diff options
author | Calvin <calvin@EESI> | 2013-02-25 14:42:56 -0500 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-02-25 14:42:56 -0500 |
commit | 05016ca3fe5e48e46efd77cce267051f6e97056e (patch) | |
tree | e77d48da2341f221ebdd8834b759dee14f602205 | |
parent | 8279f9aef5ab992d478956d4e94b6e2ec1ec690f (diff) |
fixed syntax mistake
-rw-r--r-- | multifasta_to_otu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multifasta_to_otu.py b/multifasta_to_otu.py index 110328e..34af060 100644 --- a/multifasta_to_otu.py +++ b/multifasta_to_otu.py @@ -20,7 +20,7 @@ def main(): #do: write up the description - parser = argparse.ArgumentParser(description="MultifastaOTU" + parser = argparse.ArgumentParser(description="MultifastaOTU") parser.add_argument("-i", "--input", help="directory containing fasta files", required=True) parser.add_argument("-o", "--otu-table", help="otu_table", required=True) |