comparison data_manager/resource_building.py @ 13:098693479a9d draft

planemo upload commit 64366857c1f29dd79a77dc331eb0153cb94cdb11
author proteore
date Wed, 17 Apr 2019 10:01:29 -0400
parents f6afaa1f562c
children 3f9ba522bfe8
comparison
equal deleted inserted replaced
12:f6afaa1f562c 13:098693479a9d
506 path = os.path.join(target_directory,output_file) 506 path = os.path.join(target_directory,output_file)
507 name = "neXtProt release "+time.strftime("%d-%m-%Y") 507 name = "neXtProt release "+time.strftime("%d-%m-%Y")
508 id = "nextprot_ref_"+time.strftime("%d-%m-%Y") 508 id = "nextprot_ref_"+time.strftime("%d-%m-%Y")
509 509
510 510
511 with open(path, 'w') as output: 511 output = open(path, 'w')
512 writer = csv.writer(output,delimiter="\t") 512 writer = csv.writer(output,delimiter="\t")
513 513
514 514
515 515
516 nextprot_file=[["NextprotID","MW","SeqLength","IsoPoint","Chr","SubcellLocations","Diseases","TMDomains","ProteinExistence"]] 516 nextprot_file=[["NextprotID","MW","SeqLength","IsoPoint","Chr","SubcellLocations","Diseases","TMDomains","ProteinExistence"]]
517 for id in ids : 517 for id in ids :