This manual is for jBio (version 0.8, 20 February 2009), which is `BioPerl in JavaScript'.
Copyright © 2008 László Kaján.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled “GNU Free Documentation License”.
The last section to be filled.
jBio is BioPerl (pmid12368254) in JavaScript.
jBio requires jQuery.
Namespaces are mostly implemented as empty functions. A class (i.e. prototype constructor) can also act as a namespace.
var jBio = window.jBio = function(){ /* namespace */ };
jBio namespace.
All jBio code is found within this namespace.
Definition at line 18 of file jbio.js.
— Function on jBio:jBio.Root.SeqIO
SeqIO (Object
__p)
Creates the appropriate sequence format adapter for the format requested.
Definition at line 3369 of file jbio.js.
- Parameters:
- __p
- Parameter hash:
String
format- File format.
String
url- URL to open for reading.
String
alphabet- Alphabet, one of ‘dna’, ‘rna’, or ‘protein’. If not given, the code tries to guess the alphabet.
- Returns:
- Sequence IO instance.
— Function on jBio:Object
data (Object
__subj,String
__name,Object
__data)
Stores into the global jBio data cache.
Use this to avoid circular references. Adapted from jQuery. Do not use for DOM elements, use jQuery.data() for that.
- Parameters:
- __subj
- Object instance to store data for.
- __name
- Name of data slot. Optional.
- __data
- Payload data. Optional.
- Returns:
- Payload data for named slot of __name is given, UUID of __subj otherwise.
Definition at line 57 of file jbio.js.
— Function on jBio:void
removeData (Object
__subj,String
__name)
Removes data from the global jBio data cache.
If the last data element is removed from the slot, the slot is removed as well.
- Parameters:
- __subj
- Object instance to remove stored data for.
- __name
- Name of data slot.
Definition at line 97 of file jbio.js.
jBio.Annotation.XML namespace.
Definition at line 2253 of file jbio.js.
jBio.Graphics.DOM namespace.
Definition at line 140 of file jbio.graphics.dom.js.
jBio.Graphics.Exception namespace.
Definition at line 27 of file jbio.graphics.js.
jBio.Graphics.Glyph namespace.
Definition at line 17 of file jbio.graphics.glyph.js.
jBio.Location.Ppxml namespace.
Definition at line 1468 of file jbio.js.
jBio.SeqFeature.Alignment namespace.
Definition at line 1862 of file jbio.js.
jBio.SeqFeature.DisoReg namespace.
Definition at line 1776 of file jbio.js.
jBio.SeqFeature.SolvAcc namespace.
Definition at line 1819 of file jbio.js.
Classes are presented in a rough order of dependence, base classes listed first.
In this document class refers to a JavaScript constructor that is used to create a prototype, e.g. ‘jBio.Root’ or ‘jBio.Seq’. Constructors that create operational instances - such as ‘jBio.Seq_FAC()’ - are not considered classes and are referred to as constructors.
Base classes are given following a `:' after the class name. Class member names beginning with `_' are private or protected. Direct access to such members is not expected and is discouraged unless you know what you are doing. Private or protected members, apart of a few examples, are not listed in this document. Inherited methods are indicated in derived classes when (re-)implemented. Abstract member functions (member functions with no implementation) are indicated with `=0'.
Optional arguments are listed with the default value given after `='. Accessors take at most one argument. If a value is given, the property is updated. The resulting value of the property is returned.
jBio.Root
Alphabet.
This should follow Bio::Symbol::AlphabetI, but it does not.
Definition at line 1555 of file jbio.js.
— Function on jBio.Alphabet:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Class with annotations.
Should be called AnnotatedI.
Definition at line 775 of file jbio.js.
— Function on jBio.AnnotatableI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.AnnotationCollectionI
, jBio.AnnotationI
Set of annotations organised by `keys'.
Definition at line 2436 of file jbio.js.
— Function on jBio.Annotation.Collection:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.AnnotationCollectionI
, jBio.AnnotationI
, jBio.XMLelementI
Annotation collection for features with reliability scores.
Base class for further specialisation.
Definition at line 2666 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Annotation.Collection.Ppxml
Annotation collection for a PredictProtein XML alignment.
Definition at line 2785 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml.Alignment:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml.Alignment:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Annotation.Collection.Ppxml.FeatWRel
Annotation collection for a disordered region feature.
Wrapper for the respective data structure in a PredictProtein XML document.
Definition at line 2723 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml.DisoReg:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml.DisoReg:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Annotation.Collection.Ppxml
— Function on jBio.Annotation.Collection.Ppxml.FeatWRel:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml.FeatWRel:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Annotation.Collection.Ppxml.FeatWRel
Annotation collection for a solvent accessibility feature.
Wrapper for the respective data structure in a PredictProtein XML document.
Definition at line 2754 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml.SolvAcc:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.Collection.Ppxml.SolvAcc:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.AnnotationCollectionI
, jBio.AnnotationI
, jBio.XMLelementI
Annotation collection in a UniProtKB XML document.
Not implemented.
Definition at line 2592 of file jbio.js.
— Function on jBio.Annotation.Collection.UniProtKBXML:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.Collection.UniProtKBXML:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.AnnotationI
Scalar annotation value.
Definition at line 2110 of file jbio.js.
— Function on jBio.Annotation.SimpleValue:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Annotation.SimpleValue
Annotation in a multidimensional array structure.
Definition at line 2172 of file jbio.js.
— Function on jBio.Annotation.StructuredValue:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
“Annotation collection type manager.”
Definition at line 2376 of file jbio.js.
— Function on jBio.Annotation.TypeManager:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Annotation.SimpleValue
, jBio.XMLelementI
Scalar annotation in an XML document.
The value is stored as an attribute of the underlying xml element.
Definition at line 2311 of file jbio.js.
— Variable of jBio.Annotation.XML.BaseSimpleAttrValue:String
_attribute
Name of the attribute that holds the annotation value.
— Function on jBio.Annotation.XML.BaseSimpleAttrValue:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.XML.BaseSimpleAttrValue:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Annotation.XML.BaseSimpleAttrValue
Scalar annotation in an XML document.
The value is stored in the ‘value’ attribute of the xml_instance.
Definition at line 2345 of file jbio.js.
— Variable of jBio.Annotation.XML.SimpleAttrValue:String
_attribute
Name of the attribute that holds the annotation value.
— Function on jBio.Annotation.XML.SimpleAttrValue:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Annotation.XML.SimpleAttrValue:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Annotation.SimpleValue
, jBio.XMLelementI
Scalar annotation in an XML document.
The value is stored in the text node of the xml_instance.
Definition at line 2273 of file jbio.js.
— Function on jBio.Annotation.XML.SimpleValue:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.AnnotationI
Set of annotations organised by `keys'.
This class defined the interface.
Definition at line 742 of file jbio.js.
— Function on jBio.AnnotationCollectionI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Annotation.
Definition at line 709 of file jbio.js.
— Function on jBio.AnnotationI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Class with description.
Pure abstract class.
Definition at line 1066 of file jbio.js.
— Function on jBio.DescribableI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Generic jBio exception class and constructor.
Use this to throw jBio exceptions:
if( __start === undefined ) throw new jBio.Exception('start is undefined');Definition at line 188 of file jbio.js.
— Function on jBio.Exception:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
‘Deprecated’ exception class and constructor.
Definition at line 282 of file jbio.js.
— Function on jBio.Exception.Deprecated:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
‘Not a Number’ exception class and constructor.
Message produced: ‘'__p' is not a number (by type) but <typeof(__p)>’.
Definition at line 314 of file jbio.js.
— Function on jBio.Exception.NaN:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
‘Not Implemented’ exception class and constructor.
Definition at line 220 of file jbio.js.
— Function on jBio.Exception.NotImplemented:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
‘Read Only’ exception class and constructor.
Definition at line 251 of file jbio.js.
— Function on jBio.Exception.ReadOnly:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Object factory.
Pure abstract class.
Definition at line 979 of file jbio.js.
— Function on jBio.Factory.ObjectFactoryI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Factory.ObjectFactoryI
Sequence factory.
Pure abstract class.
Definition at line 1007 of file jbio.js.
— Function on jBio.Factory.SequenceFactoryI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Sequence stream.
Pure abstract class.
Definition at line 948 of file jbio.js.
— Function on jBio.Factory.SequenceStreamI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Class with features.
Definition at line 845 of file jbio.js.
— Function on jBio.FeatureHolderI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Drawing space manager.
Keeps track of allocated segments of the drawing space and finds empty space for more drawing.
Definition at line 695 of file jbio.graphics.js.
— Function on jBio.Graphics.CollisionControl:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Zoomer
Live element resizing (zooming) for boxes.
Definition at line 1906 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Box_zoomer:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Zoomer
Live element resizing (zooming) for jBio.Graphics.DOM.Glyph.Disulfide.
Definition at line 1981 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Disulf_zoomer:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Zoomer
Live element resizing (zooming) for faceted glyphs.
Definition at line 2060 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Faceted_zoomer:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Graphics.DOM.Faceted_zoomer:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Graphics.DOMbase
, jBio.Graphics.DOMevents_binderI
, jBio.Graphics.GlyphI
Base class for glyphs that are rendered through the document object model (DOM).
Definition at line 31 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Generic
Glyph for alignments.
Definition at line 1578 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.Alignment:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Graphics.DOM.Glyph.Alignment:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Generic
Arrow glyph with major and minor ticks for scale.
Definition at line 471 of file jbio.graphics.dom.glyph.js.
— Variable of jBio.Graphics.DOM.Glyph.Arrow:static Object
UNITS
This hash converts unit symbols to decimal value, e.g.
M: 1e6
.— Function on jBio.Graphics.DOM.Glyph.Arrow:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Faceted
Glyph for disordered regions.
Definition at line 1279 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.DisoReg:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Generic
Glyph for disulfide bonds.
Definition at line 1353 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.Disulfide:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Graphics.DOM.Glyph.Disulfide:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Generic
Base glyph for features that vary position by position and have reliability scores.
Definition at line 1143 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.Faceted:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph
Generic glyph.
This glyph draws a block for each feature.
Definition at line 344 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.Generic:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Generic
Simple glyph for secondary structures.
Definition at line 939 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.SecondaryStructure:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Graphics.DOM.Glyph.SecondaryStructure:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Faceted
Glyph for solvent accessibility.
Definition at line 1483 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.SolvAcc:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Glyph.Generic
Simple glyph for transmembrane beta barrels.
Definition at line 1060 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph.TransmBetaBarrel:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Graphics.DOM.Glyph.TransmBetaBarrel:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Zoomer
Live element resizing (zooming) for glyphs.
Example:
$(rootElem).data('zoomer', new jBio.Graphics.DOM.Glyph_zoomer_FAC({ domElement: rootElem }) );Definition at line 1796 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Glyph_zoomer:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Zoomer.Positioned
Live element resizing (zooming) for labels.
Example:
$(child).data('zoomer', new jBio.Graphics.DOM.Label_zoomer_FAC({ domElement: child, left: ld['left'], top: ld['top'], base_font_size: ld['font-size'] }) );Definition at line 1856 of file jbio.graphics.dom.glyph.js.
— Function on jBio.Graphics.DOM.Label_zoomer:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOMbase
, jBio.Graphics.Panel
DOM panel.
Definition at line 56 of file jbio.graphics.dom.panel.js.
— Variable of jBio.Graphics.DOM.Panel:static Number
DOMindex
Initial value of index used to generate unique ids. Default: ‘0’.
— Function on jBio.Graphics.DOM.Panel:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Zoomer
Live panel resizer (zoomer).
Definition at line 330 of file jbio.graphics.dom.panel.js.
— Function on jBio.Graphics.DOM.Panel_zoomer:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.Position
Rendered glyph position for DOM rendering.
Definition at line 376 of file jbio.graphics.dom.js.
— Function on jBio.Graphics.DOM.Position:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOMbase
, jBio.Graphics.Px2pt
Point to pixel conversion for DOM.
Definition at line 292 of file jbio.graphics.dom.js.
— Function on jBio.Graphics.DOM.Px2pt:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.Rendering
, jBio.Graphics.DOMbase
Document object model (DOM) rendering of glyph.
Definition at line 410 of file jbio.graphics.dom.js.
— Function on jBio.Graphics.DOM.Rendering:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Live element resizer (zoomer).
Definition at line 164 of file jbio.graphics.dom.js.
— Function on jBio.Graphics.DOM.Zoomer:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.DOM.Zoomer
Live element resizer (zoomer) for simple positioned elements.
Definition at line 238 of file jbio.graphics.dom.js.
— Function on jBio.Graphics.DOM.Zoomer.Positioned:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Graphics.DOM.Zoomer.Positioned:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
Base class for glyphs that draw through the document object model (DOM).
Definition at line 118 of file jbio.graphics.dom.js.
— Function on jBio.Graphics.DOMbase:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Base class for glyphs that receive DOM events.
Definition at line 29 of file jbio.graphics.dom.js.
— Function on jBio.Graphics.DOMevents_binderI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
jBio.Graphics DOM exception.
Definition at line 48 of file jbio.graphics.js.
— Function on jBio.Graphics.Exception.DOM:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.SeqFeature.Generic
Generic feature.
Essentially jBio.SeqFeature.Generic, the only modification is to the parameters of its constructor.
Definition at line 856 of file jbio.graphics.js.
— Function on jBio.Graphics.Feature:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Graphics.Feature:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.Graphics.Feature:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.Graphics.Feature:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
Factory for glyph instances.
Definition at line 655 of file jbio.graphics.glyph.js.
— Variable of jBio.Graphics.Glyph.Factory:static Object
DEFAULT_PROPERTIES
Default glyph properties:
String
bgcolor- Background colour.
Number
bump- Bump parameter for collision control.
Number
bump_spacing- Bump spacing for collision control.
String
fgcolor- Foreground colour.
String
fontcolor- Font colour.
String
font2color- Second font colour.
String
font- Font.
Number
font_size- Font size.
String
font_weight- Font weight.
Number
height- Glyph height.
String
label_position- Label position.
Number
linewidth- Line width.
Number
quill_interval- Interval of a decorated line with small arrows indicating strandedness.
— Function on jBio.Graphics.Glyph.Factory:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Glyph.
A glyph provides visualisation for its associated feature.
Definition at line 96 of file jbio.graphics.glyph.js.
— Function on jBio.Graphics.GlyphI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
A layout of a visual element, such as a panel or glyph.
Definition at line 259 of file jbio.graphics.js.
— Function on jBio.Graphics.Layout:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Target media type base class.
The concept of tagets media types is similar to the CSS concept.
Definition at line 81 of file jbio.graphics.js.
— Function on jBio.Graphics.Media:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.Media
Print target media type.
Definition at line 149 of file jbio.graphics.js.
— Function on jBio.Graphics.Media.Print:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Graphics.Media
Screen target media type.
Definition at line 117 of file jbio.graphics.js.
— Function on jBio.Graphics.Media.Screen:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Panel.
Definition at line 111 of file jbio.graphics.panel.js.
— Function on jBio.Graphics.Panel:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Rendered glyph position.
Definition at line 350 of file jbio.graphics.js.
— Function on jBio.Graphics.Position:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Point to pixel conversion.
Definition at line 185 of file jbio.graphics.js.
— Function on jBio.Graphics.Px2pt:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
A rendering of a visual element, such as a panel or glyph.
Definition at line 429 of file jbio.graphics.js.
— Function on jBio.Graphics.Rendering:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Drawing space manager for alignment glyphs.
Keeps track of allocated segments of the drawing space and finds empty space for more drawing.
Definition at line 485 of file jbio.graphics.js.
— Function on jBio.Graphics.Spacecentre:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Class with identifiers.
Pure abstract class.
Definition at line 1035 of file jbio.js.
— Function on jBio.IdentifiableI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.LocationI
Atomic location on sequence.
Definition at line 1263 of file jbio.js.
— Function on jBio.Location.Atomic:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Location.Atomic:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.Location.Atomic:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.Location.Atomic:Object
coordinate_policy (Object
__nv)
Get/set coordinate policy.
Definition at line 567 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Atomic:Number
end (Number
__nv)
Get/set end.
Definition at line 522 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Atomic:String
end_pos_type (String
__nv)
Get/set end position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 577 of file jbio.js.
— Function on jBio.Location.Atomic:Number
flip_strand ()
Flip strand:
strand *= -1
.Definition at line 558 of file jbio.js.
- Returns:
- Current strand.
— Function on jBio.Location.Atomic:Boolean
is_remote (Boolean
__nv)
Get/set remoteness.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
BioPerl: A location is said to be remote if it is on a different `object' than the object which `has' this location.Definition at line 587 of file jbio.js.
— Function on jBio.Location.Atomic:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.Location.Atomic:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.Location.Atomic:String
location_type (String
__nv)
Get/set location type.
One of: [‘..’|‘EXACT’|‘^’|‘IN-BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 506 of file jbio.js.
— Function on jBio.Location.Atomic:Number
max_end (Number
__nv)
Get/set maximum end.
Definition at line 596 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Atomic:Number
max_start (Number
__nv)
Get/set maximum start.
Definition at line 540 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Atomic:Number
min_end (Number
__nv)
Get/set minimum end.
Definition at line 605 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Atomic:Number
min_start (Number
__nv)
Get/set minimum start.
Definition at line 531 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Atomic:Object
seq_id (Object
__nv)
Get/set the identifier of sequence this location is related to.
Definition at line 614 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Atomic:Number
start (Number
__nv)
Get/set start.
Definition at line 514 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
jBio.Root
, jBio.LocationI
, jBio.XMLelementI
Location in a PredictProtein XML alignment.
See also the PredictProtein XML schema.
Definition at line 1495 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.Location.Ppxml.Alignment:Object
coordinate_policy (Object
__nv)
Get/set coordinate policy.
Definition at line 567 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Ppxml.Alignment:String
end_pos_type (String
__nv)
Get/set end position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 577 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:Number
flip_strand ()
Flip strand:
strand *= -1
.Definition at line 558 of file jbio.js.
- Returns:
- Current strand.
— Function on jBio.Location.Ppxml.Alignment:Boolean
is_remote (Boolean
__nv)
Get/set remoteness.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
BioPerl: A location is said to be remote if it is on a different `object' than the object which `has' this location.Definition at line 587 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.Location.Ppxml.Alignment:String
location_type (String
__nv)
Get/set location type.
One of: [‘..’|‘EXACT’|‘^’|‘IN-BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 506 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:Number
max_end (Number
__nv)
Get/set maximum end.
Definition at line 596 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Ppxml.Alignment:Number
max_start (Number
__nv)
Get/set maximum start.
Definition at line 540 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Ppxml.Alignment:Number
min_end (Number
__nv)
Get/set minimum end.
Definition at line 605 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Ppxml.Alignment:Number
min_start (Number
__nv)
Get/set minimum start.
Definition at line 531 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Ppxml.Alignment:Object
seq_id (Object
__nv)
Get/set the identifier of sequence this location is related to.
Definition at line 614 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Ppxml.Alignment:String
start_pos_type (String
__nv)
Get/set start position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 550 of file jbio.js.
— Function on jBio.Location.Ppxml.Alignment:Number
strand (String
__nv)
Get/set strand.
Strand types are represented by three numerical values: ‘-1’, ‘0’ and ‘1’. These correspond to the ‘-’, ‘.’ (not applicable/not defined) and ‘+’ strands respectively. These symbols are also accepted when setting the value.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current numeric strand identifier.
Definition at line 625 of file jbio.js.
jBio.Root
, jBio.Location.Atomic
Simple location.
Location with type ‘EXACT’ or ‘IN-BETWEEN’ (e.g. ‘12..15’ or ‘16^17’).
Definition at line 1320 of file jbio.js.
— Variable of jBio.Location.Simple:static const Object
RANGEDECODE
Range symbol decoding hash: { 'EXACT': '..', 'IN-BETWEEN': '^' }.
— Variable of jBio.Location.Simple:static const Object
RANGEENCODE
Range symbol encoding hash: { '\.\.': 'EXACT', '\^': 'IN-BETWEEN' }.
— Function on jBio.Location.Simple:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Location.Simple:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.Location.Simple:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.Location.Simple:Object
coordinate_policy (Object
__nv)
Get/set coordinate policy.
Definition at line 567 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Simple:String
end_pos_type (String
__nv)
Get/set end position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 577 of file jbio.js.
— Function on jBio.Location.Simple:Number
flip_strand ()
Flip strand:
strand *= -1
.Definition at line 558 of file jbio.js.
- Returns:
- Current strand.
— Function on jBio.Location.Simple:Boolean
is_remote (Boolean
__nv)
Get/set remoteness.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
BioPerl: A location is said to be remote if it is on a different `object' than the object which `has' this location.Definition at line 587 of file jbio.js.
— Function on jBio.Location.Simple:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.Location.Simple:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.Location.Simple:Number
max_end (Number
__nv)
Get/set maximum end.
Definition at line 596 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Simple:Number
max_start (Number
__nv)
Get/set maximum start.
Definition at line 540 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Simple:Number
min_end (Number
__nv)
Get/set minimum end.
Definition at line 605 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Simple:Number
min_start (Number
__nv)
Get/set minimum start.
Definition at line 531 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Simple:Object
seq_id (Object
__nv)
Get/set the identifier of sequence this location is related to.
Definition at line 614 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
jBio.Root
, jBio.Location.Atomic
, jBio.Location.SplitLocationI
A location that has multiple start/end points, e.g. a set of exons.
Brings together jBio.Location.Atomic and jBio.Location.SplitLocationI.
Definition at line 1454 of file jbio.js.
— Function on jBio.Location.Split:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Location.Split:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.Location.Split:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.Location.Split:Object
coordinate_policy (Object
__nv)
Get/set coordinate policy.
Definition at line 567 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Split:Number
end (Number
__nv)
Get/set end.
Definition at line 522 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Split:String
end_pos_type (String
__nv)
Get/set end position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 577 of file jbio.js.
— Function on jBio.Location.Split:Number
flip_strand ()
Flip strand:
strand *= -1
.Definition at line 558 of file jbio.js.
- Returns:
- Current strand.
— Function on jBio.Location.Split:Boolean
is_remote (Boolean
__nv)
Get/set remoteness.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
BioPerl: A location is said to be remote if it is on a different `object' than the object which `has' this location.Definition at line 587 of file jbio.js.
— Function on jBio.Location.Split:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.Location.Split:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.Location.Split:String
location_type (String
__nv)
Get/set location type.
One of: [‘..’|‘EXACT’|‘^’|‘IN-BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 506 of file jbio.js.
— Function on jBio.Location.Split:Number
max_end (Number
__nv)
Get/set maximum end.
Definition at line 596 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Split:Number
max_start (Number
__nv)
Get/set maximum start.
Definition at line 540 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Split:Number
min_end (Number
__nv)
Get/set minimum end.
Definition at line 605 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Split:Number
min_start (Number
__nv)
Get/set minimum start.
Definition at line 531 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Split:Object
seq_id (Object
__nv)
Get/set the identifier of sequence this location is related to.
Definition at line 614 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.Split:Number
start (Number
__nv)
Get/set start.
Definition at line 514 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
jBio.Root
, jBio.LocationI
A location that has multiple start/end points, e.g. a set of exons.
Definition at line 679 of file jbio.js.
— Function on jBio.Location.SplitLocationI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Location.SplitLocationI:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.Location.SplitLocationI:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.Location.SplitLocationI:Object
coordinate_policy (Object
__nv)
Get/set coordinate policy.
Definition at line 567 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:Number
end (Number
__nv)
Get/set end.
Definition at line 522 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:String
end_pos_type (String
__nv)
Get/set end position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 577 of file jbio.js.
— Function on jBio.Location.SplitLocationI:Number
flip_strand ()
Flip strand:
strand *= -1
.Definition at line 558 of file jbio.js.
- Returns:
- Current strand.
— Function on jBio.Location.SplitLocationI:Boolean
is_remote (Boolean
__nv)
Get/set remoteness.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
BioPerl: A location is said to be remote if it is on a different `object' than the object which `has' this location.Definition at line 587 of file jbio.js.
— Function on jBio.Location.SplitLocationI:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.Location.SplitLocationI:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.Location.SplitLocationI:String
location_type (String
__nv)
Get/set location type.
One of: [‘..’|‘EXACT’|‘^’|‘IN-BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 506 of file jbio.js.
— Function on jBio.Location.SplitLocationI:Number
max_end (Number
__nv)
Get/set maximum end.
Definition at line 596 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:Number
max_start (Number
__nv)
Get/set maximum start.
Definition at line 540 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:Number
min_end (Number
__nv)
Get/set minimum end.
Definition at line 605 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:Number
min_start (Number
__nv)
Get/set minimum start.
Definition at line 531 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:Object
seq_id (Object
__nv)
Get/set the identifier of sequence this location is related to.
Definition at line 614 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:Number
start (Number
__nv)
Get/set start.
Definition at line 514 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.SplitLocationI:String
start_pos_type (String
__nv)
Get/set start position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 550 of file jbio.js.
— Function on jBio.Location.SplitLocationI:Number
strand (String
__nv)
Get/set strand.
Strand types are represented by three numerical values: ‘-1’, ‘0’ and ‘1’. These correspond to the ‘-’, ‘.’ (not applicable/not defined) and ‘+’ strands respectively. These symbols are also accepted when setting the value.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current numeric strand identifier.
Definition at line 625 of file jbio.js.
jBio.Root
, jBio.LocationI
, jBio.XMLelementI
Location in a UniProtKB XML document.
See also the UniProtKB XML schema.
Definition at line 1403 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.Location.UniProtKBXML:Object
coordinate_policy (Object
__nv)
Get/set coordinate policy.
Definition at line 567 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.UniProtKBXML:String
end_pos_type (String
__nv)
Get/set end position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 577 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:Number
flip_strand ()
Flip strand:
strand *= -1
.Definition at line 558 of file jbio.js.
- Returns:
- Current strand.
— Function on jBio.Location.UniProtKBXML:Boolean
is_remote (Boolean
__nv)
Get/set remoteness.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
BioPerl: A location is said to be remote if it is on a different `object' than the object which `has' this location.Definition at line 587 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.Location.UniProtKBXML:String
location_type (String
__nv)
Get/set location type.
One of: [‘..’|‘EXACT’|‘^’|‘IN-BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 506 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:Number
max_end (Number
__nv)
Get/set maximum end.
Definition at line 596 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.UniProtKBXML:Number
max_start (Number
__nv)
Get/set maximum start.
Definition at line 540 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.UniProtKBXML:Number
min_end (Number
__nv)
Get/set minimum end.
Definition at line 605 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.UniProtKBXML:Number
min_start (Number
__nv)
Get/set minimum start.
Definition at line 531 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.UniProtKBXML:Object
seq_id (Object
__nv)
Get/set the identifier of sequence this location is related to.
Definition at line 614 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.Location.UniProtKBXML:String
start_pos_type (String
__nv)
Get/set start position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 550 of file jbio.js.
— Function on jBio.Location.UniProtKBXML:Number
strand (String
__nv)
Get/set strand.
Strand types are represented by three numerical values: ‘-1’, ‘0’ and ‘1’. These correspond to the ‘-’, ‘.’ (not applicable/not defined) and ‘+’ strands respectively. These symbols are also accepted when setting the value.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current numeric strand identifier.
Definition at line 625 of file jbio.js.
jBio.Root
, jBio.RangeI
Location.
This is an abstract class, defining the interface only.
Definition at line 496 of file jbio.js.
— Function on jBio.LocationI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.LocationI:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.LocationI:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.LocationI:Object
coordinate_policy (Object
__nv)
Get/set coordinate policy.
Definition at line 567 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:Number
end (Number
__nv)
Get/set end.
Definition at line 522 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:String
end_pos_type (String
__nv)
Get/set end position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 577 of file jbio.js.
— Function on jBio.LocationI:Number
flip_strand ()
Flip strand:
strand *= -1
.Definition at line 558 of file jbio.js.
- Returns:
- Current strand.
— Function on jBio.LocationI:Boolean
is_remote (Boolean
__nv)
Get/set remoteness.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
BioPerl: A location is said to be remote if it is on a different `object' than the object which `has' this location.Definition at line 587 of file jbio.js.
— Function on jBio.LocationI:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.LocationI:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.LocationI:String
location_type (String
__nv)
Get/set location type.
One of: [‘..’|‘EXACT’|‘^’|‘IN-BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 506 of file jbio.js.
— Function on jBio.LocationI:Number
max_end (Number
__nv)
Get/set maximum end.
Definition at line 596 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:Number
max_start (Number
__nv)
Get/set maximum start.
Definition at line 540 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:Number
min_end (Number
__nv)
Get/set minimum end.
Definition at line 605 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:Number
min_start (Number
__nv)
Get/set minimum start.
Definition at line 531 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:Object
seq_id (Object
__nv)
Get/set the identifier of sequence this location is related to.
Definition at line 614 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:Number
start (Number
__nv)
Get/set start.
Definition at line 514 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.LocationI:String
start_pos_type (String
__nv)
Get/set start position type.
One of [‘BEFORE’|‘AFTER’|‘EXACT’|‘WITHIN’|‘BETWEEN’].
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
Definition at line 550 of file jbio.js.
— Function on jBio.LocationI:Number
strand (String
__nv)
Get/set strand.
Strand types are represented by three numerical values: ‘-1’, ‘0’ and ‘1’. These correspond to the ‘-’, ‘.’ (not applicable/not defined) and ‘+’ strands respectively. These symbols are also accepted when setting the value.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current numeric strand identifier.
Definition at line 625 of file jbio.js.
jBio.Root
, jBio.PrimarySeqI
`Lightweight' sequence.
Definition at line 1961 of file jbio.js.
— Function on jBio.PrimarySeq:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.IdentifiableI
, jBio.DescribableI
Sequence.
This is a simple sequence class, it is to bring together jBio.IdentifiableI and jBio.DescribableI and define some methods.
Definition at line 1103 of file jbio.js.
— Function on jBio.PrimarySeqI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
Range of integer coordinates.
Definition at line 347 of file jbio.js.
— Function on jBio.RangeI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.RangeI:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.RangeI:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.RangeI:positive integer
end (positive integer
__nv)
Get/set end of range.
Definition at line 358 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.RangeI:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.RangeI:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.RangeI:positive integer
start (positive integer
__nv)
Get/set start of range.
Definition at line 376 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.RangeI:Number
strand (String
__nv)
Get/set strand.
Strand types are represented by three numerical values: ‘-1’, ‘0’ and ‘1’. These correspond to the ‘-’, ‘.’ (not applicable/not defined) and ‘+’ strands respectively. The symbols are also accepted when setting the value.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current numeric strand identifier.
Definition at line 387 of file jbio.js.
This class provides type information handling.
All type-aware classes descend from jBio.Root.
Definition at line 125 of file jbio.js.
— Function on jBio.Root:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
IO base.
Definition at line 3395 of file jbio.js.
— Function on jBio.Root.IO:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Factory.SequenceStreamI
, jBio.Root.IO
Sequence IO base.
Definition at line 3469 of file jbio.js.
— Function on jBio.Root.SeqIO:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Seqbase
Sequence.
This is the one you are looking for.
Definition at line 2912 of file jbio.js.
— Function on jBio.Seq:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.SeqI.RichSeqI
, jBio.Seq
Sequence.
“Module implementing a sequence created from a rich sequence database entry.” The properties promised by the methods of this class are not necessarily provided.
Definition at line 3047 of file jbio.js.
— Function on jBio.Seq.RichSeq:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.SeqI.RichSeqI
, jBio.XMLelementI
, jBio.Seqbase
Sequence in a UniProtKB XML document.
See also the UniProtKB XML schema.
Definition at line 3147 of file jbio.js.
— Function on jBio.Seq.RichSeq.UniProtKBXML:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Factory.SequenceFactoryI
Sequence factory for jBio.PrimarySeqI or jBio.Seq.QualI implementing sequences.
Definition at line 3252 of file jbio.js.
— Function on jBio.Seq.SeqFactory:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Factory.SequenceFactoryI
No-frills sequence factory for jBio.PrimarySeqI or jBio.Seq.QualI implementing sequences.
If the sequence to be created comes from a FASTA format file, this implementation may have a speed advantage.
Definition at line 3300 of file jbio.js.
— Function on jBio.Seq.SeqFastaSpeedFactory:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.SeqFeature.Generic_base
, jBio.XMLelementI
Alignment feature in a PredictProtein XML document.
Definition at line 1889 of file jbio.js.
— Function on jBio.SeqFeature.Alignment.Ppxml:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeature.Alignment.Ppxml:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeature.Alignment.Ppxml:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeature.Alignment.Ppxml:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.SeqFeature.Generic.UniProtKBXML
Disordered region feature in a PredictProtein XML document.
Definition at line 1797 of file jbio.js.
— Function on jBio.SeqFeature.DisoReg.Ppxml:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeature.DisoReg.Ppxml:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeature.DisoReg.Ppxml:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeature.DisoReg.Ppxml:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.SeqFeature.Generic_base
Generic sequence feature.
Definition at line 1643 of file jbio.js.
— Function on jBio.SeqFeature.Generic:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeature.Generic:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeature.Generic:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeature.Generic:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.SeqFeature.Generic_base
, jBio.XMLelementI
Generic sequence feature in a UniProtKB XML document.
See also the UniProtKB XML schema.
Definition at line 1724 of file jbio.js.
— Function on jBio.SeqFeature.Generic.UniProtKBXML:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeature.Generic.UniProtKBXML:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeature.Generic.UniProtKBXML:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeature.Generic.UniProtKBXML:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.SeqFeatureI
, jBio.FeatureHolderI
Generic sequence feature.
Brings together its parents, jBio.SeqFeatureI and jBio.FeatureHolderI.
Definition at line 913 of file jbio.js.
— Function on jBio.SeqFeature.GenericI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeature.GenericI:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeature.GenericI:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeature.GenericI:positive integer
end (positive integer
__nv)
Get/set end of range.
Definition at line 358 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.SeqFeature.GenericI:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.SeqFeature.GenericI:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.SeqFeature.GenericI:positive integer
start (positive integer
__nv)
Get/set start of range.
Definition at line 376 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.SeqFeature.GenericI:Number
strand (String
__nv)
Get/set strand.
Strand types are represented by three numerical values: ‘-1’, ‘0’ and ‘1’. These correspond to the ‘-’, ‘.’ (not applicable/not defined) and ‘+’ strands respectively. The symbols are also accepted when setting the value.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current numeric strand identifier.
Definition at line 387 of file jbio.js.
jBio.Root
, jBio.SeqFeature.GenericI
Generic sequence feature base for `real' classes.
Definition at line 1597 of file jbio.js.
— Function on jBio.SeqFeature.Generic_base:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeature.Generic_base:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeature.Generic_base:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeature.Generic_base:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.SeqFeature.Generic.UniProtKBXML
Solvent accessibility feature in a PredictProtein XML document.
Definition at line 1840 of file jbio.js.
— Function on jBio.SeqFeature.SolvAcc.Ppxml:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeature.SolvAcc.Ppxml:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeature.SolvAcc.Ppxml:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeature.SolvAcc.Ppxml:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
jBio.Root
, jBio.AnnotatableI
, jBio.RangeI
Sequence feature.
Pure abstract class.
Definition at line 812 of file jbio.js.
— Function on jBio.SeqFeatureI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
— Function on jBio.SeqFeatureI:unknown
_testStrand ()
Private method for strand testing.
Definition at line 411 of file jbio.js.
— Function on jBio.SeqFeatureI:Boolean
contains (jBio.RangeI
__other,Object
__p)
Tests whether the range contains another.
Definition at line 455 of file jbio.js.
- Parameters:
- __other
- Other range.
- __p
- Parameter hash:
String
strand-testing- ‘strong’: Match if strands are defined and match.
‘weak’: Match if either strand is 0 or strands match.
‘ignore’: Disregard strands.
- Returns:
- ‘true’ if range contains the other, ‘false’ otherwise.
— Function on jBio.SeqFeatureI:positive integer
end (positive integer
__nv)
Get/set end of range.
Definition at line 358 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.SeqFeatureI:Boolean
isa (String
__typename)
Instance type checking.
- Parameters:
- __typename
- Class name.
- Returns:
- true if instance is a __typename, false otherwise.
if( ! someinstance.isa('jBio.RangeI') ) alert('Big trouble!');Definition at line 134 of file jbio.js.
— Function on jBio.SeqFeatureI:size type
llength ()
Get length of range:
end()-start()+1
.Definition at line 367 of file jbio.js.
- Returns:
- Current length: positive integer or ‘0’.
— Function on jBio.SeqFeatureI:positive integer
start (positive integer
__nv)
Get/set start of range.
Definition at line 376 of file jbio.js.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current value.
— Function on jBio.SeqFeatureI:Number
strand (String
__nv)
Get/set strand.
Strand types are represented by three numerical values: ‘-1’, ‘0’ and ‘1’. These correspond to the ‘-’, ‘.’ (not applicable/not defined) and ‘+’ strands respectively. The symbols are also accepted when setting the value.
- Parameters:
- __nv
- New value. Optional.
- Returns:
- Current numeric strand identifier.
Definition at line 387 of file jbio.js.
jBio.Root
, jBio.PrimarySeqI
, jBio.AnnotatableI
, jBio.DescribableI
, jBio.FeatureHolderI
, jBio.IdentifiableI
Sequence with features.
This class is used to define the interface.
Definition at line 1143 of file jbio.js.
— Function on jBio.SeqI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.SeqI
Sequence with features and more methods.
Definition at line 1177 of file jbio.js.
— Function on jBio.SeqI.RichSeqI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.SeqIO.UniProtKBXML
PredictProtein XML format IO handler.
Read only.
Definition at line 3676 of file jbio.js.
— Function on jBio.SeqIO.Ppxml:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Root.SeqIO
UniProtKB XML format IO handler.
Read only.
Definition at line 3607 of file jbio.js.
— Function on jBio.SeqIO.UniProtKBXML:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.Root.SeqIO
FASTA format IO handler.
Read only.
Definition at line 3536 of file jbio.js.
— Function on jBio.SeqIO.fasta:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
, jBio.SeqI
Class providing common implementation of certain methods for derived sequence classes such as jBio.Seq.
Definition at line 2854 of file jbio.js.
— Function on jBio.Seqbase:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
jBio.Root
XML element representation with additional methods.
Definition at line 1214 of file jbio.js.
— Function on jBio.XMLelementI:Array of String
_add_parents (Array of String
__typenames)
Add parents to class.
Multiple inheritance aid. Attributes and methods of latter parents override former ones. Also sets parents attribute to
- Parameters:
- __typenames
- Class names in an array.
- Returns:
- The value of
__typenames
.__typenames
, automatically adding jBio.Root to the list, so do not specify that. Give each parent only once.Definition at line 148 of file jbio.js.
?. Stajich JE, Block D, Boulez K, Brenner SE, Chervitz SA, Dagdigian C, Fuellen G, Gilbert JG, Korf I, Lapp H, Lehväslaiho H, Matsalla C, Mungall CJ, Osborne BI, Pocock MR, Schattner P, Senger M, Stein LD, Stupka E, Wilkinson MD, Birney E. The Bioperl toolkit: Perl modules for the life sciences. Genome Res. 2002;12(10):1611-8.
?. UniProt Consortium. The Universal Protein Resource (UniProt). Nucleic Acids Res. 2007 Jan;35(Database issue):D193-7. Epub 2006 Nov 16.
Copyright © 2000,2001,2002 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
The purpose of this License is to make a manual, textbook, or other functional and useful document free in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.
This License is a kind of “copyleft”, which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software.
We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference.
This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The “Document”, below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as “you”. You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law.
A “Modified Version” of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language.
A “Secondary Section” is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.
The “Invariant Sections” are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none.
The “Cover Texts” are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.
A “Transparent” copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not “Transparent” is called “Opaque”.
Examples of suitable formats for Transparent copies include plain ascii without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only.
The “Title Page” means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, “Title Page” means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text.
A section “Entitled XYZ” means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as “Acknowledgements”, “Dedications”, “Endorsements”, or “History”.) To “Preserve the Title” of such a section when you modify the Document means that it remains a section “Entitled XYZ” according to this definition.
The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License.
You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and you may publicly display copies.
If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.
If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.
It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document.
You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:
If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's license notice. These titles must be distinct from any other section titles.
You may add a section Entitled “Endorsements”, provided it contains nothing but endorsements of your Modified Version by various parties—for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard.
You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version.
You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers.
The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work.
In the combination, you must combine any sections Entitled “History” in the various original documents, forming one section Entitled “History”; likewise combine any sections Entitled “Acknowledgements”, and any sections Entitled “Dedications”. You must delete all sections Entitled “Endorsements.”
You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document.
A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an “aggregate” if the copyright resulting from the compilation is not used to limit the legal rights of the compilation's users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate.
Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail.
If a section in the Document is Entitled “Acknowledgements”, “Dedications”, or “History”, the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title.
You may not copy, modify, sublicense, or distribute the Document except as expressly provided for under this License. Any other attempt to copy, modify, sublicense or distribute the Document is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License “or any later version” applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation.
_add_annotation_value on jBio.Seq.RichSeq
: jBio.Seq.RichSeq_add_collision on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControl_add_flattened_SeqFeatures on jBio.FeatureHolderI
: jBio.FeatureHolderI_add_flattened_SeqFeatures on jBio.Graphics.Feature
: jBio.Graphics.Feature_add_flattened_SeqFeatures on jBio.Seq
: jBio.Seq_add_flattened_SeqFeatures on jBio.Seq.RichSeq
: jBio.Seq.RichSeq_add_flattened_SeqFeatures on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXML_add_flattened_SeqFeatures on jBio.Seqbase
: jBio.Seqbase_add_flattened_SeqFeatures on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxml_add_flattened_SeqFeatures on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxml_add_flattened_SeqFeatures on jBio.SeqFeature.Generic
: jBio.SeqFeature.Generic_add_flattened_SeqFeatures on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXML_add_flattened_SeqFeatures on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_base_add_flattened_SeqFeatures on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericI_add_flattened_SeqFeatures on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxml_add_flattened_SeqFeatures on jBio.SeqI
: jBio.SeqI_add_flattened_SeqFeatures on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqI_add_parents on jBio.Alphabet
: jBio.Alphabet_add_parents on jBio.AnnotatableI
: jBio.AnnotatableI_add_parents on jBio.Annotation.Collection
: jBio.Annotation.Collection_add_parents on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxml_add_parents on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignment_add_parents on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoReg_add_parents on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRel_add_parents on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAcc_add_parents on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXML_add_parents on jBio.Annotation.SimpleValue
: jBio.Annotation.SimpleValue_add_parents on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValue_add_parents on jBio.Annotation.TypeManager
: jBio.Annotation.TypeManager_add_parents on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValue_add_parents on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValue_add_parents on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValue_add_parents on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionI_add_parents on jBio.AnnotationI
: jBio.AnnotationI_add_parents on jBio.DescribableI
: jBio.DescribableI_add_parents on jBio.Exception
: jBio.Exception_add_parents on jBio.Exception.Deprecated
: jBio.Exception.Deprecated_add_parents on jBio.Exception.NaN
: jBio.Exception.NaN_add_parents on jBio.Exception.NotImplemented
: jBio.Exception.NotImplemented_add_parents on jBio.Exception.ReadOnly
: jBio.Exception.ReadOnly_add_parents on jBio.Factory.ObjectFactoryI
: jBio.Factory.ObjectFactoryI_add_parents on jBio.Factory.SequenceFactoryI
: jBio.Factory.SequenceFactoryI_add_parents on jBio.Factory.SequenceStreamI
: jBio.Factory.SequenceStreamI_add_parents on jBio.FeatureHolderI
: jBio.FeatureHolderI_add_parents on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControl_add_parents on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomer_add_parents on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomer_add_parents on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomer_add_parents on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyph_add_parents on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignment_add_parents on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrow_add_parents on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReg_add_parents on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfide_add_parents on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceted_add_parents on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generic_add_parents on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructure_add_parents on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcc_add_parents on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrel_add_parents on jBio.Graphics.DOM.Glyph_zoomer
: jBio.Graphics.DOM.Glyph_zoomer_add_parents on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomer_add_parents on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panel_add_parents on jBio.Graphics.DOM.Panel_zoomer
: jBio.Graphics.DOM.Panel_zoomer_add_parents on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Position_add_parents on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2pt_add_parents on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Rendering_add_parents on jBio.Graphics.DOM.Zoomer
: jBio.Graphics.DOM.Zoomer_add_parents on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.Positioned_add_parents on jBio.Graphics.DOMbase
: jBio.Graphics.DOMbase_add_parents on jBio.Graphics.DOMevents_binderI
: jBio.Graphics.DOMevents_binderI_add_parents on jBio.Graphics.Exception.DOM
: jBio.Graphics.Exception.DOM_add_parents on jBio.Graphics.Feature
: jBio.Graphics.Feature_add_parents on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factory_add_parents on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphI_add_parents on jBio.Graphics.Layout
: jBio.Graphics.Layout_add_parents on jBio.Graphics.Media
: jBio.Graphics.Media_add_parents on jBio.Graphics.Media.Print
: jBio.Graphics.Media.Print_add_parents on jBio.Graphics.Media.Screen
: jBio.Graphics.Media.Screen_add_parents on jBio.Graphics.Panel
: jBio.Graphics.Panel_add_parents on jBio.Graphics.Position
: jBio.Graphics.Position_add_parents on jBio.Graphics.Px2pt
: jBio.Graphics.Px2pt_add_parents on jBio.Graphics.Rendering
: jBio.Graphics.Rendering_add_parents on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentre_add_parents on jBio.IdentifiableI
: jBio.IdentifiableI_add_parents on jBio.Location.Atomic
: jBio.Location.Atomic_add_parents on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignment_add_parents on jBio.Location.Simple
: jBio.Location.Simple_add_parents on jBio.Location.Split
: jBio.Location.Split_add_parents on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationI_add_parents on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXML_add_parents on jBio.LocationI
: jBio.LocationI_add_parents on jBio.PrimarySeq
: jBio.PrimarySeq_add_parents on jBio.PrimarySeqI
: jBio.PrimarySeqI_add_parents on jBio.RangeI
: jBio.RangeI_add_parents on jBio.Root
: jBio.Root_add_parents on jBio.Root.IO
: jBio.Root.IO_add_parents on jBio.Root.SeqIO
: jBio.Root.SeqIO_add_parents on jBio.Seq
: jBio.Seq_add_parents on jBio.Seq.RichSeq
: jBio.Seq.RichSeq_add_parents on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXML_add_parents on jBio.Seq.SeqFactory
: jBio.Seq.SeqFactory_add_parents on jBio.Seq.SeqFastaSpeedFactory
: jBio.Seq.SeqFastaSpeedFactory_add_parents on jBio.Seqbase
: jBio.Seqbase_add_parents on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxml_add_parents on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxml_add_parents on jBio.SeqFeature.Generic
: jBio.SeqFeature.Generic_add_parents on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXML_add_parents on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_base_add_parents on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericI_add_parents on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxml_add_parents on jBio.SeqFeatureI
: jBio.SeqFeatureI_add_parents on jBio.SeqI
: jBio.SeqI_add_parents on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqI_add_parents on jBio.SeqIO.fasta
: jBio.SeqIO.fasta_add_parents on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxml_add_parents on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXML_add_parents on jBio.XMLelementI
: jBio.XMLelementI_add_track on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panel_add_track on jBio.Graphics.Panel
: jBio.Graphics.Panel_add_type_map on jBio.Annotation.TypeManager
: jBio.Annotation.TypeManager_attribute
: jBio.Annotation.XML.SimpleAttrValue_attribute
: jBio.Annotation.XML.BaseSimpleAttrValue_cache
: jBio_collides on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControl_collision_keys on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControl_do_add_track on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panel_do_add_track on jBio.Graphics.Panel
: jBio.Graphics.Panel_draw_tick_tbl on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrow_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyph_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignment_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrow_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReg_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfide_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceted_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generic_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructure_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcc_evtgt_bind_from_hash on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrel_evtgt_bind_from_hash on jBio.Graphics.DOMevents_binderI
: jBio.Graphics.DOMevents_binderI_expand_region on jBio.Graphics.Feature
: jBio.Graphics.Feature_expand_region on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxml_expand_region on jBio.SeqFeature.Generic
: jBio.SeqFeature.Generic_expand_region on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXML_expand_region on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxml_find_max_width on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentre_get_annotation_values on jBio.Seq.RichSeq
: jBio.Seq.RichSeq_get_bigger_bins on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentre_get_bin on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentre_get_color_for_facet on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReg_get_color_for_facet on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceted_get_color_for_facet on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcc_get_div_facet on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReg_get_div_facet on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceted_get_div_facet on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcc_get_feat_str on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReg_get_feat_str on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceted_get_feat_str on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcc_get_smaller_bins on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentre_gformat on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrow_guess_alphabet on jBio.PrimarySeq
: jBio.PrimarySeq_id_prefix on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panel_label on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignment_label on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrow_label on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReg_label on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfide_label on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceted_label on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generic_label on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructure_label on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcc_label on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrel_obtainDPI on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2pt_obtainDPI on jBio.Graphics.Px2pt
: jBio.Graphics.Px2pt_readbuffer on jBio.Root.IO
: jBio.Root.IO_readbuffer on jBio.Root.SeqIO
: jBio.Root.SeqIO_readbuffer on jBio.SeqIO.fasta
: jBio.SeqIO.fasta_readbuffer on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxml_readbuffer on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXML_readline on jBio.Root.IO
: jBio.Root.IO_readline on jBio.Root.SeqIO
: jBio.Root.SeqIO_readline on jBio.SeqIO.fasta
: jBio.SeqIO.fasta_readline on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxml_readline on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXML_root_element on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxml_root_element on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXML_subfeat on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyph_subfeat on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignment_subfeat on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrow_subfeat on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReg_subfeat on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfide_subfeat on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceted_subfeat on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generic_subfeat on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructure_subfeat on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcc_subfeat on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrel_subfeat on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphI_testStrand on jBio.Graphics.Feature
: jBio.Graphics.Feature_testStrand on jBio.Location.Atomic
: jBio.Location.Atomic_testStrand on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignment_testStrand on jBio.Location.Simple
: jBio.Location.Simple_testStrand on jBio.Location.Split
: jBio.Location.Split_testStrand on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationI_testStrand on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXML_testStrand on jBio.LocationI
: jBio.LocationI_testStrand on jBio.RangeI
: jBio.RangeI_testStrand on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxml_testStrand on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxml_testStrand on jBio.SeqFeature.Generic
: jBio.SeqFeature.Generic_testStrand on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXML_testStrand on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_base_testStrand on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericI_testStrand on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxml_testStrand on jBio.SeqFeatureI
: jBio.SeqFeatureI_to_text on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValue_typemap on jBio.Annotation.Collection
: jBio.Annotation.Collection_zoom_face on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomer_zoom_face on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomer_zoom_face on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomer_zoom_face on jBio.Graphics.DOM.Glyph_zoomer
: jBio.Graphics.DOM.Glyph_zoomer_zoom_face on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomer_zoom_face on jBio.Graphics.DOM.Panel_zoomer
: jBio.Graphics.DOM.Panel_zoomer_zoom_face on jBio.Graphics.DOM.Zoomer
: jBio.Graphics.DOM.Zoomer_zoom_face on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.Positionedaccession on jBio.Seq.RichSeq
: jBio.Seq.RichSeqaccession_number on jBio.PrimarySeq
: jBio.PrimarySeqaccession_number on jBio.PrimarySeqI
: jBio.PrimarySeqIaccession_number on jBio.Seq
: jBio.Seqaccession_number on jBio.Seq.RichSeq
: jBio.Seq.RichSeqaccession_number on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLaccession_number on jBio.Seqbase
: jBio.Seqbaseaccession_number on jBio.SeqI
: jBio.SeqIaccession_number on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIadd_Annotation on jBio.Annotation.Collection
: jBio.Annotation.Collectionadd_Annotation on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmladd_Annotation on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentadd_Annotation on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegadd_Annotation on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWReladd_Annotation on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccadd_Annotation on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLadd_Annotation on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIadd_category_labels on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneladd_category_labels on jBio.Graphics.Panel
: jBio.Graphics.Paneladd_collision on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControladd_date on jBio.Seq.RichSeq
: jBio.Seq.RichSeqadd_glyph_into_space on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentreadd_keyword on jBio.Seq.RichSeq
: jBio.Seq.RichSeqadd_new_glyph on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentreadd_secondary_accession on jBio.Seq.RichSeq
: jBio.Seq.RichSeqadd_SeqFeature on jBio.FeatureHolderI
: jBio.FeatureHolderIadd_SeqFeature on jBio.Graphics.Feature
: jBio.Graphics.Featureadd_SeqFeature on jBio.Seq
: jBio.Seqadd_SeqFeature on jBio.Seq.RichSeq
: jBio.Seq.RichSeqadd_SeqFeature on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLadd_SeqFeature on jBio.Seqbase
: jBio.Seqbaseadd_SeqFeature on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmladd_SeqFeature on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmladd_SeqFeature on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericadd_SeqFeature on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLadd_SeqFeature on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseadd_SeqFeature on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIadd_SeqFeature on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmladd_SeqFeature on jBio.SeqI
: jBio.SeqIadd_SeqFeature on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIadd_space on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentreadd_track on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneladd_track on jBio.Graphics.Panel
: jBio.Graphics.Paneladd_value on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValueall_callbacks on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelall_callbacks on jBio.Graphics.Panel
: jBio.Graphics.Panelall_SeqFeatures on jBio.Seq
: jBio.Seqall_SeqFeatures on jBio.Seq.RichSeq
: jBio.Seq.RichSeqalphabet on jBio.PrimarySeq
: jBio.PrimarySeqalphabet on jBio.PrimarySeqI
: jBio.PrimarySeqIalphabet on jBio.Root.SeqIO
: jBio.Root.SeqIOalphabet on jBio.Seq
: jBio.Seqalphabet on jBio.Seq.RichSeq
: jBio.Seq.RichSeqalphabet on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLalphabet on jBio.Seqbase
: jBio.Seqbasealphabet on jBio.SeqI
: jBio.SeqIalphabet on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIalphabet on jBio.SeqIO.fasta
: jBio.SeqIO.fastaalphabet on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlalphabet on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLannotation on jBio.AnnotatableI
: jBio.AnnotatableIannotation on jBio.Graphics.Feature
: jBio.Graphics.Featureannotation on jBio.Seq
: jBio.Seqannotation on jBio.Seq.RichSeq
: jBio.Seq.RichSeqannotation on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLannotation on jBio.Seqbase
: jBio.Seqbaseannotation on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlannotation on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlannotation on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericannotation on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLannotation on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseannotation on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIannotation on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlannotation on jBio.SeqFeatureI
: jBio.SeqFeatureIannotation on jBio.SeqI
: jBio.SeqIannotation on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIapi_version
: jBio.Graphics.Panelapi_version
: jBio.Graphics.DOM.Panelarrowheads on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowas_text on jBio.Annotation.Collection
: jBio.Annotation.Collectionas_text on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlas_text on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentas_text on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegas_text on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelas_text on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccas_text on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLas_text on jBio.Annotation.SimpleValue
: jBio.Annotation.SimpleValueas_text on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValueas_text on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValueas_text on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValueas_text on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValueas_text on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIas_text on jBio.AnnotationI
: jBio.AnnotationIauthority on jBio.IdentifiableI
: jBio.IdentifiableIauthority on jBio.PrimarySeq
: jBio.PrimarySeqauthority on jBio.PrimarySeqI
: jBio.PrimarySeqIauthority on jBio.Seq
: jBio.Seqauthority on jBio.Seq.RichSeq
: jBio.Seq.RichSeqauthority on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLauthority on jBio.Seqbase
: jBio.Seqbaseauthority on jBio.SeqI
: jBio.SeqIauthority on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIautopad on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelautopad on jBio.Graphics.Panel
: jBio.Graphics.Panelbackground on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelbackground on jBio.Graphics.Panel
: jBio.Graphics.Panelbase_font_size on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomerbgcolor on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphbgcolor on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentbgcolor on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowbgcolor on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegbgcolor on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidebgcolor on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedbgcolor on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericbgcolor on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurebgcolor on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccbgcolor on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelbgcolor on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelbgcolor on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIbgcolor on jBio.Graphics.Panel
: jBio.Graphics.PanelbgElement on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.GlyphbgElement on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.AlignmentbgElement on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.ArrowbgElement on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegbgElement on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.DisulfidebgElement on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.FacetedbgElement on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.GenericbgElement on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurebgElement on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccbgElement on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelbinw on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentreblw on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerbottom on jBio.Graphics.Panel
: jBio.Graphics.Panelbump on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphbump on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentbump on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowbump on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegbump on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidebump on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedbump on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericbump on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurebump on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccbump on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelbump on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIca_elem on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingcalculate_units on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowclassname
: jBio.XMLelementIclassname
: jBio.Seqbaseclassname
: jBio.SeqIO.fastaclassname
: jBio.SeqIO.UniProtKBXMLclassname
: jBio.SeqIO.Ppxmlclassname
: jBio.SeqI.RichSeqIclassname
: jBio.SeqIclassname
: jBio.SeqFeatureIclassname
: jBio.SeqFeature.SolvAcc.Ppxmlclassname
: jBio.SeqFeature.Generic_baseclassname
: jBio.SeqFeature.GenericIclassname
: jBio.SeqFeature.Generic.UniProtKBXMLclassname
: jBio.SeqFeature.Genericclassname
: jBio.SeqFeature.DisoReg.Ppxmlclassname
: jBio.SeqFeature.Alignment.Ppxmlclassname
: jBio.Seq.SeqFastaSpeedFactoryclassname
: jBio.Seq.SeqFactoryclassname
: jBio.Seq.RichSeq.UniProtKBXMLclassname
: jBio.Seq.RichSeqclassname
: jBio.Seqclassname
: jBio.Root.SeqIOclassname
: jBio.Root.IOclassname
: jBio.Rootclassname
: jBio.RangeIclassname
: jBio.PrimarySeqIclassname
: jBio.PrimarySeqclassname
: jBio.LocationIclassname
: jBio.Location.UniProtKBXMLclassname
: jBio.Location.SplitLocationIclassname
: jBio.Location.Splitclassname
: jBio.Location.Simpleclassname
: jBio.Location.Ppxml.Alignmentclassname
: jBio.Location.Atomicclassname
: jBio.IdentifiableIclassname
: jBio.Graphics.Spacecentreclassname
: jBio.Graphics.Renderingclassname
: jBio.Graphics.Px2ptclassname
: jBio.Graphics.Positionclassname
: jBio.Graphics.Panelclassname
: jBio.Graphics.Media.Screenclassname
: jBio.Graphics.Media.Printclassname
: jBio.Graphics.Mediaclassname
: jBio.Graphics.Layoutclassname
: jBio.Graphics.GlyphIclassname
: jBio.Graphics.Glyph.Factoryclassname
: jBio.Graphics.Featureclassname
: jBio.Graphics.Exception.DOMclassname
: jBio.Graphics.DOMevents_binderIclassname
: jBio.Graphics.DOMbaseclassname
: jBio.Graphics.DOM.Zoomer.Positionedclassname
: jBio.Graphics.DOM.Zoomerclassname
: jBio.Graphics.DOM.Renderingclassname
: jBio.Graphics.DOM.Px2ptclassname
: jBio.Graphics.DOM.Positionclassname
: jBio.Graphics.DOM.Panel_zoomerclassname
: jBio.Graphics.DOM.Panelclassname
: jBio.Graphics.DOM.Label_zoomerclassname
: jBio.Graphics.DOM.Glyph_zoomerclassname
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelclassname
: jBio.Graphics.DOM.Glyph.SolvAccclassname
: jBio.Graphics.DOM.Glyph.SecondaryStructureclassname
: jBio.Graphics.DOM.Glyph.Genericclassname
: jBio.Graphics.DOM.Glyph.Facetedclassname
: jBio.Graphics.DOM.Glyph.Disulfideclassname
: jBio.Graphics.DOM.Glyph.DisoRegclassname
: jBio.Graphics.DOM.Glyph.Arrowclassname
: jBio.Graphics.DOM.Glyph.Alignmentclassname
: jBio.Graphics.DOM.Glyphclassname
: jBio.Graphics.DOM.Faceted_zoomerclassname
: jBio.Graphics.DOM.Disulf_zoomerclassname
: jBio.Graphics.DOM.Box_zoomerclassname
: jBio.Graphics.CollisionControlclassname
: jBio.FeatureHolderIclassname
: jBio.Factory.SequenceStreamIclassname
: jBio.Factory.SequenceFactoryIclassname
: jBio.Factory.ObjectFactoryIclassname
: jBio.Exception.ReadOnlyclassname
: jBio.Exception.NotImplementedclassname
: jBio.Exception.NaNclassname
: jBio.Exception.Deprecatedclassname
: jBio.Exceptionclassname
: jBio.DescribableIclassname
: jBio.AnnotationIclassname
: jBio.AnnotationCollectionIclassname
: jBio.Annotation.XML.SimpleValueclassname
: jBio.Annotation.XML.SimpleAttrValueclassname
: jBio.Annotation.XML.BaseSimpleAttrValueclassname
: jBio.Annotation.TypeManagerclassname
: jBio.Annotation.StructuredValueclassname
: jBio.Annotation.SimpleValueclassname
: jBio.Annotation.Collection.UniProtKBXMLclassname
: jBio.Annotation.Collection.Ppxml.SolvAccclassname
: jBio.Annotation.Collection.Ppxml.FeatWRelclassname
: jBio.Annotation.Collection.Ppxml.DisoRegclassname
: jBio.Annotation.Collection.Ppxml.Alignmentclassname
: jBio.Annotation.Collection.Ppxmlclassname
: jBio.Annotation.Collectionclassname
: jBio.AnnotatableIclassname
: jBio.Alphabetcollides on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControlcollision_controller on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphcollision_controller on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentcollision_controller on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowcollision_controller on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegcollision_controller on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidecollision_controller on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedcollision_controller on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericcollision_controller on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurecollision_controller on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcccollision_controller on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelcollision_controller on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelcollision_controller on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIconnector on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphconnector on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentconnector on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowconnector on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegconnector on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideconnector on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedconnector on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericconnector on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureconnector on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccconnector on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelconnector on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIcontains on jBio.Graphics.Feature
: jBio.Graphics.Featurecontains on jBio.Location.Atomic
: jBio.Location.Atomiccontains on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentcontains on jBio.Location.Simple
: jBio.Location.Simplecontains on jBio.Location.Split
: jBio.Location.Splitcontains on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIcontains on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLcontains on jBio.LocationI
: jBio.LocationIcontains on jBio.RangeI
: jBio.RangeIcontains on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlcontains on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlcontains on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericcontains on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLcontains on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_basecontains on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIcontains on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlcontains on jBio.SeqFeatureI
: jBio.SeqFeatureIcontent_height on jBio.Graphics.Layout
: jBio.Graphics.Layoutcontent_width on jBio.Graphics.Layout
: jBio.Graphics.Layoutcoordinate_policy on jBio.Location.Atomic
: jBio.Location.Atomiccoordinate_policy on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentcoordinate_policy on jBio.Location.Simple
: jBio.Location.Simplecoordinate_policy on jBio.Location.Split
: jBio.Location.Splitcoordinate_policy on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIcoordinate_policy on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLcoordinate_policy on jBio.LocationI
: jBio.LocationIcraete_object on jBio.Factory.ObjectFactoryI
: jBio.Factory.ObjectFactoryIcraete_object on jBio.Factory.SequenceFactoryI
: jBio.Factory.SequenceFactoryIcraete_object on jBio.Seq.SeqFactory
: jBio.Seq.SeqFactorycraete_object on jBio.Seq.SeqFastaSpeedFactory
: jBio.Seq.SeqFastaSpeedFactorycreate_object on jBio.Seq.SeqFactory
: jBio.Seq.SeqFactorycreate_object on jBio.Seq.SeqFastaSpeedFactory
: jBio.Seq.SeqFastaSpeedFactorydata on jBio
: jBioDEFAULT_PROPERTIES
: jBio.Graphics.Glyph.Factorydescription on jBio.DescribableI
: jBio.DescribableIdescription on jBio.PrimarySeq
: jBio.PrimarySeqdescription on jBio.PrimarySeqI
: jBio.PrimarySeqIdescription on jBio.Seq
: jBio.Seqdescription on jBio.Seq.RichSeq
: jBio.Seq.RichSeqdescription on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLdescription on jBio.Seqbase
: jBio.Seqbasedescription on jBio.SeqI
: jBio.SeqIdescription on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIdisplay_end on jBio.Graphics.Layout
: jBio.Graphics.Layoutdisplay_id on jBio.PrimarySeq
: jBio.PrimarySeqdisplay_id on jBio.PrimarySeqI
: jBio.PrimarySeqIdisplay_id on jBio.Seq
: jBio.Seqdisplay_id on jBio.Seq.RichSeq
: jBio.Seq.RichSeqdisplay_id on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLdisplay_id on jBio.Seqbase
: jBio.Seqbasedisplay_id on jBio.SeqI
: jBio.SeqIdisplay_id on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIdisplay_length on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneldisplay_length on jBio.Graphics.Layout
: jBio.Graphics.Layoutdisplay_length on jBio.Graphics.Panel
: jBio.Graphics.Paneldisplay_name on jBio.DescribableI
: jBio.DescribableIdisplay_name on jBio.Graphics.Feature
: jBio.Graphics.Featuredisplay_name on jBio.PrimarySeq
: jBio.PrimarySeqdisplay_name on jBio.PrimarySeqI
: jBio.PrimarySeqIdisplay_name on jBio.Seq
: jBio.Seqdisplay_name on jBio.Seq.RichSeq
: jBio.Seq.RichSeqdisplay_name on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLdisplay_name on jBio.Seqbase
: jBio.Seqbasedisplay_name on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmldisplay_name on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmldisplay_name on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericdisplay_name on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLdisplay_name on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_basedisplay_name on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIdisplay_name on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmldisplay_name on jBio.SeqFeatureI
: jBio.SeqFeatureIdisplay_name on jBio.SeqI
: jBio.SeqIdisplay_name on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIdisplay_start on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneldisplay_start on jBio.Graphics.Layout
: jBio.Graphics.Layoutdisplay_start on jBio.Graphics.Panel
: jBio.Graphics.Paneldivision on jBio.Seq.RichSeq
: jBio.Seq.RichSeqdivision on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLdivision on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIdo_layout on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphdo_layout on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentdo_layout on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowdo_layout on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegdo_layout on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidedo_layout on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceteddo_layout on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericdo_layout on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuredo_layout on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccdo_layout on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreldo_layout on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIdo_zoom on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerdo_zoom on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerdo_zoom on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomerdo_zoom on jBio.Graphics.DOM.Glyph_zoomer
: jBio.Graphics.DOM.Glyph_zoomerdo_zoom on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomerdo_zoom on jBio.Graphics.DOM.Panel_zoomer
: jBio.Graphics.DOM.Panel_zoomerdo_zoom on jBio.Graphics.DOM.Zoomer
: jBio.Graphics.DOM.Zoomerdo_zoom on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.PositioneddomElement on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerdomElement on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerdomElement on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomerdomElement on jBio.Graphics.DOM.Glyph_zoomer
: jBio.Graphics.DOM.Glyph_zoomerdomElement on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomerdomElement on jBio.Graphics.DOM.Panel_zoomer
: jBio.Graphics.DOM.Panel_zoomerdomElement on jBio.Graphics.DOM.Zoomer
: jBio.Graphics.DOM.ZoomerdomElement on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.PositionedDOMindex
: jBio.Graphics.DOM.PanelDPI on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptDPI on jBio.Graphics.Px2pt
: jBio.Graphics.Px2ptdraftArea on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneldraw on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphdraw on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentdraw on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowdraw on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegdraw on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidedraw on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceteddraw on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericdraw on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuredraw on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccdraw on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreldraw on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneldraw on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIdraw on jBio.Graphics.Panel
: jBio.Graphics.Paneldraw_box on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphdraw_box on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentdraw_box on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowdraw_box on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegdraw_box on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidedraw_box on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceteddraw_box on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericdraw_box on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuredraw_box on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccdraw_box on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreldraw_component on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphdraw_component on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentdraw_component on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowdraw_component on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegdraw_component on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidedraw_component on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceteddraw_component on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericdraw_component on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuredraw_component on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccdraw_component on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreldraw_label on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentdraw_label on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowdraw_label on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegdraw_label on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidedraw_label on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceteddraw_label on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericdraw_label on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuredraw_label on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccdraw_label on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreldraw_parallel on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowdraw_track_key on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphdraw_track_key on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentdraw_track_key on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowdraw_track_key on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegdraw_track_key on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidedraw_track_key on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Faceteddraw_track_key on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericdraw_track_key on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuredraw_track_key on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccdraw_track_key on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreldraw_track_key on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIempty_track_style on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelempty_track_style on jBio.Graphics.Panel
: jBio.Graphics.Panelend on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphend on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentend on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowend on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegend on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideend on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedend on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericend on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureend on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccend on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelend on jBio.Graphics.Feature
: jBio.Graphics.Featureend on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIend on jBio.Location.Atomic
: jBio.Location.Atomicend on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentend on jBio.Location.Simple
: jBio.Location.Simpleend on jBio.Location.Split
: jBio.Location.Splitend on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIend on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLend on jBio.LocationI
: jBio.LocationIend on jBio.RangeI
: jBio.RangeIend on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlend on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlend on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericend on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLend on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseend on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIend on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlend on jBio.SeqFeatureI
: jBio.SeqFeatureIend_pos_type on jBio.Location.Atomic
: jBio.Location.Atomicend_pos_type on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentend_pos_type on jBio.Location.Simple
: jBio.Location.Simpleend_pos_type on jBio.Location.Split
: jBio.Location.Splitend_pos_type on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIend_pos_type on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLend_pos_type on jBio.LocationI
: jBio.LocationIescapeHTML on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.GlyphescapeHTML on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.AlignmentescapeHTML on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.ArrowescapeHTML on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegescapeHTML on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.DisulfideescapeHTML on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.FacetedescapeHTML on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.GenericescapeHTML on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureescapeHTML on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccescapeHTML on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelescapeHTML on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.PanelescapeHTML on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptescapeHTML on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.RenderingescapeHTML on jBio.Graphics.DOMbase
: jBio.Graphics.DOMbaseevtgt_bind on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphevtgt_bind on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentevtgt_bind on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowevtgt_bind on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegevtgt_bind on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideevtgt_bind on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedevtgt_bind on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericevtgt_bind on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureevtgt_bind on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccevtgt_bind on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelevtgt_bind on jBio.Graphics.DOMevents_binderI
: jBio.Graphics.DOMevents_binderIevtgt_innervate on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphevtgt_innervate on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentevtgt_innervate on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowevtgt_innervate on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegevtgt_innervate on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideevtgt_innervate on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedevtgt_innervate on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericevtgt_innervate on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureevtgt_innervate on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccevtgt_innervate on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelevtgt_innervate on jBio.Graphics.DOMevents_binderI
: jBio.Graphics.DOMevents_binderIexceeds_depth on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphexceeds_depth on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentexceeds_depth on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowexceeds_depth on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegexceeds_depth on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideexceeds_depth on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedexceeds_depth on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericexceeds_depth on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureexceeds_depth on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccexceeds_depth on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelexceeds_depth on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIextend_grid on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelextend_grid on jBio.Graphics.Panel
: jBio.Graphics.PanelEXTRA_RIGHT_PADDING
: jBio.Graphics.PanelEXTRA_RIGHT_PADDING
: jBio.Graphics.DOM.Panelfacet_data on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomerfactory on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphfactory on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentfactory on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowfactory on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegfactory on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidefactory on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedfactory on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericfactory on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurefactory on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccfactory on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelfactory on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIfeature on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphfeature on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentfeature on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowfeature on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegfeature on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidefeature on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedfeature on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericfeature on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurefeature on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccfeature on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelfeature on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIfeature_count on jBio.FeatureHolderI
: jBio.FeatureHolderIfeature_count on jBio.Graphics.Feature
: jBio.Graphics.Featurefeature_count on jBio.Seq
: jBio.Seqfeature_count on jBio.Seq.RichSeq
: jBio.Seq.RichSeqfeature_count on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLfeature_count on jBio.Seqbase
: jBio.Seqbasefeature_count on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlfeature_count on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlfeature_count on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericfeature_count on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLfeature_count on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_basefeature_count on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIfeature_count on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlfeature_count on jBio.SeqI
: jBio.SeqIfeature_count on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIfeature_has_subparts on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphfeature_has_subparts on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentfeature_has_subparts on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowfeature_has_subparts on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegfeature_has_subparts on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidefeature_has_subparts on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedfeature_has_subparts on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericfeature_has_subparts on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurefeature_has_subparts on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccfeature_has_subparts on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelfeature_has_subparts on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIfeature_to_glyph on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryfgcolor on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphfgcolor on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentfgcolor on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowfgcolor on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegfgcolor on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidefgcolor on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedfgcolor on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericfgcolor on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurefgcolor on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccfgcolor on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelfgcolor on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIfind_space on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentreflatten_Annotations on jBio.Annotation.Collection
: jBio.Annotation.Collectionflip_strand on jBio.Location.Atomic
: jBio.Location.Atomicflip_strand on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentflip_strand on jBio.Location.Simple
: jBio.Location.Simpleflip_strand on jBio.Location.Split
: jBio.Location.Splitflip_strand on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIflip_strand on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLflip_strand on jBio.LocationI
: jBio.LocationIfont on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryformat_key on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelfull_height on jBio.Graphics.Layout
: jBio.Graphics.Layoutfull_width on jBio.Graphics.Layout
: jBio.Graphics.Layoutge on jBio.Graphics.Layout
: jBio.Graphics.Layoutget_all_annotation_keys on jBio.Annotation.Collection
: jBio.Annotation.Collectionget_all_annotation_keys on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlget_all_annotation_keys on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentget_all_annotation_keys on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegget_all_annotation_keys on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelget_all_annotation_keys on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccget_all_annotation_keys on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLget_all_annotation_keys on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIget_all_Annotations on jBio.Annotation.Collection
: jBio.Annotation.Collectionget_all_SeqFeatures on jBio.FeatureHolderI
: jBio.FeatureHolderIget_all_SeqFeatures on jBio.Graphics.Feature
: jBio.Graphics.Featureget_all_SeqFeatures on jBio.Seq
: jBio.Seqget_all_SeqFeatures on jBio.Seq.RichSeq
: jBio.Seq.RichSeqget_all_SeqFeatures on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLget_all_SeqFeatures on jBio.Seqbase
: jBio.Seqbaseget_all_SeqFeatures on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlget_all_SeqFeatures on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlget_all_SeqFeatures on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericget_all_SeqFeatures on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLget_all_SeqFeatures on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseget_all_SeqFeatures on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIget_all_SeqFeatures on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlget_all_SeqFeatures on jBio.SeqI
: jBio.SeqIget_all_SeqFeatures on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIget_all_values on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValueget_Annotations on jBio.Annotation.Collection
: jBio.Annotation.Collectionget_Annotations on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlget_Annotations on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentget_Annotations on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegget_Annotations on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelget_Annotations on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccget_Annotations on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLget_Annotations on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIget_dates on jBio.Seq.RichSeq
: jBio.Seq.RichSeqget_dates on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLget_dates on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIget_glyph_property on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryget_keywords on jBio.Seq.RichSeq
: jBio.Seq.RichSeqget_keywords on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLget_keywords on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIget_not_ignored_subparts on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccget_not_ignored_subparts on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelget_not_ignored_subparts on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIget_num_of_annotations on jBio.Annotation.Collection
: jBio.Annotation.Collectionget_num_of_annotations on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlget_num_of_annotations on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentget_num_of_annotations on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegget_num_of_annotations on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelget_num_of_annotations on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccget_num_of_annotations on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLget_num_of_annotations on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIget_secondary_accessions on jBio.Seq.RichSeq
: jBio.Seq.RichSeqget_secondary_accessions on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLget_secondary_accessions on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIget_SeqFeatures on jBio.FeatureHolderI
: jBio.FeatureHolderIget_SeqFeatures on jBio.Graphics.Feature
: jBio.Graphics.Featureget_SeqFeatures on jBio.Seq
: jBio.Seqget_SeqFeatures on jBio.Seq.RichSeq
: jBio.Seq.RichSeqget_SeqFeatures on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLget_SeqFeatures on jBio.Seqbase
: jBio.Seqbaseget_SeqFeatures on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlget_SeqFeatures on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlget_SeqFeatures on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericget_SeqFeatures on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLget_SeqFeatures on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseget_SeqFeatures on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIget_SeqFeatures on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlget_SeqFeatures on jBio.SeqI
: jBio.SeqIget_SeqFeatures on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIget_values on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValueget_visible_parts on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphget_visible_parts on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentget_visible_parts on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowget_visible_parts on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegget_visible_parts on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideget_visible_parts on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedget_visible_parts on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericget_visible_parts on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureget_visible_parts on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccget_visible_parts on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelget_visible_parts on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIget_zoomer on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphget_zoomer on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentget_zoomer on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowget_zoomer on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegget_zoomer on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideget_zoomer on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedget_zoomer on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericget_zoomer on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureget_zoomer on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccget_zoomer on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelget_zoomer on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelget_zoomer on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptget_zoomer on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingget_zoomer on jBio.Graphics.DOMbase
: jBio.Graphics.DOMbasegetElementsByTagNameAndAttr on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.PpxmlgetElementsByTagNameAndAttr on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.AlignmentgetElementsByTagNameAndAttr on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoReggetElementsByTagNameAndAttr on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelgetElementsByTagNameAndAttr on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccgetElementsByTagNameAndAttr on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLgetElementsByTagNameAndAttr on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValuegetElementsByTagNameAndAttr on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValuegetElementsByTagNameAndAttr on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValuegetElementsByTagNameAndAttr on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.AlignmentgetElementsByTagNameAndAttr on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLgetElementsByTagNameAndAttr on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLgetElementsByTagNameAndAttr on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.PpxmlgetElementsByTagNameAndAttr on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.PpxmlgetElementsByTagNameAndAttr on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLgetElementsByTagNameAndAttr on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.PpxmlgetElementsByTagNameAndAttr on jBio.XMLelementI
: jBio.XMLelementIglyph_map on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryglyph_properties on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryglyph_property on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryglyph_property_names on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factorygrid on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelgrid on jBio.Graphics.Panel
: jBio.Graphics.PanelGRIDCOLOR
: jBio.Graphics.PanelGRIDCOLOR
: jBio.Graphics.DOM.Panelgridcolor on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelgridcolor on jBio.Graphics.Panel
: jBio.Graphics.Panelgrids on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControlhash_tree on jBio.Annotation.Collection
: jBio.Annotation.Collectionhash_tree on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlhash_tree on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmenthash_tree on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoReghash_tree on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelhash_tree on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAcchash_tree on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLhash_tree on jBio.Annotation.SimpleValue
: jBio.Annotation.SimpleValuehash_tree on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValuehash_tree on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValuehash_tree on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValuehash_tree on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValuehash_tree on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIhash_tree on jBio.AnnotationI
: jBio.AnnotationIhbumppad on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphhbumppad on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmenthbumppad on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowhbumppad on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReghbumppad on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidehbumppad on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedhbumppad on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generichbumppad on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurehbumppad on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcchbumppad on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelhbumppad on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIheight on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerheight on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerheight on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomerheight on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.PositionedhookElement on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptid on jBio.PrimarySeq
: jBio.PrimarySeqid on jBio.Seq
: jBio.Seqid on jBio.Seq.RichSeq
: jBio.Seq.RichSeqiheight on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerimage_class on jBio.Graphics.Panel
: jBio.Graphics.Panelis_circular on jBio.PrimarySeq
: jBio.PrimarySeqis_circular on jBio.PrimarySeqI
: jBio.PrimarySeqIis_circular on jBio.Seq
: jBio.Seqis_circular on jBio.Seq.RichSeq
: jBio.Seq.RichSeqis_circular on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLis_circular on jBio.Seqbase
: jBio.Seqbaseis_circular on jBio.SeqI
: jBio.SeqIis_circular on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIis_remote on jBio.Location.Atomic
: jBio.Location.Atomicis_remote on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentis_remote on jBio.Location.Simple
: jBio.Location.Simpleis_remote on jBio.Location.Split
: jBio.Location.Splitis_remote on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIis_remote on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLis_remote on jBio.LocationI
: jBio.LocationIis_single_sequence on jBio.Location.Split
: jBio.Location.Splitis_single_sequence on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIis_valid on jBio.Annotation.TypeManager
: jBio.Annotation.TypeManagerisa on jBio.Alphabet
: jBio.Alphabetisa on jBio.AnnotatableI
: jBio.AnnotatableIisa on jBio.Annotation.Collection
: jBio.Annotation.Collectionisa on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlisa on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentisa on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegisa on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelisa on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccisa on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLisa on jBio.Annotation.SimpleValue
: jBio.Annotation.SimpleValueisa on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValueisa on jBio.Annotation.TypeManager
: jBio.Annotation.TypeManagerisa on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValueisa on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValueisa on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValueisa on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIisa on jBio.AnnotationI
: jBio.AnnotationIisa on jBio.DescribableI
: jBio.DescribableIisa on jBio.Exception
: jBio.Exceptionisa on jBio.Exception.Deprecated
: jBio.Exception.Deprecatedisa on jBio.Exception.NaN
: jBio.Exception.NaNisa on jBio.Exception.NotImplemented
: jBio.Exception.NotImplementedisa on jBio.Exception.ReadOnly
: jBio.Exception.ReadOnlyisa on jBio.Factory.ObjectFactoryI
: jBio.Factory.ObjectFactoryIisa on jBio.Factory.SequenceFactoryI
: jBio.Factory.SequenceFactoryIisa on jBio.Factory.SequenceStreamI
: jBio.Factory.SequenceStreamIisa on jBio.FeatureHolderI
: jBio.FeatureHolderIisa on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControlisa on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerisa on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerisa on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomerisa on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphisa on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentisa on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowisa on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegisa on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideisa on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedisa on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericisa on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureisa on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccisa on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelisa on jBio.Graphics.DOM.Glyph_zoomer
: jBio.Graphics.DOM.Glyph_zoomerisa on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomerisa on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelisa on jBio.Graphics.DOM.Panel_zoomer
: jBio.Graphics.DOM.Panel_zoomerisa on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionisa on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptisa on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingisa on jBio.Graphics.DOM.Zoomer
: jBio.Graphics.DOM.Zoomerisa on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.Positionedisa on jBio.Graphics.DOMbase
: jBio.Graphics.DOMbaseisa on jBio.Graphics.DOMevents_binderI
: jBio.Graphics.DOMevents_binderIisa on jBio.Graphics.Exception.DOM
: jBio.Graphics.Exception.DOMisa on jBio.Graphics.Feature
: jBio.Graphics.Featureisa on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryisa on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIisa on jBio.Graphics.Layout
: jBio.Graphics.Layoutisa on jBio.Graphics.Media
: jBio.Graphics.Mediaisa on jBio.Graphics.Media.Print
: jBio.Graphics.Media.Printisa on jBio.Graphics.Media.Screen
: jBio.Graphics.Media.Screenisa on jBio.Graphics.Panel
: jBio.Graphics.Panelisa on jBio.Graphics.Position
: jBio.Graphics.Positionisa on jBio.Graphics.Px2pt
: jBio.Graphics.Px2ptisa on jBio.Graphics.Rendering
: jBio.Graphics.Renderingisa on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentreisa on jBio.IdentifiableI
: jBio.IdentifiableIisa on jBio.Location.Atomic
: jBio.Location.Atomicisa on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentisa on jBio.Location.Simple
: jBio.Location.Simpleisa on jBio.Location.Split
: jBio.Location.Splitisa on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIisa on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLisa on jBio.LocationI
: jBio.LocationIisa on jBio.PrimarySeq
: jBio.PrimarySeqisa on jBio.PrimarySeqI
: jBio.PrimarySeqIisa on jBio.RangeI
: jBio.RangeIisa on jBio.Root
: jBio.Rootisa on jBio.Root.IO
: jBio.Root.IOisa on jBio.Root.SeqIO
: jBio.Root.SeqIOisa on jBio.Seq
: jBio.Seqisa on jBio.Seq.RichSeq
: jBio.Seq.RichSeqisa on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLisa on jBio.Seq.SeqFactory
: jBio.Seq.SeqFactoryisa on jBio.Seq.SeqFastaSpeedFactory
: jBio.Seq.SeqFastaSpeedFactoryisa on jBio.Seqbase
: jBio.Seqbaseisa on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlisa on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlisa on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericisa on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLisa on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseisa on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIisa on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlisa on jBio.SeqFeatureI
: jBio.SeqFeatureIisa on jBio.SeqI
: jBio.SeqIisa on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIisa on jBio.SeqIO.fasta
: jBio.SeqIO.fastaisa on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlisa on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLisa on jBio.XMLelementI
: jBio.XMLelementIiwidth on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerkey_align on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_align on jBio.Graphics.Panel
: jBio.Graphics.Panelkey_boxes on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_boxes on jBio.Graphics.Panel
: jBio.Graphics.Panelkey_color on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_color on jBio.Graphics.Panel
: jBio.Graphics.Panelkey_font on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_font on jBio.Graphics.Panel
: jBio.Graphics.Panelkey_font_size on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_font_size on jBio.Graphics.Panel
: jBio.Graphics.Panelkey_font_weight on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_font_weight on jBio.Graphics.Panel
: jBio.Graphics.Panelkey_spacing on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_spacing on jBio.Graphics.Panel
: jBio.Graphics.Panelkey_style on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelkey_style on jBio.Graphics.Panel
: jBio.Graphics.PanelKEYALIGN
: jBio.Graphics.PanelKEYALIGN
: jBio.Graphics.DOM.PanelKEYCOLOR
: jBio.Graphics.PanelKEYCOLOR
: jBio.Graphics.DOM.PanelKEYLABELFONT
: jBio.Graphics.PanelKEYLABELFONT
: jBio.Graphics.DOM.PanelKEYLABELFONTSIZE
: jBio.Graphics.PanelKEYLABELFONTSIZE
: jBio.Graphics.DOM.PanelKEYLABELFONTWEIGHT
: jBio.Graphics.PanelKEYLABELFONTWEIGHT
: jBio.Graphics.DOM.PanelKEYPADTOP
: jBio.Graphics.PanelKEYPADTOP
: jBio.Graphics.DOM.PanelKEYSPACING
: jBio.Graphics.PanelKEYSPACING
: jBio.Graphics.DOM.PanelKEYSTYLE
: jBio.Graphics.PanelKEYSTYLE
: jBio.Graphics.DOM.Panellabel on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentlabel on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowlabel on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReglabel on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidelabel on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedlabel on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericlabel on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurelabel on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcclabel on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrellayout on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionlayout on jBio.Graphics.Position
: jBio.Graphics.Positionlayout_sort on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphlayout_sort on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentlayout_sort on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowlayout_sort on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReglayout_sort on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidelayout_sort on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedlayout_sort on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericlayout_sort on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurelayout_sort on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcclayout_sort on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrellayout_sort on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIleft on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerleft on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerleft on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomerleft on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomerleft on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.Positionedleft on jBio.Graphics.Panel
: jBio.Graphics.Panellevel on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphlevel on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentlevel on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowlevel on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoReglevel on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidelevel on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedlevel on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericlevel on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurelevel on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcclevel on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrellevel on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIllength on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphllength on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentllength on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowllength on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegllength on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidellength on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedllength on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericllength on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurellength on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccllength on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelllength on jBio.Graphics.Feature
: jBio.Graphics.Featurellength on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIllength on jBio.Graphics.Panel
: jBio.Graphics.Panelllength on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentrellength on jBio.Location.Atomic
: jBio.Location.Atomicllength on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentllength on jBio.Location.Simple
: jBio.Location.Simplellength on jBio.Location.Split
: jBio.Location.Splitllength on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIllength on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLllength on jBio.LocationI
: jBio.LocationIllength on jBio.PrimarySeq
: jBio.PrimarySeqllength on jBio.PrimarySeqI
: jBio.PrimarySeqIllength on jBio.RangeI
: jBio.RangeIllength on jBio.Seq
: jBio.Seqllength on jBio.Seq.RichSeq
: jBio.Seq.RichSeqllength on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLllength on jBio.Seqbase
: jBio.Seqbasellength on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlllength on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlllength on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericllength on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLllength on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_basellength on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIllength on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlllength on jBio.SeqFeatureI
: jBio.SeqFeatureIllength on jBio.SeqI
: jBio.SeqIllength on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIllw on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerllw on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerlocation on jBio.Graphics.Feature
: jBio.Graphics.Featurelocation on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmllocation on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmllocation on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericlocation on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLlocation on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baselocation on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIlocation on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmllocation on jBio.SeqFeatureI
: jBio.SeqFeatureIlocation_factory on jBio.Root.SeqIO
: jBio.Root.SeqIOlocation_factory on jBio.SeqIO.fasta
: jBio.SeqIO.fastalocation_factory on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmllocation_factory on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLlocation_type on jBio.Location.Atomic
: jBio.Location.Atomiclocation_type on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentlocation_type on jBio.Location.Simple
: jBio.Location.Simplelocation_type on jBio.Location.Split
: jBio.Location.Splitlocation_type on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIlocation_type on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLlocation_type on jBio.LocationI
: jBio.LocationImake_glyph on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factorymake_key_name on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphmake_key_name on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentmake_key_name on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowmake_key_name on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegmake_key_name on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidemake_key_name on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedmake_key_name on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericmake_key_name on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuremake_key_name on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccmake_key_name on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelmake_key_name on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphImap_no_trunc on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factorymax_end on jBio.Location.Atomic
: jBio.Location.Atomicmax_end on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentmax_end on jBio.Location.Simple
: jBio.Location.Simplemax_end on jBio.Location.Split
: jBio.Location.Splitmax_end on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationImax_end on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLmax_end on jBio.LocationI
: jBio.LocationImax_height on jBio.Graphics.Panel
: jBio.Graphics.Panelmax_start on jBio.Location.Atomic
: jBio.Location.Atomicmax_start on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentmax_start on jBio.Location.Simple
: jBio.Location.Simplemax_start on jBio.Location.Split
: jBio.Location.Splitmax_start on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationImax_start on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLmax_start on jBio.LocationI
: jBio.LocationImaxdepth on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphmaxdepth on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentmaxdepth on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowmaxdepth on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegmaxdepth on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidemaxdepth on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedmaxdepth on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericmaxdepth on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuremaxdepth on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccmaxdepth on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelmaxdepth on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphImedia on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelmedia on jBio.Graphics.Panel
: jBio.Graphics.Panelmin_end on jBio.Location.Atomic
: jBio.Location.Atomicmin_end on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentmin_end on jBio.Location.Simple
: jBio.Location.Simplemin_end on jBio.Location.Split
: jBio.Location.Splitmin_end on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationImin_end on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLmin_end on jBio.LocationI
: jBio.LocationImin_start on jBio.Location.Atomic
: jBio.Location.Atomicmin_start on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentmin_start on jBio.Location.Simple
: jBio.Location.Simplemin_start on jBio.Location.Split
: jBio.Location.Splitmin_start on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationImin_start on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLmin_start on jBio.LocationI
: jBio.LocationIminXpt on jBio.Graphics.Media
: jBio.Graphics.MediaminXpt on jBio.Graphics.Media.Print
: jBio.Graphics.Media.PrintminXpt on jBio.Graphics.Media.Screen
: jBio.Graphics.Media.ScreenminYpt on jBio.Graphics.Media
: jBio.Graphics.MediaminYpt on jBio.Graphics.Media.Print
: jBio.Graphics.Media.PrintminYpt on jBio.Graphics.Media.Screen
: jBio.Graphics.Media.ScreenMISSING_TRACK_COLOR
: jBio.Graphics.PanelMISSING_TRACK_COLOR
: jBio.Graphics.DOM.Panelmolecule on jBio.Seq.RichSeq
: jBio.Seq.RichSeqmolecule on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLmolecule on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqImove on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionmove on jBio.Graphics.Position
: jBio.Graphics.Positionnamespace on jBio.IdentifiableI
: jBio.IdentifiableInamespace on jBio.PrimarySeq
: jBio.PrimarySeqnamespace on jBio.PrimarySeqI
: jBio.PrimarySeqInamespace on jBio.Seq
: jBio.Seqnamespace on jBio.Seq.RichSeq
: jBio.Seq.RichSeqnamespace on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLnamespace on jBio.Seqbase
: jBio.Seqbasenamespace on jBio.SeqI
: jBio.SeqInamespace on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqInext_seq on jBio.Factory.SequenceStreamI
: jBio.Factory.SequenceStreamInext_seq on jBio.Root.SeqIO
: jBio.Root.SeqIOnext_seq on jBio.SeqIO.fasta
: jBio.SeqIO.fastanext_seq on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlnext_seq on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLno_subparts on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphno_subparts on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentno_subparts on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowno_subparts on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegno_subparts on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideno_subparts on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedno_subparts on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericno_subparts on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureno_subparts on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccno_subparts on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelno_subparts on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphInot_ignored_subparts on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphnot_ignored_subparts on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentnot_ignored_subparts on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrownot_ignored_subparts on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegnot_ignored_subparts on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidenot_ignored_subparts on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetednot_ignored_subparts on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericnot_ignored_subparts on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurenot_ignored_subparts on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccnot_ignored_subparts on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelnot_ignored_subparts on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIobject_factory on jBio.Root.SeqIO
: jBio.Root.SeqIOobject_factory on jBio.SeqIO.fasta
: jBio.SeqIO.fastaobject_factory on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlobject_factory on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLobject_id on jBio.IdentifiableI
: jBio.IdentifiableIobject_id on jBio.PrimarySeq
: jBio.PrimarySeqobject_id on jBio.PrimarySeqI
: jBio.PrimarySeqIobject_id on jBio.Seq
: jBio.Seqobject_id on jBio.Seq.RichSeq
: jBio.Seq.RichSeqobject_id on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLobject_id on jBio.Seqbase
: jBio.Seqbaseobject_id on jBio.SeqI
: jBio.SeqIobject_id on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIopen on jBio.Root.IO
: jBio.Root.IOopen on jBio.Root.SeqIO
: jBio.Root.SeqIOopen on jBio.SeqIO.fasta
: jBio.SeqIO.fastaopen on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlopen on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLoverbumped on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphoverbumped on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentoverbumped on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowoverbumped on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegoverbumped on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideoverbumped on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedoverbumped on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericoverbumped on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureoverbumped on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccoverbumped on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreloverbumped on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIoverriding_glyph_properties on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factorypad_bottom on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphpad_bottom on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentpad_bottom on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowpad_bottom on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegpad_bottom on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidepad_bottom on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedpad_bottom on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericpad_bottom on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurepad_bottom on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccpad_bottom on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelpad_bottom on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelpad_bottom on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIpad_bottom on jBio.Graphics.Panel
: jBio.Graphics.Panelpad_left on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphpad_left on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentpad_left on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowpad_left on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegpad_left on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidepad_left on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedpad_left on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericpad_left on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurepad_left on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccpad_left on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelpad_left on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelpad_left on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIpad_left on jBio.Graphics.Panel
: jBio.Graphics.Panelpad_right on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphpad_right on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentpad_right on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowpad_right on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegpad_right on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidepad_right on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedpad_right on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericpad_right on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurepad_right on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccpad_right on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelpad_right on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelpad_right on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIpad_right on jBio.Graphics.Panel
: jBio.Graphics.Panelpad_top on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphpad_top on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentpad_top on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowpad_top on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegpad_top on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidepad_top on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedpad_top on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericpad_top on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurepad_top on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccpad_top on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelpad_top on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelpad_top on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIpad_top on jBio.Graphics.Panel
: jBio.Graphics.Panelpanel on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphpanel on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentpanel on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowpanel on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegpanel on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidepanel on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedpanel on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericpanel on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurepanel on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccpanel on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelpanel on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factorypanel on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIparent_bottom on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionparent_bottom on jBio.Graphics.Position
: jBio.Graphics.Positionparent_left on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionparent_left on jBio.Graphics.Position
: jBio.Graphics.Positionparent_right on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionparent_right on jBio.Graphics.Position
: jBio.Graphics.Positionparent_top on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionparent_top on jBio.Graphics.Position
: jBio.Graphics.Positionparents
: jBio.XMLelementIparents
: jBio.Seqbaseparents
: jBio.SeqIO.fastaparents
: jBio.SeqIO.UniProtKBXMLparents
: jBio.SeqIO.Ppxmlparents
: jBio.SeqI.RichSeqIparents
: jBio.SeqIparents
: jBio.SeqFeatureIparents
: jBio.SeqFeature.SolvAcc.Ppxmlparents
: jBio.SeqFeature.Generic_baseparents
: jBio.SeqFeature.GenericIparents
: jBio.SeqFeature.Generic.UniProtKBXMLparents
: jBio.SeqFeature.Genericparents
: jBio.SeqFeature.DisoReg.Ppxmlparents
: jBio.SeqFeature.Alignment.Ppxmlparents
: jBio.Seq.SeqFastaSpeedFactoryparents
: jBio.Seq.SeqFactoryparents
: jBio.Seq.RichSeq.UniProtKBXMLparents
: jBio.Seq.RichSeqparents
: jBio.Seqparents
: jBio.Root.SeqIOparents
: jBio.Root.IOparents
: jBio.Rootparents
: jBio.RangeIparents
: jBio.PrimarySeqIparents
: jBio.PrimarySeqparents
: jBio.LocationIparents
: jBio.Location.UniProtKBXMLparents
: jBio.Location.SplitLocationIparents
: jBio.Location.Splitparents
: jBio.Location.Simpleparents
: jBio.Location.Ppxml.Alignmentparents
: jBio.Location.Atomicparents
: jBio.IdentifiableIparents
: jBio.Graphics.Spacecentreparents
: jBio.Graphics.Renderingparents
: jBio.Graphics.Px2ptparents
: jBio.Graphics.Positionparents
: jBio.Graphics.Panelparents
: jBio.Graphics.Media.Screenparents
: jBio.Graphics.Media.Printparents
: jBio.Graphics.Mediaparents
: jBio.Graphics.Layoutparents
: jBio.Graphics.GlyphIparents
: jBio.Graphics.Glyph.Factoryparents
: jBio.Graphics.Featureparents
: jBio.Graphics.Exception.DOMparents
: jBio.Graphics.DOMevents_binderIparents
: jBio.Graphics.DOMbaseparents
: jBio.Graphics.DOM.Zoomer.Positionedparents
: jBio.Graphics.DOM.Zoomerparents
: jBio.Graphics.DOM.Renderingparents
: jBio.Graphics.DOM.Px2ptparents
: jBio.Graphics.DOM.Positionparents
: jBio.Graphics.DOM.Panel_zoomerparents
: jBio.Graphics.DOM.Panelparents
: jBio.Graphics.DOM.Label_zoomerparents
: jBio.Graphics.DOM.Glyph_zoomerparents
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelparents
: jBio.Graphics.DOM.Glyph.SolvAccparents
: jBio.Graphics.DOM.Glyph.SecondaryStructureparents
: jBio.Graphics.DOM.Glyph.Genericparents
: jBio.Graphics.DOM.Glyph.Facetedparents
: jBio.Graphics.DOM.Glyph.Disulfideparents
: jBio.Graphics.DOM.Glyph.DisoRegparents
: jBio.Graphics.DOM.Glyph.Arrowparents
: jBio.Graphics.DOM.Glyph.Alignmentparents
: jBio.Graphics.DOM.Glyphparents
: jBio.Graphics.DOM.Faceted_zoomerparents
: jBio.Graphics.DOM.Disulf_zoomerparents
: jBio.Graphics.DOM.Box_zoomerparents
: jBio.Graphics.CollisionControlparents
: jBio.FeatureHolderIparents
: jBio.Factory.SequenceStreamIparents
: jBio.Factory.SequenceFactoryIparents
: jBio.Factory.ObjectFactoryIparents
: jBio.Exception.ReadOnlyparents
: jBio.Exception.NotImplementedparents
: jBio.Exception.NaNparents
: jBio.Exception.Deprecatedparents
: jBio.Exceptionparents
: jBio.DescribableIparents
: jBio.AnnotationIparents
: jBio.AnnotationCollectionIparents
: jBio.Annotation.XML.SimpleValueparents
: jBio.Annotation.XML.SimpleAttrValueparents
: jBio.Annotation.XML.BaseSimpleAttrValueparents
: jBio.Annotation.TypeManagerparents
: jBio.Annotation.StructuredValueparents
: jBio.Annotation.SimpleValueparents
: jBio.Annotation.Collection.UniProtKBXMLparents
: jBio.Annotation.Collection.Ppxml.SolvAccparents
: jBio.Annotation.Collection.Ppxml.FeatWRelparents
: jBio.Annotation.Collection.Ppxml.DisoRegparents
: jBio.Annotation.Collection.Ppxml.Alignmentparents
: jBio.Annotation.Collection.Ppxmlparents
: jBio.Annotation.Collectionparents
: jBio.AnnotatableIparents
: jBio.Alphabetpart_renderings on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingpart_renderings on jBio.Graphics.Rendering
: jBio.Graphics.Renderingpartno on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphpartno on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentpartno on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowpartno on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegpartno on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidepartno on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedpartno on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericpartno on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurepartno on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccpartno on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelpartno on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIparts on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphparts on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentparts on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowparts on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegparts on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideparts on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedparts on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericparts on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureparts on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccparts on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelparts on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIpe_rendering on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingpe_rendering on jBio.Graphics.Rendering
: jBio.Graphics.Renderingpid on jBio.Seq.RichSeq
: jBio.Seq.RichSeqpid on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLpid on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIpoint on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphpoint on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentpoint on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowpoint on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegpoint on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidepoint on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedpoint on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericpoint on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurepoint on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccpoint on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelpoint on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIposition on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingposition on jBio.Graphics.Rendering
: jBio.Graphics.Renderingpostgrid on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Panelpostgrid on jBio.Graphics.Panel
: jBio.Graphics.Panelprimary_id on jBio.PrimarySeq
: jBio.PrimarySeqprimary_id on jBio.PrimarySeqI
: jBio.PrimarySeqIprimary_id on jBio.Seq
: jBio.Seqprimary_id on jBio.Seq.RichSeq
: jBio.Seq.RichSeqprimary_id on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLprimary_id on jBio.Seqbase
: jBio.Seqbaseprimary_id on jBio.SeqI
: jBio.SeqIprimary_id on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIprimary_seq on jBio.Seq
: jBio.Seqprimary_seq on jBio.Seq.RichSeq
: jBio.Seq.RichSeqprimary_seq on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLprimary_seq on jBio.Seqbase
: jBio.Seqbaseprimary_seq on jBio.SeqI
: jBio.SeqIprimary_seq on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIprimary_tag on jBio.Graphics.Feature
: jBio.Graphics.Featureprimary_tag on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlprimary_tag on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlprimary_tag on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericprimary_tag on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLprimary_tag on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseprimary_tag on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIprimary_tag on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlprimary_tag on jBio.SeqFeatureI
: jBio.SeqFeatureIproperty on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphproperty on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentproperty on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowproperty on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegproperty on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideproperty on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedproperty on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericproperty on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureproperty on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccproperty on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelproperty on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIprototype on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIpt2res on jBio.Graphics.Layout
: jBio.Graphics.LayoutptXpx on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptptXpx on jBio.Graphics.Px2pt
: jBio.Graphics.Px2ptptYpx on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptptYpx on jBio.Graphics.Px2pt
: jBio.Graphics.Px2ptpx2pt on jBio.Graphics.Media
: jBio.Graphics.Mediapx2pt on jBio.Graphics.Media.Print
: jBio.Graphics.Media.Printpx2pt on jBio.Graphics.Media.Screen
: jBio.Graphics.Media.ScreenpxXpt on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptpxXpt on jBio.Graphics.Px2pt
: jBio.Graphics.Px2ptpxYpt on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptpxYpt on jBio.Graphics.Px2pt
: jBio.Graphics.Px2ptRANGEDECODE
: jBio.Location.SimpleRANGEENCODE
: jBio.Location.Simpleremove_Annotations on jBio.Annotation.Collection
: jBio.Annotation.Collectionremove_Annotations on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlremove_Annotations on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentremove_Annotations on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegremove_Annotations on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelremove_Annotations on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccremove_Annotations on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLremove_Annotations on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionIremove_SeqFeatures on jBio.FeatureHolderI
: jBio.FeatureHolderIremove_SeqFeatures on jBio.Graphics.Feature
: jBio.Graphics.Featureremove_SeqFeatures on jBio.Seq
: jBio.Seqremove_SeqFeatures on jBio.Seq.RichSeq
: jBio.Seq.RichSeqremove_SeqFeatures on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLremove_SeqFeatures on jBio.Seqbase
: jBio.Seqbaseremove_SeqFeatures on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlremove_SeqFeatures on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlremove_SeqFeatures on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericremove_SeqFeatures on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLremove_SeqFeatures on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_baseremove_SeqFeatures on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIremove_SeqFeatures on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlremove_SeqFeatures on jBio.SeqI
: jBio.SeqIremove_SeqFeatures on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIremoveData on jBio
: jBiorendering on jBio.Graphics.DOM.Position
: jBio.Graphics.DOM.Positionrendering on jBio.Graphics.Position
: jBio.Graphics.Positionres2pt on jBio.Graphics.Layout
: jBio.Graphics.Layoutreset_bins on jBio.Graphics.CollisionControl
: jBio.Graphics.CollisionControlRESOURCEURL
: jBio.Graphics.DOMright on jBio.Graphics.Panel
: jBio.Graphics.Panelrlw on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerroot_elem on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingroot_elem_ca_elem_update on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingroot_elem_outline on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingscale on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryscale on jBio.Graphics.Layout
: jBio.Graphics.Layoutseq on jBio.PrimarySeq
: jBio.PrimarySeqseq on jBio.PrimarySeqI
: jBio.PrimarySeqIseq on jBio.Seq
: jBio.Seqseq on jBio.Seq.RichSeq
: jBio.Seq.RichSeqseq on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLseq on jBio.Seqbase
: jBio.Seqbaseseq on jBio.SeqI
: jBio.SeqIseq on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIseq_id on jBio.Location.Atomic
: jBio.Location.Atomicseq_id on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentseq_id on jBio.Location.Simple
: jBio.Location.Simpleseq_id on jBio.Location.Split
: jBio.Location.Splitseq_id on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIseq_id on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLseq_id on jBio.LocationI
: jBio.LocationIseq_version on jBio.Seq.RichSeq
: jBio.Seq.RichSeqseq_version on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLseq_version on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqISeqIO on jBio
: jBiosequence_builder on jBio.Root.SeqIO
: jBio.Root.SeqIOsequence_builder on jBio.SeqIO.fasta
: jBio.SeqIO.fastasequence_builder on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlsequence_builder on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLsequence_factory on jBio.Factory.SequenceStreamI
: jBio.Factory.SequenceStreamIsequence_factory on jBio.Root.SeqIO
: jBio.Root.SeqIOsequence_factory on jBio.SeqIO.fasta
: jBio.SeqIO.fastasequence_factory on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlsequence_factory on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLset_glyph_property on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factorysource_tag on jBio.Graphics.Feature
: jBio.Graphics.Featuresource_tag on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlsource_tag on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlsource_tag on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericsource_tag on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLsource_tag on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_basesource_tag on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIsource_tag on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlsource_tag on jBio.SeqFeatureI
: jBio.SeqFeatureIspecialclass on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factoryspecies on jBio.Seq
: jBio.Seqspecies on jBio.Seq.RichSeq
: jBio.Seq.RichSeqspecies on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLspecies on jBio.Seqbase
: jBio.Seqbasespecies on jBio.SeqI
: jBio.SeqIspecies on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIsplittype on jBio.Location.Split
: jBio.Location.Splitsplittype on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIstart on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphstart on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentstart on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowstart on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegstart on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidestart on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedstart on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericstart on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurestart on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccstart on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelstart on jBio.Graphics.Feature
: jBio.Graphics.Featurestart on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIstart on jBio.Location.Atomic
: jBio.Location.Atomicstart on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentstart on jBio.Location.Simple
: jBio.Location.Simplestart on jBio.Location.Split
: jBio.Location.Splitstart on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIstart on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLstart on jBio.LocationI
: jBio.LocationIstart on jBio.RangeI
: jBio.RangeIstart on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlstart on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlstart on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericstart on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLstart on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_basestart on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIstart on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlstart on jBio.SeqFeatureI
: jBio.SeqFeatureIstart_pos_type on jBio.Location.Atomic
: jBio.Location.Atomicstart_pos_type on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentstart_pos_type on jBio.Location.Simple
: jBio.Location.Simplestart_pos_type on jBio.Location.Split
: jBio.Location.Splitstart_pos_type on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIstart_pos_type on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLstart_pos_type on jBio.LocationI
: jBio.LocationIstop on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphstop on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentstop on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowstop on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegstop on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidestop on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedstop on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericstop on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructurestop on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccstop on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelstop on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIstrand on jBio.Graphics.Feature
: jBio.Graphics.Featurestrand on jBio.Location.Atomic
: jBio.Location.Atomicstrand on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentstrand on jBio.Location.Simple
: jBio.Location.Simplestrand on jBio.Location.Split
: jBio.Location.Splitstrand on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIstrand on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLstrand on jBio.LocationI
: jBio.LocationIstrand on jBio.RangeI
: jBio.RangeIstrand on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlstrand on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlstrand on jBio.SeqFeature.Generic
: jBio.SeqFeature.Genericstrand on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLstrand on jBio.SeqFeature.Generic_base
: jBio.SeqFeature.Generic_basestrand on jBio.SeqFeature.GenericI
: jBio.SeqFeature.GenericIstrand on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlstrand on jBio.SeqFeatureI
: jBio.SeqFeatureIstringbounds on jBio.Graphics.DOM.Px2pt
: jBio.Graphics.DOM.Px2ptstringbounds on jBio.Graphics.Px2pt
: jBio.Graphics.Px2ptstylesheet on jBio.Graphics.Glyph.Factory
: jBio.Graphics.Glyph.Factorysub_Location on jBio.Location.Split
: jBio.Location.Splitsub_Location on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIsubfeat on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphsubfeat on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentsubfeat on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowsubfeat on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegsubfeat on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidesubfeat on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedsubfeat on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericsubfeat on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuresubfeat on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccsubfeat on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelsubfeat on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphIsubseq on jBio.PrimarySeq
: jBio.PrimarySeqsubseq on jBio.PrimarySeqI
: jBio.PrimarySeqIsubseq on jBio.Seq
: jBio.Seqsubseq on jBio.Seq.RichSeq
: jBio.Seq.RichSeqsubseq on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLsubseq on jBio.Seqbase
: jBio.Seqbasesubseq on jBio.SeqI
: jBio.SeqIsubseq on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqItag_term on jBio.Annotation.SimpleValue
: jBio.Annotation.SimpleValuetag_term on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValuetag_term on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValuetag_term on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValuetag_term on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValuetagname on jBio.Annotation.Collection
: jBio.Annotation.Collectiontagname on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmltagname on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmenttagname on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegtagname on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWReltagname on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAcctagname on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLtagname on jBio.Annotation.SimpleValue
: jBio.Annotation.SimpleValuetagname on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValuetagname on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValuetagname on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValuetagname on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValuetagname on jBio.AnnotationCollectionI
: jBio.AnnotationCollectionItagname on jBio.AnnotationI
: jBio.AnnotationIticks on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphticks on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmentticks on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowticks on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegticks on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfideticks on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedticks on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Genericticks on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructureticks on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAccticks on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarrelticks on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphItk_elem on jBio.Graphics.DOM.Rendering
: jBio.Graphics.DOM.Renderingtkcolor on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphtkcolor on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmenttkcolor on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowtkcolor on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegtkcolor on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidetkcolor on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedtkcolor on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generictkcolor on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuretkcolor on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcctkcolor on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreltkcolor on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphItlw on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerto_FTstring on jBio.Location.Atomic
: jBio.Location.Atomicto_FTstring on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentto_FTstring on jBio.Location.Simple
: jBio.Location.Simpleto_FTstring on jBio.Location.Split
: jBio.Location.Splitto_FTstring on jBio.Location.SplitLocationI
: jBio.Location.SplitLocationIto_FTstring on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLto_FTstring on jBio.LocationI
: jBio.LocationItop on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomertop on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomertop on jBio.Graphics.DOM.Faceted_zoomer
: jBio.Graphics.DOM.Faceted_zoomertop on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomertop on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.Positionedtop on jBio.Graphics.Panel
: jBio.Graphics.PaneltoString on jBio.Alphabet
: jBio.Alphabettotal_parts on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphtotal_parts on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmenttotal_parts on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowtotal_parts on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegtotal_parts on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidetotal_parts on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedtotal_parts on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generictotal_parts on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuretotal_parts on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcctotal_parts on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreltotal_parts on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphItrack2key on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphtrack2key on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmenttrack2key on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowtrack2key on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegtrack2key on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidetrack2key on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedtrack2key on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generictrack2key on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuretrack2key on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcctrack2key on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreltrack2key on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphItrack_index on jBio.Graphics.DOM.Glyph
: jBio.Graphics.DOM.Glyphtrack_index on jBio.Graphics.DOM.Glyph.Alignment
: jBio.Graphics.DOM.Glyph.Alignmenttrack_index on jBio.Graphics.DOM.Glyph.Arrow
: jBio.Graphics.DOM.Glyph.Arrowtrack_index on jBio.Graphics.DOM.Glyph.DisoReg
: jBio.Graphics.DOM.Glyph.DisoRegtrack_index on jBio.Graphics.DOM.Glyph.Disulfide
: jBio.Graphics.DOM.Glyph.Disulfidetrack_index on jBio.Graphics.DOM.Glyph.Faceted
: jBio.Graphics.DOM.Glyph.Facetedtrack_index on jBio.Graphics.DOM.Glyph.Generic
: jBio.Graphics.DOM.Glyph.Generictrack_index on jBio.Graphics.DOM.Glyph.SecondaryStructure
: jBio.Graphics.DOM.Glyph.SecondaryStructuretrack_index on jBio.Graphics.DOM.Glyph.SolvAcc
: jBio.Graphics.DOM.Glyph.SolvAcctrack_index on jBio.Graphics.DOM.Glyph.TransmBetaBarrel
: jBio.Graphics.DOM.Glyph.TransmBetaBarreltrack_index on jBio.Graphics.GlyphI
: jBio.Graphics.GlyphItrack_spacing on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneltrack_spacing on jBio.Graphics.Panel
: jBio.Graphics.Paneltracks on jBio.Graphics.DOM.Panel
: jBio.Graphics.DOM.Paneltracks on jBio.Graphics.Panel
: jBio.Graphics.Paneltype on jBio.Factory.ObjectFactoryI
: jBio.Factory.ObjectFactoryItype on jBio.Factory.SequenceFactoryI
: jBio.Factory.SequenceFactoryItype on jBio.Seq.SeqFactory
: jBio.Seq.SeqFactorytype on jBio.Seq.SeqFastaSpeedFactory
: jBio.Seq.SeqFastaSpeedFactorytype_for_key on jBio.Annotation.TypeManager
: jBio.Annotation.TypeManagerUNITS
: jBio.Graphics.DOM.Glyph.Arrowvalidate_seq on jBio.PrimarySeq
: jBio.PrimarySeqvalidate_seq on jBio.PrimarySeqI
: jBio.PrimarySeqIvalidate_seq on jBio.Seq
: jBio.Seqvalidate_seq on jBio.Seq.RichSeq
: jBio.Seq.RichSeqvalidate_seq on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLvalidate_seq on jBio.Seqbase
: jBio.Seqbasevalidate_seq on jBio.SeqI
: jBio.SeqIvalidate_seq on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIvalue on jBio.Annotation.SimpleValue
: jBio.Annotation.SimpleValuevalue on jBio.Annotation.StructuredValue
: jBio.Annotation.StructuredValuevalue on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValuevalue on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValuevalue on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValueversion on jBio.IdentifiableI
: jBio.IdentifiableIversion on jBio.PrimarySeq
: jBio.PrimarySeqversion on jBio.PrimarySeqI
: jBio.PrimarySeqIversion on jBio.Seq
: jBio.Seqversion on jBio.Seq.RichSeq
: jBio.Seq.RichSeqversion on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLversion on jBio.Seqbase
: jBio.Seqbaseversion on jBio.SeqI
: jBio.SeqIversion on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIvisible_parts on jBio.Graphics.Layout
: jBio.Graphics.Layoutvlheight on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomervltop on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerwidth on jBio.Graphics.DOM.Box_zoomer
: jBio.Graphics.DOM.Box_zoomerwidth on jBio.Graphics.DOM.Disulf_zoomer
: jBio.Graphics.DOM.Disulf_zoomerwidth on jBio.Graphics.DOM.Label_zoomer
: jBio.Graphics.DOM.Label_zoomerwidth on jBio.Graphics.DOM.Zoomer.Positioned
: jBio.Graphics.DOM.Zoomer.Positionedwidth on jBio.Graphics.Spacecentre
: jBio.Graphics.Spacecentrewrite_GFF on jBio.Seq
: jBio.Seqwrite_GFF on jBio.Seq.RichSeq
: jBio.Seq.RichSeqwrite_GFF on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLwrite_GFF on jBio.Seqbase
: jBio.Seqbasewrite_GFF on jBio.SeqI
: jBio.SeqIwrite_GFF on jBio.SeqI.RichSeqI
: jBio.SeqI.RichSeqIwrite_seq on jBio.Factory.SequenceStreamI
: jBio.Factory.SequenceStreamIwrite_seq on jBio.Root.SeqIO
: jBio.Root.SeqIOwrite_seq on jBio.SeqIO.fasta
: jBio.SeqIO.fastawrite_seq on jBio.SeqIO.Ppxml
: jBio.SeqIO.Ppxmlwrite_seq on jBio.SeqIO.UniProtKBXML
: jBio.SeqIO.UniProtKBXMLxml_instance on jBio.Annotation.Collection.Ppxml
: jBio.Annotation.Collection.Ppxmlxml_instance on jBio.Annotation.Collection.Ppxml.Alignment
: jBio.Annotation.Collection.Ppxml.Alignmentxml_instance on jBio.Annotation.Collection.Ppxml.DisoReg
: jBio.Annotation.Collection.Ppxml.DisoRegxml_instance on jBio.Annotation.Collection.Ppxml.FeatWRel
: jBio.Annotation.Collection.Ppxml.FeatWRelxml_instance on jBio.Annotation.Collection.Ppxml.SolvAcc
: jBio.Annotation.Collection.Ppxml.SolvAccxml_instance on jBio.Annotation.Collection.UniProtKBXML
: jBio.Annotation.Collection.UniProtKBXMLxml_instance on jBio.Annotation.XML.BaseSimpleAttrValue
: jBio.Annotation.XML.BaseSimpleAttrValuexml_instance on jBio.Annotation.XML.SimpleAttrValue
: jBio.Annotation.XML.SimpleAttrValuexml_instance on jBio.Annotation.XML.SimpleValue
: jBio.Annotation.XML.SimpleValuexml_instance on jBio.Location.Ppxml.Alignment
: jBio.Location.Ppxml.Alignmentxml_instance on jBio.Location.UniProtKBXML
: jBio.Location.UniProtKBXMLxml_instance on jBio.Seq.RichSeq.UniProtKBXML
: jBio.Seq.RichSeq.UniProtKBXMLxml_instance on jBio.SeqFeature.Alignment.Ppxml
: jBio.SeqFeature.Alignment.Ppxmlxml_instance on jBio.SeqFeature.DisoReg.Ppxml
: jBio.SeqFeature.DisoReg.Ppxmlxml_instance on jBio.SeqFeature.Generic.UniProtKBXML
: jBio.SeqFeature.Generic.UniProtKBXMLxml_instance on jBio.SeqFeature.SolvAcc.Ppxml
: jBio.SeqFeature.SolvAcc.Ppxmlxml_instance on jBio.XMLelementI
: jBio.XMLelementIZ_INDEX_GRID
: jBio.Graphics.DOM.PanelZ_INDEX_PANEL_BG
: jBio.Graphics.DOM.PanelZ_INDEX_POSTGRID
: jBio.Graphics.DOM.PanelZ_INDEX_TRACK_BG
: jBio.Graphics.DOM.PanelZ_INDEX_TRACK_FG
: jBio.Graphics.DOM.Panelzooming on jBio.Graphics.Layout
: jBio.Graphics.Layout