GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
bl_gff_read(3) FreeBSD Library Functions Manual bl_gff_read(3)

#include <biolibc/gff.h>
-lbiolibc -lxtend

int     bl_gff_read(bl_gff_t *gff_feature, FILE *gff_stream,
gff_field_mask_t field_mask)

gff_feature     Pointer to a bl_gff_t structure
gff_stream      A FILE stream from which to read the line
field_mask      Bit mask indicating which fields to store in gff_feature

Read next feature (line) from a GFF file.

If field_mask is not BL_GFF_FIELD_ALL, fields not indicated by a 1 in the bit mask are discarded rather than stored in gff_feature. That field in the structure is then populated with an appropriate marker, such as '.'. Possible mask values are:

BL_GFF_FIELD_ALL BL_GFF_FIELD_SEQUENCE BL_GFF_FIELD_SOURCE BL_GFF_FIELD_FEATURE BL_GFF_FIELD_START BL_GFF_FIELD_END BL_GFF_FIELD_SCORE BL_GFF_FIELD_STRAND BL_GFF_FIELD_PHASE BL_GFF_FIELD_ATTRIBUTES

BL_READ_OK on successful read BL_READ_EOF if EOF is encountered after a complete feature BL_READ_TRUNCATED if EOF or bad data is encountered elsewhere

bl_gff_read(&gff_feature, stdin, BL_GFF_FIELD_ALL);
bl_gff_read(&gff_feature, gff_stream,
    BL_GFF_FIELD_SEQUENCE|BL_GFF_FIELD_START|BL_GFF_FIELD_END);

bl_gff_write(3)


Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.