Click or drag to resize
GffParser Class
A GffParser reads from a source of text that is formatted according to the GFF flat file specification, and converts the data to in-memory ISequence objects. For advanced users, the ability to select an encoding for the internal memory representation is provided. There is also a default encoding for each alphabet that may be encountered. Documentation for the latest GFF file format can be found at following location under Creative Commons License that is, Online content created and hosted by the Wellcome Trust Sanger Institute is, unless otherwise stated, licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 2.5 License. http://www.sanger.ac.uk/Software/formats/GFF/GFF_Spec.shtml
Inheritance Hierarchy
SystemObject
  Bio.IO.GffGffParser

Namespace: Bio.IO.Gff
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public class GffParser : ISequenceParser, IParserWithAlphabet<ISequence>, 
	IParser<ISequence>, IParser

The GffParser type exposes the following members.

Constructors
  NameDescription
Public methodGffParser
Initializes a new instance of the GffParser class
Top
Properties
  NameDescription
Public propertyAlphabet
The alphabet to use for parsed ISequence objects. If this is not set, an alphabet will be determined based on the file being parsed.
Public propertyDescription
Gets the description of GFF parser. This is intended to give developers some information of the formatter class. This property returns a simple description of what the GffParser class achieves.
Public propertyName
Gets the type of Parser i.e GFF. This is intended to give developers some information of the parser class.
Public propertySupportedFileTypes
Shows the supported types.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodParse
Parses a list of GFF sequences.
Public methodParseOne
Parse a single sequence - not supported due to the file format.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also