Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
bl_gff3_e..._attribute(3)  Library Functions Manual  bl_gff3_e..._attribute(3)

NAME
       bl_gff3_extract_attribute() - Extract GFF3 attribute by name

LIBRARY
       #include	<biolibc/gff3.h>
       -lbiolibc -lxtend

SYNOPSIS
       char    *bl_gff3_extract_attribute(bl_gff3_t *feature, const char *attr_name)

ARGUMENTS
       Attribute name, such as "ID" or "Name"

DESCRIPTION
       Extract an attribute value of a feature given the attribute name.  Com-
       mon  attribute  names include "ID" and "Name".  Attributes are embedded
       in the GFF attributes field in the form name=value;, e.g.  ID=gene:ENS-
       DARG00000029944;Name=parpbp.

RETURN VALUES
       Attribute value (text after '='), or NULL if name is not	found

EXAMPLES
       bl_gff3_t    feature;

       if ( bl_gff3_extract_attribute(&feature,	"Name")	!= NULL	)
       {
       }

SEE ALSO
       bl_gff3_read(3)

						     bl_gff3_e..._attribute(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=bl_gff3_extract_attribute&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>

home | help