According to BioPython's API, Bio.Blast.NCBIWWW.qblast() should have a parameter of specifying megablast to be true or false. When I set my qblast as
result_handle = NCBIWWW.qblast("blastn", "nr", fasta_string, megablast=True)
then I get the error of
TypeError: qblast() got an unexpected keyword argument 'megablast'
What gives? Am I doing something wrong, or does BioPython not actually have that option?
Are you using the latest version of Biopython?