fn() assignQualities
Assign quality values between strings.

Defined in <seqan/basic.h>
Signature void assignQualities(target, source);

Parameters

target Target string, can be a String of DnaQ or Dna5Q characters.
source Source string. Can be a String of int or char.

Detailed Description

Remarks

The target is resized to the length of source. This function calls assignQualityValue for all entries of target and source, look at the documentation of assignQualityValue on how the values of source are interpreted.

Note that qualities are expected to be in PHRED scale.

See Also