#include <fastq-trim.h>
-lfastq-trim
int fastq_trim_set_min_match(fastq_trim_t *fastq_trim_ptr, size_t new_min_match)
fastq_trim_ptr Pointer to the structure to set
new_min_match The new value for min_match
Mutator for min_match member in a fastq_trim_t structure. Use this function to
set min_match in a fastq_trim_t variable from non-member functions. This
function performs a direct assignment for scalar or pointer structure members.
If min_match is a pointer, data previously pointed to should generally be
freed before calling this function to avoid memory leaks.
Note that there is an equivalent macro (), which performs this
function with no data verification or function call overhead. Use the macro
version to maximize performance where the validity of new_min_match is
guaranteed by other means.
FASTQ_TRIM_DATA_OK if the new value is acceptable and assigned
FASTQ_TRIM_DATA_OUT_OF_RANGE otherwise
fastq_trim_t fastq_trim;
size_t new_min_match;
if ( fastq_trim_set_min_match(&fastq_trim, new_min_match) == FASTQ_TRIM_DATA_OK )
{
}