Home | Trees | Indices | Help |
---|
|
1 #! /usr/bin/env python 2 3 ''' 4 tfasta: Parses and creates fasta files 5 Copyright (c) 2014, James C. Stroud; All rights reserved. 6 ''' 7 8 from _version import __version__ 9 10 from _tfasta import fasta_parser, make_fasta, make_fasta_from_dict, \ 11 T_DEF, T_SWISS, T_PDB, T_NR, T_NRBLAST, \ 12 FASTA_WIDTH 13 14 __all__ = ["fasta_parser", "make_fasta", "make_fasta_from_dict", 15 "T_DEF", "T_SWISS", "T_PDB", "T_NR", "T_NRBLAST", 16 "FASTA_WIDTH"] 17
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Wed Apr 9 18:04:11 2014 | http://epydoc.sourceforge.net |