The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

namespace

Usage    - print $id->namespace() or $id->namespace($name)
Returns  - the namespace (string)
Args     - the namespace (string)
Function - gets/sets the namespace

subnamespace

Usage    - print $id->subnamespace() or $id->subnamespace($name)
Returns  - the subnamespace (string)
Args     - the subnamespace (string)
Function - gets/sets the subnamespace

number

Usage    - print $id->number() or $id->number($name)
Returns  - the number (scalar)
Args     - the number (scalar)
Function - gets/sets the number

id_as_string

Usage    - print $id->id_as_string() or $id->id_as_string("CCO:X0000001")
Returns  - the id as string (scalar)
Args     - the id as string
Function - gets/sets the id as string

equals

Usage    - print $id->equals($id)
Returns  - 1 (true) or 0 (false)
Args     - the other ID (CCO_ID)
Function - tells if the IDs are equal

next_id

Usage    - print $id->next_id($id)
Returns  - the next ID (CCO_ID)
Args     - none
Function - returns the next ID

previous_id

Usage    - print $id->previous_id($id)
Returns  - the previous ID (CCO_ID)
Args     - none
Function - returns the previous ID

NAME

CCO::Util::CCO_ID - module for describing Cell Cycle Ontology (CCO) 
identifiers. Its namespace, subnamespace and number are stored.

SYNOPSIS

use CCO::Util::CCO_ID;

$id = CCO_ID->new();

$id->namespace("CCO"); $id->subnamespace("X"); $id->number("0000001");

$namespace = $id->namespace(); $subnamespace = $id->subnamespace(); $number = $id->number();

print $id->id_as_string(); $id->id_as_string("CCO:P1234567");

DESCRIPTION

The CCO::Util::CCO_ID class implements a Cell-Cycle Ontology identifier.

AUTHOR

Erick Antezana, <erant@psb.ugent.be>

COPYRIGHT AND LICENSE

Copyright (C) 2006 by erant

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.