Mercurial > repos > rnateam > splitfasta
view splitFasta.py @ 3:7439ffbd8943 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/hacked/splitFasta commit 9ffd40a178fb3aa8fff618f95d8b3fd7bf58240d
author | rnateam |
---|---|
date | Wed, 08 Jul 2015 06:23:46 -0400 |
parents | bc25ba9d9fcf |
children | ae4d5733272f |
line wrap: on
line source
import sys, os if __name__ == "__main__": #assuming perfect input, read every two lines inpath = sys.argv[1] file_contents = open(inpath, 'r').readlines() os.makedirs('splits') inname = os.path.basename(inpath) for i in range(0, len(file_contents), 2): headline = file_contents[i] outname = headline[1:headline.index(' ')]+'.fa' outfile = open(os.path.join('splits',outname), 'w') outfile.write(file_contents[i]) outfile.write(file_contents[i+1]) outfile.close()