QualitativeSequenceValidateQualScores Method |
Validates whether the specified encoded quality scores are within the FastQFormatType limit or not.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static bool ValidateQualScores(
byte[] encodedQualScore,
FastQFormatType formatType,
out byte invalidQualScore
)
Public Shared Function ValidateQualScores (
encodedQualScore As Byte(),
formatType As FastQFormatType,
<OutAttribute> ByRef invalidQualScore As Byte
) As Boolean
public:
static bool ValidateQualScores(
array<unsigned char>^ encodedQualScore,
FastQFormatType formatType,
[OutAttribute] unsigned char% invalidQualScore
)
static member ValidateQualScores :
encodedQualScore : byte[] *
formatType : FastQFormatType *
invalidQualScore : byte byref -> bool
Parameters
- encodedQualScore
- Type: SystemByte
Encoded quality scores. - formatType
- Type: BioFastQFormatType
Fastq format type. - invalidQualScore
- Type: SystemByte
returns invalid encoded quality score if found.
Return Value
Type:
BooleanReturns true if the specified encoded quality scores are with in the limit, otherwise false.
See Also