Skip to content
Snippets Groups Projects
Commit af64970b authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Correct some documentation.

parent 7b79629c
No related branches found
No related tags found
No related merge requests found
......@@ -42,13 +42,13 @@ instead if possible.
# and Slices will now have ExternalFeatures on them
$contig =
$db_adaptor->get_RawContigAdaptor->fetch_by_name('AC00056.00001');
@external = $contig->get_all_ExternalFeatures();
@external = @{ $contig->get_all_ExternalFeatures() };
# this works on Slices as well
$slice =
$db_adaptor->get_SliceAdaptor->fetch_by_chr_start_end( '12', 10000,
30000 );
@external = $slice->get_all_ExternalFeatures();
@external = @{ $slice->get_all_ExternalFeatures() };
=head1 DESCRIPTION
......
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