|
NCBI Home IEB Home C Toolkit docs C++ Toolkit source browser C Toolkit source browser (2) |
NCBI C Toolkit Cross ReferenceC/asn/seqres.asn |
source navigation diff markup identifier search freetext search file search |
1 --$Revision: 6.0 $
2 --**********************************************************************
3 --
4 -- NCBI Sequence Analysis Results (other than alignments)
5 -- by James Ostell, 1990
6 --
7 --**********************************************************************
8
9 NCBI-Seqres DEFINITIONS ::=
10 BEGIN
11
12 EXPORTS Seq-graph;
13
14 IMPORTS Seq-loc FROM NCBI-Seqloc;
15
16 --*** Sequence Graph ********************************
17 --*
18 --* for values mapped by residue or range to sequence
19 --*
20
21 Seq-graph ::= SEQUENCE {
22 title VisibleString OPTIONAL ,
23 comment VisibleString OPTIONAL ,
24 loc Seq-loc , -- region this applies to
25 title-x VisibleString OPTIONAL , -- title for x-axis
26 title-y VisibleString OPTIONAL ,
27 comp INTEGER OPTIONAL , -- compression (residues/value)
28 a REAL OPTIONAL , -- for scaling values
29 b REAL OPTIONAL , -- display = (a x value) + b
30 numval INTEGER , -- number of values in graph
31 graph CHOICE {
32 real Real-graph ,
33 int Int-graph ,
34 byte Byte-graph } }
35
36 Real-graph ::= SEQUENCE {
37 max REAL , -- top of graph
38 min REAL , -- bottom of graph
39 axis REAL , -- value to draw axis on
40 values SEQUENCE OF REAL }
41
42 Int-graph ::= SEQUENCE {
43 max INTEGER ,
44 min INTEGER ,
45 axis INTEGER ,
46 values SEQUENCE OF INTEGER }
47
48 Byte-graph ::= SEQUENCE { -- integer from 0-255
49 max INTEGER ,
50 min INTEGER ,
51 axis INTEGER ,
52 values OCTET STRING }
53
54 END
55
|
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |