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_fastx_plus_len(3) FreeBSD Library Functions Manual bl_fastx_plus_len(3)

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

size_t bl_fastx_plus_len(bl_fastx_t *record)

record  Pointer to the bl_fastx_t structure

Return the length of the + string of a FASTQ record. The record must be initialized with bl_fastx_init(3) and populated by bl_fastx_read(3) or other means. If the format if the fastx stream is FASTA, a warning is generated and 0 is returned. Previously used variables may be reused to process another record in the same format (FASTA or FASTQ) or reinitialized by bl_fastx_free(3);

Length of the + string

bl_fastx_t  record = BL_FASTX_INIT;
bl_fastx_init(stdin, &record);
bl_fastx_read(stdin, &record);
printf("+ string length = %zun", bl_fastx_plus_len(&record));
bl_fastx_free(&record);

bl_fastx_init(3), bl_fastx_read(3), bl_fastx_write(3), bl_fastx_free(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.