Revision 3a78098f11e03b0136e9f4bb3aa587d528f08d3f authored by Asher Preska Steinberg on 09 February 2021, 19:22:11 UTC, committed by Asher Preska Steinberg on 09 February 2021, 19:22:11 UTC
1 parent a3cece3
APS150_makeSRAList.py
import glob
pileupList = glob.glob('*_1.fastq')
file = open('APS150_downloaded_sra_list', 'w+')
for pileup in pileupList:
pilestr = pileup.split('_')
file.write(pilestr[0]+"\n")
file.close()
print(len(pileupList))
Computing file changes ...