improve csv_to_galaxy 2

This commit is contained in:
Déborah Servili 2017-01-30 14:53:08 +01:00
parent 5b68ec56db
commit bc05a2aeee

View file

@ -36,6 +36,7 @@ if __name__ == '__main__':
temp["description"] = "" temp["description"] = ""
if args.value_description is not None: if args.value_description is not None:
for i in args.value_description: for i in args.value_description:
if data[i] != "":
temp["description"] = temp["description"] + data[i].replace('\n', ' ') + "; " temp["description"] = temp["description"] + data[i].replace('\n', ' ') + "; "
else: else:
for i in range(len(data)): for i in range(len(data)):