![]() |
![]()
| ![]() |
![]()
NAMEbl_fastq_name_cmp() - Compare read names of two FASTQ objects LIBRARY#include <biolibc/fastq.h> -lbiolibc -lxtend SYNOPSISsize_t bl_fastq_name_cmp(bl_fastq_t *read1, bl_fastq_t *read2) ARGUMENTSread1, read2 FASTQ reads to compare DESCRIPTIONCompare the read names of two FASTQ reads. This is useful when processing paired-end data, which must be kept in-sync. I.e. if a sequence if removed from a 5' file, the same sequence should be removed from the 3' file whether or not it meets quality minimums. RETURN VALUES0 if read1 and read2 have the same name < 0 if read1 name is lexically less than read2 name > 0 if read1 name is lexically greater than read2 name EXAMPLESs1 = bl_fastq_read(&fastq_rec[0], tp->instream1); s2 = bl_fastq_read(&fastq_rec[1], tp->instream2); if ( (s1 == BL_READ_OK) && (s2 == BL_READ_OK) ) { SEE ALSObl_fastq_read(3)
|