ADDITIONAL RELATIONSHIPS

primary_dbxref

Alias for dbxref

MANY-TO-MANY RELATIONSHIPS

dbxrefs_mm

Relation to "Bio::Chado::Schema::General::Dbxref: (i.e. dbxref table) via the feature_dbxrefs table."

secondary_dbxrefs

Alias for dbxrefs_mm

ADDITIONAL METHODS

create_featureprops

Usage: $set->create_featureprops({ baz => 2, foo => 'bar' });
Desc : convenience method to create feature properties using cvterms
        from the ontology with the given name
Args : hashref of { propname => value, ...},
       options hashref as:
        {
          autocreate => 0,
             (optional) boolean, if passed, automatically create cv,
             cvterm, and dbxref rows if one cannot be found for the
             given featureprop name.  Default false.

          cv_name => cv.name to use for the given featureprops.
                     Defaults to 'feature_property',

          db_name => db.name to use for autocreated dbxrefs,
                     default 'null',

          dbxref_accession_prefix => optional, default
                                     'autocreated:',
          definitions => optional hashref of:
              { cvterm_name => definition,
              }
           to load into the cvterm table when autocreating cvterms

           allow_duplicate_values => default false.
              If true, allow duplicate instances of the same cvterm
              and value in the properties of the feature.  Duplicate
              values will have different ranks.
        }
Ret  : hashref of { propname => new featureprop object }

search_featureprops

Status  : public
Usage   : $feat->search_featureprops( 'description' )
          # OR
          $feat->search_featureprops({ name => 'description'})
Returns : DBIx::Class::ResultSet like other search() methods
Args    : single string to match cvterm name,
          or hashref of search criteria.  This is passed
          to $chado->resultset('Cv::Cvterm')
                   ->search({ your criteria })

Convenience method to search featureprops for a feature that
match to Cvterms having the given criterion hash

1 POD Error

The following errors were encountered while parsing the POD:

Around line 275:

Unterminated L<...> sequence