|
Posted
over 11 years
ago
by
Ashton Trey Belew
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello Dario,
Below is a portion of a little script which I use for
StandAloneBlast and which uses -m 7. It doesn't exactly answer your
question, but I hope it will be similar enough to prove
|
|
Posted
over 11 years
ago
by
Darío Carballido
Hello,
Im working with this script that uses StandAloneBlastPlus, and I would like
to take advantage of a new feature in the latest releases of blast+, which
allows me to present the query coverage in the output (among other values).
For that
|
|
Posted
over 11 years
ago
by
Mark A Jensen
_______________________________________________
Bioperl-l mailing list
Bioperl-l< at >mailman.open-bio.org
http://mailman.open-bio.org/mailman/listinfo/bioperl-l
|
|
Posted
over 11 years
ago
by
Torsten Seemann
Would this do the same thing?
$rc = $hsp->hit->revcom->seq
ie. I think the hit() method returns a Seq object, so no need to convert
between strings?
--Torsten Seemann
--Victorian Bioinformatics Consortium, Dept. Microbiology, Monash
|
|
Posted
over 11 years
ago
by
Mark A Jensen
_______________________________________________
Bioperl-l mailing list
Bioperl-l< at >mailman.open-bio.org
http://mailman.open-bio.org/mailman/listinfo/bioperl-l
|
|
Posted
over 11 years
ago
by
Antony03
It almost works,
Just a little correction if this can help someone else:
$rc = Bio::Seq->new( -seq => $hsp->hit_string )->revcom->seq;
Thanks!
--
View this message in context: http://bioperl.996286.n3.nabble.com/Problem-with-revcom-tp17581p17583.html
Sent from the Bioperl-L mailing list archive at Nabble.com.
|
|
Posted
over 11 years
ago
by
Mark A. Jensen
Antony,
hit_string() returns a string, not a sequence obj.
Something like
$rc = Bio::Seq->new( -seq => $hsp->hit_string )->revcom;
should work.
MAJ
On 2014-07-17 20:14, Antony03 wrote:
|
|
Posted
over 11 years
ago
by
Antony03
Hello,
I try to reverse complement a sequence found with fasta36:
if ( $hsp->strand('query') == -1 ) {
my $rev_output=$hsp->hit_string->revcom();
print "$rev_output";
}
And I get an error like:
Can't locate object method
|
|
Posted
over 11 years
ago
by
Fields, Christopher J
It’s been moved to a separate github distribution, namely Bio-FeatureIO, but it was also being largely rewritten as the original implementation was never completed. We can probably set up a branch with the relevant version of the code that should
|
|
Posted
over 11 years
ago
by
George Hartzell
I'm following instructions on the GMOD site to install the Chado schema and related tools.
I used cpanm to install BioPerl, which gives me the current version.
Various Chado-related tools, e.g. load/bin/gmod_bulk_load_gff3, require Bio::FeatureIO
|