[Bioperl-l] Problems running blast
James Wasmuth
james.wasmuth at ed.ac.uk
Fri Feb 6 05:36:42 EST 2004
input can be:
* sequence object
* array ref of sequence objects
* filename of file containing fasta formatted sequences
best bet is create a Seq object. From the HOWTO:
use IO::String;
use Bio::SeqIO;
# get a string into $string somehow, with its format in
# $format, say from a web form
my $stringfh = new IO::String($string);
my $seqio = new Bio::SeqIO(-fh => $stringfh,
-format => $format);
while( my $seq = $seqio->next_seq ) {
# process each seq
}
hth
james
Hong Ching Lee wrote:
>Hey everyone,
>
>I have a question about whether i can run remote blast using just a string
>or whether i have to make it into a fasta format file. Can anyone help me
>with this?
>
>Thank You,
>Hong
>_______________________________________________
>Bioperl-l mailing list
>Bioperl-l at portal.open-bio.org
>http://portal.open-bio.org/mailman/listinfo/bioperl-l
>
>
--
Nematode Bioinformatics ||
Blaxter Nematode Genomics Group ||
School of Biological Sciences ||
Ashworth Laboratories ||
King's Buildings || tel: +44 131 650 7403
University of Edinburgh || web: www.nematodes.org
Edinburgh ||
EH9 3JT ||
UK ||
"I have not failed. I've just found 10,000 ways that don't work."
--- Thomas Edison
More information about the Bioperl-l
mailing list