Changeset 1474:cea8c4d68ad0

Show
Ignore:
Timestamp:
08/21/08 08:54:51 (5 months ago)
Author:
Greg Von Kuster <greg@bx.psu.edu>
branch:
default
Message:

Reverting extract_genomic_dna and blat_wrapper tools to rev 1472.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/extract/extract_genomic_dna.py

    r1473 r1474  
    3636        line = line.rstrip( '\r\n' ) 
    3737        if line and not line.startswith( "#" ) and line.startswith( 'seq' ): 
    38             fields = line.split(
     38            fields = line.split( '\t'
    3939            if len( fields ) < 3: 
    4040                continue 
     
    5050        line = line.rstrip( '\r\n' ) 
    5151        if line and not line.startswith( "#" ):  
    52             fields = line.split(
     52            fields = line.split( '\t'
    5353            if len( fields ) < 2: 
    5454                continue 
  • tools/metag_tools/blat_wrapper.py

    r1473 r1474  
    1616        line = line.rstrip( '\r\n' ) 
    1717        if line and not line.startswith( "#" ): 
    18             fields = line.split(
     18            fields = line.split( '\t'
    1919            if len( fields ) < 3: 
    2020                continue 
     
    3232        line = line.rstrip( '\r\n' ) 
    3333        if line and not line.startswith( "#" ):  
    34             fields = line.split(
     34            fields = line.split( '\t'
    3535            if len( fields ) < 2: 
    3636                continue