NCBI C Toolkit Cross Reference

C/asn/featdef.asn


  1 --$Revision: 6.0 $
  2 --**********************************************************************
  3 --
  4 --  NCBI Sequence Feature Definition Module
  5 --  by James Ostell, 1994
  6 --
  7 --**********************************************************************
  8 
  9 NCBI-FeatDef DEFINITIONS ::=
 10 BEGIN
 11 
 12 EXPORTS FeatDef, FeatDefSet, FeatDispGroup, FeatDispGroupSet;
 13 
 14 
 15 FeatDef ::= SEQUENCE {
 16     typelabel VisibleString ,      -- short label for type eg "CDS"
 17     menulabel VisibleString ,      -- label for a menu eg "Coding Region"
 18     featdef-key INTEGER ,                  -- unique for this feature definition
 19     seqfeat-key INTEGER ,                  -- SeqFeat.data.choice from objfeat.h
 20     entrygroup INTEGER ,                   -- Group for data entry
 21     displaygroup INTEGER ,                 -- Group for data display
 22     molgroup FeatMolType           -- Type of Molecule used for
 23 }
 24 
 25 FeatMolType ::= ENUMERATED {
 26         aa (1),  -- proteins
 27     na (2),  -- nucleic acids
 28     both (3) }  -- both
 29 
 30 FeatDefSet ::= SEQUENCE OF FeatDef   -- collections of defintions
 31 
 32 FeatDispGroup ::= SEQUENCE {
 33         groupkey INTEGER ,
 34     groupname VisibleString }
 35 
 36 FeatDispGroupSet ::= SEQUENCE OF FeatDispGroup
 37 
 38 FeatDefGroupSet ::= SEQUENCE {
 39         groups FeatDispGroupSet ,
 40         defs FeatDefSet }
 41 
 42 END
 43 
 44     

source navigation ]   [ diff markup ]   [ identifier search ]   [ freetext search ]   [ file search ]  

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.