Skip to content

Instantly share code, notes, and snippets.

@coela
Last active December 9, 2016 05:07
Show Gist options
  • Save coela/3d07e7a649e6518842a2c49281087ab4 to your computer and use it in GitHub Desktop.
Save coela/3d07e7a649e6518842a2c49281087ab4 to your computer and use it in GitHub Desktop.
import glob
files = glob.glob('./*.gbff')
for file in files:
fileHandle = open( file , 'r' )
for line in fileHandle:
line = line.rstrip()
print line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment