Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

go::parsers::go_assoc_parser(3pm) [debian man page]

GO::Parsers::go_assoc_parser(3pm)			User Contributed Perl Documentation			 GO::Parsers::go_assoc_parser(3pm)

NAME
GO::Parsers::go_assoc_parser - syntax parsing of GO gene-association flat files SYNOPSIS
DESCRIPTION
do not use this class directly; use GO::Parser This generates Stag/XML event streams from GO association files. Examples of these files can be found at http://www.geneontology.org, an example of lines from an association file: SGD S0004660 AAC1 GO:0005743 SGD:12031|PMID:2167309 TAS C ADP/ATP translocator YMR056C gene taxon:4932 20010118 SGD S0004660 AAC1 GO:0006854 SGD:12031|PMID:2167309 IDA P ADP/ATP translocator YMR056C gene taxon:4932 20010118 See <http://www.geneontology.org/GO.annotation.shtml#file> See http://www.godatabase.org/dev/xml/dtd/go_assoc-parser-events.dtd <http://www.godatabase.org/dev/xml/dtd/go_assoc-parser-events.dtd> For the DTD of the event stream that is generated The following stag-schema describes the events that are generated in parsing an assoc file: (assocs (dbset+ (proddb "s") (prod+ (prodacc "s") (prodsymbol "s") (prodtype "s") (prodtaxa "i") (assoc+ (assocdate "i") (source_db "s") (termacc "s") (is_not "i") (aspect "s") (evidence+ (evcode "s") (ref "s")))))) perl v5.14.2 2010-05-31 GO::Parsers::go_assoc_parser(3pm)

Check Out this Related Man Page

XML::LibXML::Dtd(3pm)					User Contributed Perl Documentation				     XML::LibXML::Dtd(3pm)

NAME
XML::LibXML::Dtd - XML::LibXML DTD Handling SYNOPSIS
use XML::LibXML; $dtd = XML::LibXML::Dtd->new($public_id, $system_id); $dtd = XML::LibXML::Dtd->parse_string($dtd_str); $publicId = $dtd->getName(); $publicId = $dtd->publicId(); $systemId = $dtd->systemId(); DESCRIPTION
This class holds a DTD. You may parse a DTD from either a string, or from an external SYSTEM identifier. No support is available as yet for parsing from a filehandle. XML::LibXML::Dtd is a sub-class of XML::LibXML::Node, so all the methods available to nodes (particularly toString()) are available to Dtd objects. METHODS
new $dtd = XML::LibXML::Dtd->new($public_id, $system_id); Parse a DTD from the system identifier, and return a DTD object that you can pass to $doc->is_valid() or $doc->validate(). my $dtd = XML::LibXML::Dtd->new( "SOME // Public / ID / 1.0", "test.dtd" ); my $doc = XML::LibXML->new->parse_file("test.xml"); $doc->validate($dtd); parse_string $dtd = XML::LibXML::Dtd->parse_string($dtd_str); The same as new() above, except you can parse a DTD from a string. Note that parsing from string may fail if the DTD contains external parametric-entity references with relative URLs. getName $publicId = $dtd->getName(); Returns the name of DTD; i.e., the name immediately following the DOCTYPE keyword. publicId $publicId = $dtd->publicId(); Returns the public identifier of the external subset. systemId $systemId = $dtd->systemId(); Returns the system identifier of the external subset. AUTHORS
Matt Sergeant, Christian Glahn, Petr Pajas VERSION
2.0001 COPYRIGHT
2001-2007, AxKit.com Ltd. 2002-2006, Christian Glahn. 2006-2009, Petr Pajas. perl v5.14.2 2012-06-20 XML::LibXML::Dtd(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Lookup file

I have two files ,File1 lookup to file2 based on 1st&3rd against 1st and 2nd column and produce the following o/p File1 450000|USD|USD 450006|GKSGD|SGD 450002|XSGD|SGD File2 ----- 450000|USD|2000.00|10000.000 450006|SGD|1000.200|3000.000 450002|SGD|3000.000|20000.00 O/p ... (4 Replies)
Discussion started by: mohan705
4 Replies

2. Solaris

sunfire 4100 xbrowser problem

I installed SGD on SUNfire 4100, every thing was working fine, suddenly the machine shutdown due to the power failure. When I again switched it on, it is asking for the login in text mode. No graphics are displaying and even I cannot get its display via xbrowser. While before it was working fine.... (1 Reply)
Discussion started by: bluetooth
1 Replies

3. Shell Programming and Scripting

use shellscript to find the count of a line in a set of lines

I have a file a.xml some portion of the file is given below.But the file format is same. CTYPE available_templates SYSTEM './available_templates.dtd'> <available_templates> <template_file name="Approve External" path="core/approve/bin" <command_list> <command... (1 Reply)
Discussion started by: millan
1 Replies

4. Shell Programming and Scripting

Parsing the test file

Hello, I want to retrieve the rows with uniq count(column 4) for every *ref gene(column 7) on the basis of strand(column8 ) and tss(column 5). If a ref gene has same number of count and it is on negative strand then keep the row with its highest tss and likewise* If a ref gene has same number... (2 Replies)
Discussion started by: BCW_123
2 Replies