Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
af64970b
Commit
af64970b
authored
Feb 04, 2010
by
Andreas Kusalananda Kähäri
Browse files
Correct some documentation.
parent
7b79629c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/Bio/EnsEMBL/DB/ExternalFeatureFactoryI.pm
modules/Bio/EnsEMBL/DB/ExternalFeatureFactoryI.pm
+2
-2
No files found.
modules/Bio/EnsEMBL/DB/ExternalFeatureFactoryI.pm
View file @
af64970b
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment