subhomoi.bk has asked for the wisdom of the Perl Monks concerning the following question:
i m new to bioperl..plz help me on this..when i used the following code...an error msg comes "Target sequence not defined"..so where is $bio_seq? i want to design a siRNA prediction tool
use Bio::Tools::SiRNA; my $sirna_designer = Bio::Tools::SiRNA->new( -target => $bio_seq, -rules => 'tuschl' ); <p> where should i put the target sequence</p> my @pairs = $sirna_designer->design; foreach $pair (@pairs) { my $sense_oligo_sequence = $pair->sense->seq; my $antisense_oligo_sequence = $pair->antisense->seq; print join ("\t", $pair->start, $pair->end, $pair->rank, $sense_oligo_sequence, $antisense_oligo_sequence), " +\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: bioperl problem
by vivekkrish (Initiate) on Jun 03, 2011 at 20:38 UTC | |
|
Re: bioperl problem
by Anonymous Monk on Jun 03, 2011 at 20:13 UTC |