Skip to content
Snippets Groups Projects
Commit c6412821 authored by Kieron Taylor's avatar Kieron Taylor :angry:
Browse files

Missing argument documented on ->transform

parent 8e6f527a
No related branches found
No related tags found
No related merge requests found
...@@ -491,6 +491,9 @@ sub equals { ...@@ -491,6 +491,9 @@ sub equals {
The coord system to transform this feature to. The coord system to transform this feature to.
Arg [2] : string $version (optional) Arg [2] : string $version (optional)
The version of the coord system to transform this feature to. The version of the coord system to transform this feature to.
Arg [3] : Bio::EnsEMBL::Slice (optional)
Specified when a projection may land on many overlapping slices
and disambiguation is required.
Example : $feature = $feature->transform('contig'); Example : $feature = $feature->transform('contig');
next if(!defined($feature)); next if(!defined($feature));
Description: Returns a copy of this feature, but converted to a different Description: Returns a copy of this feature, but converted to a different
...@@ -607,7 +610,7 @@ sub transform { ...@@ -607,7 +610,7 @@ sub transform {
my $slice = $proj->[2]; my $slice = $proj->[2];
warn "available slice ".$slice->seq_regon_name."\n"; warn "available slice ".$slice->seq_regon_name."\n";
} }
warn "MORE than one projection and none to slice specified (".$to_slice->seq_region_name.")\n"; warn "MORE than one projection and no to slice specified (".$to_slice->seq_region_name.")\n";
} }
} }
else { else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment