You should not use this method directly
You only need to be aware of this class if you are generating new objects. You should not directly create objects like this:
$term = GO::Model::Term->new($h);
Instead you should create them like this:
$fac = GO::ObjFactory->new(); $term = $fac->create_term_obj($h);
Usually you do not need to instantiate a factory, as all objects created with a factory carry around a reference to that factory, so you can do this:
# $graph object was previously created via a factory $term = $graph->create_term_obj($h);
If you are only using the go-perl module, then factories do not buy you much. However, if you are also using go-db-perl and GO::AppHandle, then factories can be useful - all objects generated from the database will be attached to an AppHandle which means that "lazy loading" can be used. See GO::AppHandle in go-db-perl for details
Usage - $term = $apph->create_term_obj; Returns - L<GO::Model::Term> Args -
Usage - $relationship = $apph->create_relationship_obj; Returns - L<GO::Model::Relationship> Args -
Usage - $xref = $apph->create_xref_obj; Returns - L<GO::Model::Xref> Args -
Usage - $evidence = $apph->create_evidence_obj; Returns - L<GO::Model::Evidence> Args -
Usage - $seq = $apph->create_seq_obj; Returns - L<GO::Model::Seq> Args -
Usage - $db = $apph->create_db_obj; Returns - L<GO::Model::DB> Args -
Usage - $association = $apph->create_association_obj; Returns - L<GO::Model::Association> Args -
Usage - $gene_product = $apph->create_gene_product_obj; Synonym - create_product_obj Returns - L<GO::Model::GeneProduct> Args -
Usage - $species = $apph->create_species_obj; Returns - L<GO::Model::Species> Args -
Usage - $graph = $apph->create_graph_obj; Returns - L<GO::Model::Graph> Args -