importre# reading given tsv filewithopen("uniprotkb_protein_name_AND_model_organi_2024_01.tsv",'r')asmyfile:withopen("protein_name.csv",'w')ascsv_file:forlineinmyfile:# Replace every tab with commafileContent=re.sub("\t",";",line)# Writing into csv filecsv_file.write(fileContent)# outputprint("Successfully made csv file")