1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#!/usr/bin/env python
__all__ = ['test_aaindex',
'test_agilent_microarray',
'test_blast',
'test_bpseq',
'test_cigar',
'test_clustal',
'test_cutg',
'test_dialign',
'test_ebi',
'test_fasta',
'test_fastq',
'test_genbank',
'test_illumina_sequence',
'test_locuslink',
'test_mage',
'test_meme',
'test_msms',
'test_ncbi_taxonomy',
'test_nexus',
'test_pdb',
'test_structure',
'test_phylip',
'test_record',
'test_record_finder',
'test_rfam',
'test_rna_fold',
'test_rnaview',
'test_sprinzl',
'test_tree',
'test_unigene'
'test_stride']
__author__ = ""
__copyright__ = "Copyright 2007-2012, The Cogent Project"
__credits__ = ["Jeremy Widmann", "Catherine Lozuopone", "Gavin Huttley",
"Rob Knight", "Sandra Smit", "Micah Hamady",
"Jeremy Widmann", "Hua Ying", "Greg Caporaso",
"Zongzhi Liu", "Jason Carnes", "Peter Maxwell",
"Marcin Cieslik"]
__license__ = "GPL"
__version__ = "1.5.3"
__maintainer__ = "Rob Knight"
__email__ = "rob@spot.colorado.edu"
__status__ = "Production"
|