Hello. My problem seems so super basic, I haven't found an answer in this forum... I'm really brand new in this field..
I want to convert a .sff into a .fastq according the Biopython manual:
>>> from Bio import SeqIO
>>> from StringIO import StringIO
>>> out_handle = StringIO()
>>> count = SeqIO.convert("c:HPISTN001.sff", "sff",
... out_handle, "fastq")
But how do i GET the .fastq file, stored on c:?
I want to convert a .sff into a .fastq according the Biopython manual:
>>> from Bio import SeqIO
>>> from StringIO import StringIO
>>> out_handle = StringIO()
>>> count = SeqIO.convert("c:HPISTN001.sff", "sff",
... out_handle, "fastq")
But how do i GET the .fastq file, stored on c:?
Comment