|
LIBRARY#include <biolibc/fastq.h> -lbiolibc -lxtend SYNOPSISvoid bl_fastq_init(bl_fastq_t *record)ARGUMENTSrecord Pointer to the bl_fastq_t structure to initialize. DESCRIPTIONInitialize a bl_fastq_t structure. This must be done before passing it to bl_fastq_read() for the first time, so that bl_fastq_read() will know to allocate memory for the fields.EXAMPLESbl_fastq_t rec; bl_fastq_init(&rec); bl_fastq_read(stdin, &rec); SEE ALSObl_fastq_read(3), bl_fastq_write(3) Visit the GSP FreeBSD Man Page Interface. |