I am trying to parse a fasta file in Biopython using the following code.How can I solve this error?
from Bio import SeqIO
handle = open("C:/Users/Desktop/kk.fasta", "rU")
File "<pyshell#19>", line 1, in <module>
IOError: [Errno 2] No such file or directory: 'kk.fasta'
I am getting the above error. But my file is already there. I am using windows7 OS , python 2.7 and Biopython 1.57. Any suggestions please.