I am using a software needs reference geneome in .gbk format (which is obseleted by genebank and is replaced by gbff). I searched to find a file convertor however I failed. I supposed gb and gbk are the same, so I renamed gb to gbk, however didnt help. I appriciate any help.
I am going to share the command I used to convert the gbff to gbk:
from Bio import SeqIO
# Specify input and output filenames
input_file = "GCF_000013425.1_ASM1342v1_genomic.gbff"
output_file = "GCF_000013425.1_ASM1342v1_genomic.gbk"
# Read the GenBank Flat File
records = SeqIO.parse(input_file, "genbank")
# Write records in GenBank format
SeqIO.write(records, output_file, "genbank")