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

Add comment at the head of the code to say what the program is doing.

parent e1346692
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/perl -w
#-----------------------------------------------------------------------
# Demo program for the Ensembl ontology database and API.
#
# This program fetches a GO term and uses it to retrive genes. The
# genes retrived will be ones that are cross-referenced with either the
# GO term itself or with any of its descendant terms (following the
# transitive relation types 'is_a' or 'part_of').
#-----------------------------------------------------------------------
use strict;
use warnings;
......
#!/usr/bin/perl -w
#-----------------------------------------------------------------------
# Demo program for the Ensembl ontology database and API.
#
# This program fetches a GO term and displays its ancestors (following
# the transitive relation types 'is_a' and 'part_of'). The terms are
# indented with increasing distance from the original term.
#-----------------------------------------------------------------------
use strict;
use warnings;
......
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