The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Bio::Chado::Schema::Result::Pub::Pubauthor

DESCRIPTION

An author for a publication. Note the denormalisation (hence lack of _ in table name) - this is deliberate as it is in general too hard to assign IDs to authors.

ACCESSORS

pubauthor_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0
  sequence: 'pubauthor_pubauthor_id_seq'

pub_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

rank

  data_type: 'integer'
  is_nullable: 0

Order of author in author list for this pub - order is important.

editor

  data_type: 'boolean'
  default_value: false
  is_nullable: 1

Indicates whether the author is an editor for linked publication. Note: this is a boolean field but does not follow the normal chado convention for naming booleans.

surname

  data_type: 'varchar'
  is_nullable: 0
  size: 100

givennames

  data_type: 'varchar'
  is_nullable: 1
  size: 100

First name, initials

suffix

  data_type: 'varchar'
  is_nullable: 1
  size: 100

Jr., Sr., etc

RELATIONS

pub

Type: belongs_to

Related object: Bio::Chado::Schema::Result::Pub::Pub