Package tfasta
[hide private]
[frames] | no frames]

Source Code for Package tfasta

 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