[Bioperl-l] Beginners question

Charles Hauser chauser@duke.edu
06 Sep 2002 16:03:35 -0400


I have been working my way thru  http://doc.bioperl.org/bioperl-live/
and I am trying to find a compilation and explanation for the options
avaliable for Bio::SearchIO (-format etc.).  


my $in = Bio::SearchIO->new(-format => 'psiblast',
			    -file   => '<../../../20020630/BLAST/ak.bx', 			    -signif =>
0.1,
			    -shallow_parse => 1,
			    -hold_raw_data => 1 );

I would like to set cutoff values for parsing blast reports, can I do
that by setting:
	-significance => 1e-10
	-frac_identical_hit => 60

for example?

Charles