view mothur/lib/galaxy/datatypes/converters/ref_to_seq_taxonomy_converter.py @ 26:5c77423823cb

Updates for Mothur version 1.25.0 (includes changes to datatypes metagenomics.py and uses more efficient means for labels and groups options)
author Jim Johnson <jj@umn.edu>
date Wed, 16 May 2012 13:12:05 -0500
parents 57df76d861e4
children
line wrap: on
line source

#!/usr/bin/env python
"""
convert a ref.taxonommy file to a seq.taxonomy file
Usage:
%python ref_to_seq_taxonomy_converter.py <ref.taxonommy_filename> <seq.taxonomy_filename> 
"""

import sys, os, re
from math import *

assert sys.version_info[:2] >= ( 2, 4 )

def stop_err( msg ):
    sys.stderr.write( "%s" % msg )
    sys.exit()

def __main__():
    infile_name = sys.argv[1]
    outfile = open( sys.argv[2], 'w' )
    pat = '^([^ \t\n\r\x0c\x0b;]+([(]\\d+[)])?(;[^ \t\n\r\x0c\x0b;]+([(]\\d+[)]))*(;)?)$'
    for i, line in enumerate( file( infile_name ) ):
        line = line.rstrip() # eliminate trailing space and new line characters
        if not line or line.startswith( '#' ):
            continue
        fields = line.split('\t')
        # make sure the 2nd field (taxonomy) ends with a ;
        outfile.write('%s\t%s;\n' % (fields[0], re.sub(';$','',fields[1])))

    outfile.close()

if __name__ == "__main__": __main__()